aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMohammed Attia <skeuomorf@gmail.com>2014-03-03 16:41:56 +0200
committerMohammed Attia <skeuomorf@gmail.com>2014-03-03 16:41:56 +0200
commit14a1f2dbf7ddd58b709a27c7a2ed9ae6a2c88d0e (patch)
treec0b10e71165169207bd99b6f7289835e0338c20e
parentd0b0c73d1d87423f4a63ba05ab4cf1f290a5af02 (diff)
downloadcryptography-14a1f2dbf7ddd58b709a27c7a2ed9ae6a2c88d0e.tar.gz
cryptography-14a1f2dbf7ddd58b709a27c7a2ed9ae6a2c88d0e.tar.bz2
cryptography-14a1f2dbf7ddd58b709a27c7a2ed9ae6a2c88d0e.zip
Change public_key from abstractproperty to abstractmethod
-rw-r--r--cryptography/hazmat/primitives/interfaces.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/cryptography/hazmat/primitives/interfaces.py b/cryptography/hazmat/primitives/interfaces.py
index 663f9655..3d345a99 100644
--- a/cryptography/hazmat/primitives/interfaces.py
+++ b/cryptography/hazmat/primitives/interfaces.py
@@ -371,7 +371,7 @@ class DSAPrivateKey(six.with_metaclass(abc.ABCMeta)):
The private key in the DSA structure.
"""
- @abc.abstractproperty
+ @abc.abstractmethod
def public_key(self):
"""
The DSAPublicKey associated with this private key.