changeset 326:0e1049d9c81d trunk

Make dependency on the parser module optional.
author cmlenz
date Fri, 11 Apr 2008 12:51:12 +0000
parents 5888bd8c5733
children 715386084edd
files babel/util.py
diffstat 1 files changed, 2 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- a/babel/util.py
+++ b/babel/util.py
@@ -16,7 +16,6 @@
 import codecs
 from datetime import timedelta, tzinfo
 import os
-import parser
 import re
 try:
     set
@@ -75,8 +74,9 @@
         m = PYTHON_MAGIC_COMMENT_re.match(line1)
         if not m:
             try:
+                import parser
                 parser.suite(line1)
-            except SyntaxError:
+            except ImportError, SyntaxError:
                 # Either it's a real syntax error, in which case the source is
                 # not valid python source, or line2 is a continuation of line1,
                 # in which case we don't want to scan line2 for a magic
Copyright (C) 2012-2017 Edgewall Software