diff options
author | Alex Stapleton <alexs@prol.etari.at> | 2015-01-18 15:57:28 +0000 |
---|---|---|
committer | Alex Stapleton <alex@ly.st> | 2015-01-22 15:26:22 +0000 |
commit | f48f69d6654a10a46e34323747c54e0f0ccb7eef (patch) | |
tree | 326919d2326898b7236312a777feb25cdc9e301b /src/cryptography/utils.py | |
parent | 7b672cace5c59a682e20854eac423e7e8c427531 (diff) | |
download | cryptography-f48f69d6654a10a46e34323747c54e0f0ccb7eef.tar.gz cryptography-f48f69d6654a10a46e34323747c54e0f0ccb7eef.tar.bz2 cryptography-f48f69d6654a10a46e34323747c54e0f0ccb7eef.zip |
Move DSA* interfaces to interfaces.dsa module
Diffstat (limited to 'src/cryptography/utils.py')
-rw-r--r-- | src/cryptography/utils.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/cryptography/utils.py b/src/cryptography/utils.py index 72f9a347..78dcc1ca 100644 --- a/src/cryptography/utils.py +++ b/src/cryptography/utils.py @@ -13,6 +13,8 @@ import warnings # DeprecatedIn07 objects exist. This comment exists to remind developers to # look for them when it's time for the ninth release cycle deprecation dance. +DeprecatedIn08 = PendingDeprecationWarning + def read_only_property(name): return property(lambda self: getattr(self, name)) |