summaryrefslogtreecommitdiff
path: root/simplejson/scanner.py
diff options
context:
space:
mode:
authorBob Ippolito <bob@redivi.com>2006-10-18 16:52:57 +0000
committerBob Ippolito <bob@redivi.com>2006-10-18 16:52:57 +0000
commit2a24901f5fb5abaca82783efbd04ac90903a3e76 (patch)
tree86cf17751a4a0325444300982e214ae1835b868f /simplejson/scanner.py
parentfee28fbad54a8ef52330c9fbe310adfcdfe42c63 (diff)
downloadsimplejson-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.py2
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']