aboutsummaryrefslogtreecommitdiffstats
path: root/src/cryptography/utils.py
diff options
context:
space:
mode:
authorPaul Kehrer <paul.l.kehrer@gmail.com>2015-12-25 16:36:46 -0600
committerPaul Kehrer <paul.l.kehrer@gmail.com>2015-12-25 17:02:41 -0600
commitc6242dcaa972b0dd53af1ed8eedfd9b797dbaf2f (patch)
tree163822ce55fb46e8133dfbcf2fa779da363c3ba3 /src/cryptography/utils.py
parentcad8ae268c5009c989b765021404ff8c86df1d8b (diff)
downloadcryptography-c6242dcaa972b0dd53af1ed8eedfd9b797dbaf2f.tar.gz
cryptography-c6242dcaa972b0dd53af1ed8eedfd9b797dbaf2f.tar.bz2
cryptography-c6242dcaa972b0dd53af1ed8eedfd9b797dbaf2f.zip
rename CRLExtensionOID to CRLEntryExtensionOID
Diffstat (limited to 'src/cryptography/utils.py')
-rw-r--r--src/cryptography/utils.py3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/cryptography/utils.py b/src/cryptography/utils.py
index 4449e85a..b85d50d3 100644
--- a/src/cryptography/utils.py
+++ b/src/cryptography/utils.py
@@ -12,7 +12,10 @@ import sys
import warnings
+# the functions deprecated in 1.0 are on an arbitrarily extended deprecation
+# cycle and should not be removed until we agree on when that cycle ends.
DeprecatedIn10 = DeprecationWarning
+DeprecatedIn12 = PendingDeprecationWarning
def read_only_property(name):