diff options
author | Paul Kehrer <paul.l.kehrer@gmail.com> | 2017-10-11 21:55:42 +0800 |
---|---|---|
committer | Alex Gaynor <alex.gaynor@gmail.com> | 2017-10-11 09:55:42 -0400 |
commit | 38fe038522651fd18eeae60d5e96dc81aa07e863 (patch) | |
tree | 26561b06d998cbfc5446404b321ae3ebbe291e96 /src | |
parent | 0d6831d24f59d1125906a83ec90a9e566d5624f4 (diff) | |
download | cryptography-38fe038522651fd18eeae60d5e96dc81aa07e863.tar.gz cryptography-38fe038522651fd18eeae60d5e96dc81aa07e863.tar.bz2 cryptography-38fe038522651fd18eeae60d5e96dc81aa07e863.zip |
increment deprecation for the 2.2 release cycle (#3961)
Diffstat (limited to 'src')
-rw-r--r-- | src/cryptography/utils.py | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/cryptography/utils.py b/src/cryptography/utils.py index 02857c06..986b504f 100644 --- a/src/cryptography/utils.py +++ b/src/cryptography/utils.py @@ -15,8 +15,7 @@ import warnings # ubiquity of their use. They should not be removed until we agree on when that # cycle ends. PersistentlyDeprecated = DeprecationWarning -DeprecatedIn19 = DeprecationWarning -DeprecatedIn21 = PendingDeprecationWarning +DeprecatedIn21 = DeprecationWarning def _check_bytes(name, value): |