diff options
author | Jean-Paul Calderone <exarkun@twistedmatrix.com> | 2013-12-27 13:58:42 -0500 |
---|---|---|
committer | Jean-Paul Calderone <exarkun@twistedmatrix.com> | 2013-12-27 13:58:42 -0500 |
commit | 3aa5b942364aec3cd6c281802dab18c04e22b0f1 (patch) | |
tree | 1b2be9fa4dd7cc188f2c1b04a74efffcb8b97a6c | |
parent | 08adc00087c8fe128abc2317776de1f974f4eed6 (diff) | |
download | cryptography-3aa5b942364aec3cd6c281802dab18c04e22b0f1.tar.gz cryptography-3aa5b942364aec3cd6c281802dab18c04e22b0f1.tar.bz2 cryptography-3aa5b942364aec3cd6c281802dab18c04e22b0f1.zip |
Shorten long lines
-rw-r--r-- | cryptography/hazmat/backends/openssl/asn1.py | 6 | ||||
-rw-r--r-- | cryptography/hazmat/backends/openssl/bignum.py | 6 |
2 files changed, 6 insertions, 6 deletions
diff --git a/cryptography/hazmat/backends/openssl/asn1.py b/cryptography/hazmat/backends/openssl/asn1.py index e285954a..3d3a8dea 100644 --- a/cryptography/hazmat/backends/openssl/asn1.py +++ b/cryptography/hazmat/backends/openssl/asn1.py @@ -18,10 +18,10 @@ INCLUDES = """ TYPES = """ /* * XXX This typedef is wrong. - * https://bitbucket.org/cffi/cffi/issue/69/support-for-using-typedef-with-primitive + * https://bitbucket.org/cffi/cffi/issue/69 * http://paste.pound-python.org/show/iJcTUMkKeBeS6yXpZWUU/ - * < fijal> exarkun: I think you want to declare your value too large (e.g. long) - * < fijal> exarkun: that way you'll never pass garbage + * <fijal> I think you want to declare your value too large (e.g. long) + * <fijal> that way you'll never pass garbage */ typedef long time_t; diff --git a/cryptography/hazmat/backends/openssl/bignum.py b/cryptography/hazmat/backends/openssl/bignum.py index 4885d5b4..41c9d1e5 100644 --- a/cryptography/hazmat/backends/openssl/bignum.py +++ b/cryptography/hazmat/backends/openssl/bignum.py @@ -19,10 +19,10 @@ TYPES = """ typedef ... BIGNUM; /* * XXX This typedef is wrong. - * https://bitbucket.org/cffi/cffi/issue/69/support-for-using-typedef-with-primitive + * https://bitbucket.org/cffi/cffi/issue/69 * http://paste.pound-python.org/show/iJcTUMkKeBeS6yXpZWUU/ - * < fijal> exarkun: I think you want to declare your value too large (e.g. long) - * < fijal> exarkun: that way you'll never pass garbage + * <fijal> I think you want to declare your value too large (e.g. long) + * <fijal> that way you'll never pass garbage */ typedef unsigned long long BN_ULONG; """ |