diff options
author | Bob Ippolito <bob@redivi.com> | 2006-10-18 16:52:57 +0000 |
---|---|---|
committer | Bob Ippolito <bob@redivi.com> | 2006-10-18 16:52:57 +0000 |
commit | 2a24901f5fb5abaca82783efbd04ac90903a3e76 (patch) | |
tree | 86cf17751a4a0325444300982e214ae1835b868f /simplejson/scanner.py | |
parent | fee28fbad54a8ef52330c9fbe310adfcdfe42c63 (diff) | |
download | simplejson-2a24901f5fb5abaca82783efbd04ac90903a3e76.tar.gz |
fix warning for Python 2.5
git-svn-id: http://simplejson.googlecode.com/svn/trunk@31 a4795897-2c25-0410-b006-0d3caba88fa1
Diffstat (limited to 'simplejson/scanner.py')
-rw-r--r-- | simplejson/scanner.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/simplejson/scanner.py b/simplejson/scanner.py index c2e9b6e..64f4999 100644 --- a/simplejson/scanner.py +++ b/simplejson/scanner.py @@ -3,7 +3,7 @@ Iterator based sre token scanner """ import sre_parse, sre_compile, sre_constants from sre_constants import BRANCH, SUBPATTERN -from sre import VERBOSE, MULTILINE, DOTALL +from re import VERBOSE, MULTILINE, DOTALL import re __all__ = ['Scanner', 'pattern'] |