diff options
author | Paul Kehrer <paul.l.kehrer@gmail.com> | 2017-06-27 11:15:37 -1000 |
---|---|---|
committer | Alex Gaynor <alex.gaynor@gmail.com> | 2017-06-27 14:15:37 -0700 |
commit | 491fd7cc5aefff8064039d073331b41a2f606a63 (patch) | |
tree | bef92b0c9f0f3daad2f377acdb1fed28f3899fd9 /src/_cffi_src/openssl/objects.py | |
parent | 0145873de724744ca9ec584f0fc7c51079b2e68e (diff) | |
download | cryptography-491fd7cc5aefff8064039d073331b41a2f606a63.tar.gz cryptography-491fd7cc5aefff8064039d073331b41a2f606a63.tar.bz2 cryptography-491fd7cc5aefff8064039d073331b41a2f606a63.zip |
Funcs macros gone (#3695)
* No more FUNCS/MACROS distinction
* change the docs to not talk about MACROS since they're gone
* remove out of date comment
Diffstat (limited to 'src/_cffi_src/openssl/objects.py')
-rw-r--r-- | src/_cffi_src/openssl/objects.py | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/src/_cffi_src/openssl/objects.py b/src/_cffi_src/openssl/objects.py index 19ff4c17..265ac75c 100644 --- a/src/_cffi_src/openssl/objects.py +++ b/src/_cffi_src/openssl/objects.py @@ -33,9 +33,6 @@ int OBJ_cmp(const ASN1_OBJECT *, const ASN1_OBJECT *); ASN1_OBJECT *OBJ_dup(const ASN1_OBJECT *); int OBJ_create(const char *, const char *, const char *); void OBJ_NAME_do_all(int, void (*) (const OBJ_NAME *, void *), void *); -""" - -MACROS = """ /* OBJ_cleanup became a macro in 1.1.0 */ void OBJ_cleanup(void); """ |