/mandos/trunk

To get this branch, use:
bzr branch http://bzr.recompile.se/loggerhead/mandos/trunk

« back to all changes in this revision

Viewing changes to mandos

  • Committer: Teddy Hogeborn
  • Date: 2020-11-30 18:44:28 UTC
  • mfrom: (237.4.134 release)
  • Revision ID: teddy@recompile.se-20201130184428-qwfu95y3c274f5ep
Merge from release branch

Show diffs side-by-side

added added

removed removed

Lines of Context:
143
143
if sys.version_info < (3, 2):
144
144
    configparser.Configparser = configparser.SafeConfigParser
145
145
 
146
 
version = "1.8.14"
 
146
version = "1.8.13"
147
147
stored_state_file = "clients.pickle"
148
148
 
149
149
logger = logging.getLogger()
661
661
            raise gnutls.CertificateSecurityError(code=result)
662
662
        raise gnutls.Error(code=result)
663
663
 
664
 
    def _retry_on_error(result, func, arguments,
665
 
                        _error_code=_error_code):
 
664
    def _retry_on_error(result, func, arguments):
666
665
        """A function to retry on some errors, suitable
667
666
        for the 'errcheck' attribute on ctypes functions"""
668
667
        while result < 0: