diff options
author | Alex Gaynor <alex.gaynor@gmail.com> | 2014-02-24 18:35:58 -0800 |
---|---|---|
committer | Alex Gaynor <alex.gaynor@gmail.com> | 2014-02-24 18:35:58 -0800 |
commit | dae879525fd62f724e2b0d59e26fadf53de3865a (patch) | |
tree | 0807fbdc572f8d031a7701121827eb77bbd88b05 | |
parent | 81f9f5cb49435e468c08c5b553ad5667bcb77478 (diff) | |
parent | 5b6ce2a63a2408638bb7636639abfb1c771585d5 (diff) | |
download | cryptography-dae879525fd62f724e2b0d59e26fadf53de3865a.tar.gz cryptography-dae879525fd62f724e2b0d59e26fadf53de3865a.tar.bz2 cryptography-dae879525fd62f724e2b0d59e26fadf53de3865a.zip |
Merge pull request #684 from reaperhulk/some-style-fixes
Some style fixes suggested by pep8-naming
-rw-r--r-- | cryptography/hazmat/primitives/asymmetric/rsa.py | 2 | ||||
-rw-r--r-- | cryptography/hazmat/primitives/twofactor/hotp.py | 4 | ||||
-rw-r--r-- | docs/development/submitting-patches.rst | 5 | ||||
-rw-r--r-- | setup.py | 4 |
4 files changed, 9 insertions, 6 deletions
diff --git a/cryptography/hazmat/primitives/asymmetric/rsa.py b/cryptography/hazmat/primitives/asymmetric/rsa.py index 01218592..23572a53 100644 --- a/cryptography/hazmat/primitives/asymmetric/rsa.py +++ b/cryptography/hazmat/primitives/asymmetric/rsa.py @@ -132,7 +132,7 @@ class RSAPrivateKey(object): self._modulus = modulus @classmethod - def generate(self, public_exponent, key_size, backend): + def generate(cls, public_exponent, key_size, backend): return backend.generate_rsa_private_key(public_exponent, key_size) @property diff --git a/cryptography/hazmat/primitives/twofactor/hotp.py b/cryptography/hazmat/primitives/twofactor/hotp.py index a5c88dae..80e28820 100644 --- a/cryptography/hazmat/primitives/twofactor/hotp.py +++ b/cryptography/hazmat/primitives/twofactor/hotp.py @@ -52,5 +52,5 @@ class HOTP(object): offset_bits = six.indexbytes(hmac_value, 19) & 0b1111 offset = int(offset_bits) - P = hmac_value[offset:offset + 4] - return struct.unpack(">I", P)[0] & 0x7fffffff + p = hmac_value[offset:offset + 4] + return struct.unpack(">I", p)[0] & 0x7fffffff diff --git a/docs/development/submitting-patches.rst b/docs/development/submitting-patches.rst index 5dca3f79..1797b9c1 100644 --- a/docs/development/submitting-patches.rst +++ b/docs/development/submitting-patches.rst @@ -15,7 +15,10 @@ follow the directions on the :doc:`security page </security>`. Code ---- -When in doubt, refer to :pep:`8` for Python code. +When in doubt, refer to :pep:`8` for Python code. You can check if your code +meets our automated requirements by running ``flake8`` against it. If you've +installed the development requirements this will automatically use our +configuration. You can also run the ``tox`` job with ``tox -e pep8``. `Write comments as complete sentences.`_ @@ -32,7 +32,7 @@ requirements = [ ] -class cffi_build(build): +class CFFIBuild(build): """ This class exists, instead of just providing ``ext_modules=[...]`` directly in ``setup()`` because importing cryptography requires we have several @@ -110,6 +110,6 @@ setup( zip_safe=False, ext_package="cryptography", cmdclass={ - "build": cffi_build, + "build": CFFIBuild, } ) |