summaryrefslogtreecommitdiff
path: root/rsa/pem.py
diff options
context:
space:
mode:
authorYesudeep Mangalapilly <yesudeep@gmail.com>2011-08-16 14:58:32 +0530
committerYesudeep Mangalapilly <yesudeep@gmail.com>2011-08-16 14:58:32 +0530
commit5bfe5ffea25ee7aacaa48db55ed429b31714afb0 (patch)
tree133988336aaefb98b008dbaafab17a370c9b87f9 /rsa/pem.py
parentd1060d36697efcd1179ffdbc7b16d3a68643b8c5 (diff)
downloadrsa-git-5bfe5ffea25ee7aacaa48db55ed429b31714afb0.tar.gz
Moves incompatible doctests to unit test modules.
Diffstat (limited to 'rsa/pem.py')
-rw-r--r--rsa/pem.py7
1 files changed, 2 insertions, 5 deletions
diff --git a/rsa/pem.py b/rsa/pem.py
index b632ceb..5a37f6d 100644
--- a/rsa/pem.py
+++ b/rsa/pem.py
@@ -20,11 +20,8 @@ import base64
from rsa._compat import b, is_bytes
def _markers(pem_marker):
- """Returns the start and end PEM markers
-
- >>> _markers('RSA PRIVATE KEY')
- ('-----BEGIN RSA PRIVATE KEY-----', '-----END RSA PRIVATE KEY-----')
-
+ """
+ Returns the start and end PEM markers
"""
if is_bytes(pem_marker):