aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorAlex Gaynor <alex.gaynor@gmail.com>2015-11-01 00:37:24 -0400
committerAlex Gaynor <alex.gaynor@gmail.com>2015-11-01 00:37:24 -0400
commit62c126f194199360491cd0e7f1b3fbd6b040a41b (patch)
treec7b2f096306eb6ed1add2e8f16488b0bc9060cfa /src
parent19e685bec7645af212503ec46a5301e9486331a6 (diff)
downloadcryptography-62c126f194199360491cd0e7f1b3fbd6b040a41b.tar.gz
cryptography-62c126f194199360491cd0e7f1b3fbd6b040a41b.tar.bz2
cryptography-62c126f194199360491cd0e7f1b3fbd6b040a41b.zip
flake8
Diffstat (limited to 'src')
-rw-r--r--src/cryptography/hazmat/backends/openssl/backend.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/cryptography/hazmat/backends/openssl/backend.py b/src/cryptography/hazmat/backends/openssl/backend.py
index 68731032..8cf67551 100644
--- a/src/cryptography/hazmat/backends/openssl/backend.py
+++ b/src/cryptography/hazmat/backends/openssl/backend.py
@@ -60,8 +60,8 @@ _MemoryBIO = collections.namedtuple("_MemoryBIO", ["bio", "char_ptr"])
def _encode_asn1_int(backend, x):
"""
- Converts a python integer to an ASN1_INTEGER. The returned ASN1_INTEGER will
- not be garbage collected (to support adding them to structs that take
+ Converts a python integer to an ASN1_INTEGER. The returned ASN1_INTEGER
+ will not be garbage collected (to support adding them to structs that take
ownership of the object). Be sure to register it for GC if it will be
discarded after use.