[Python-checkins] r76860 - peps/trunk/pep0/pep.py

barry.warsaw python-checkins at python.org
Wed Dec 16 16:52:13 CET 2009


Author: barry.warsaw
Date: Wed Dec 16 16:52:12 2009
New Revision: 76860

Log:
Add missing exception.


Modified:
   peps/trunk/pep0/pep.py

Modified: peps/trunk/pep0/pep.py
==============================================================================
--- peps/trunk/pep0/pep.py	(original)
+++ peps/trunk/pep0/pep.py	Wed Dec 16 16:52:12 2009
@@ -24,6 +24,11 @@
             return "(%s): %r" % (self.filename, error_msg)
 
 
+class PEPParseError(PEPError):
+
+    pass
+
+
 class Author(object):
 
     """Represent PEP authors.


More information about the Python-checkins mailing list