Various docstring and whitespace fixes in parsers.py.

testing/mmn/mktime_takes_localtime_not_gmtime
Isis Lovecruft 2013-05-11 18:28:04 +00:00
parent cc7beb7185
commit 0785d7dd3b
No known key found for this signature in database
GPG Key ID: A3ADB67A2CDB8B35
1 changed files with 8 additions and 8 deletions

View File

@ -45,8 +45,7 @@ class UsageError(Exception):
def _fix_unsafe(shell_input): def _fix_unsafe(shell_input):
""" """Find characters used to escape from a string into a shell, and wrap them
Find characters used to escape from a string into a shell, and wrap them
in quotes if they exist. Regex pilfered from python-3.x shlex module. in quotes if they exist. Regex pilfered from python-3.x shlex module.
:param str shell_input: The input intended for the GnuPG process. :param str shell_input: The input intended for the GnuPG process.
@ -512,7 +511,8 @@ def _sanitise_list(arg_list):
class Verify(object): class Verify(object):
"""Parser for internal status messages from GnuPG for ``--verify``.""" """Parser for internal status messages from GnuPG for ``--verify``.
"""
TRUST_UNDEFINED = 0 TRUST_UNDEFINED = 0
TRUST_NEVER = 1 TRUST_NEVER = 1
@ -540,7 +540,7 @@ class Verify(object):
pubkey_fingerprint = None pubkey_fingerprint = None
#: The keyid of the signing key. #: The keyid of the signing key.
key_id = None key_id = None
#: xxx I'm not sure how this is different to key_id. #: The id of the signature itself.
signature_id = None signature_id = None
#: The creation date of the signing key. #: The creation date of the signing key.
creation_date = None creation_date = None
@ -569,8 +569,8 @@ class Verify(object):
self.trust_text = key self.trust_text = key
self.trust_level = self.TRUST_LEVELS[key] self.trust_level = self.TRUST_LEVELS[key]
elif key in ("RSA_OR_IDEA", "NODATA", "IMPORT_RES", "PLAINTEXT", elif key in ("RSA_OR_IDEA", "NODATA", "IMPORT_RES", "PLAINTEXT",
"PLAINTEXT_LENGTH", "POLICY_URL", "DECRYPTION_INFO", "PLAINTEXT_LENGTH", "POLICY_URL", "DECRYPTION_INFO",
"DECRYPTION_OKAY", "INV_SGNR"): "DECRYPTION_OKAY", "INV_SGNR"):
pass pass
elif key == "BADSIG": elif key == "BADSIG":
self.valid = False self.valid = False
@ -621,8 +621,8 @@ class Verify(object):
class Crypt(Verify): class Crypt(Verify):
"""Parser for internal status messages from GnuPG for ``--encrypt`` and """Parser for internal status messages from GnuPG for
``--decrypt``. ``--encrypt````--decrypt``, and ``--decrypt-files``.
""" """
def __init__(self, gpg): def __init__(self, gpg):
super(Crypt, self).__init__(gpg) super(Crypt, self).__init__(gpg)