From 9ad01d682478aab19d206d8872ec9df158a77e87 Mon Sep 17 00:00:00 2001 From: Barry Warsaw Date: Wed, 16 Dec 2009 15:52:12 +0000 Subject: [PATCH] Add missing exception. --- pep0/pep.py | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/pep0/pep.py b/pep0/pep.py index 5fae4e0df..7c0e13cc5 100644 --- a/pep0/pep.py +++ b/pep0/pep.py @@ -24,6 +24,11 @@ class PEPError(Exception): return "(%s): %r" % (self.filename, error_msg) +class PEPParseError(PEPError): + + pass + + class Author(object): """Represent PEP authors.