Add missing exception.

This commit is contained in:
Barry Warsaw 2009-12-16 15:52:12 +00:00
parent fc33fddc5a
commit 9ad01d6824
1 changed files with 5 additions and 0 deletions

View File

@ -24,6 +24,11 @@ class PEPError(Exception):
return "(%s): %r" % (self.filename, error_msg) return "(%s): %r" % (self.filename, error_msg)
class PEPParseError(PEPError):
pass
class Author(object): class Author(object):
"""Represent PEP authors. """Represent PEP authors.