summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBob Ippolito <bob@redivi.com>2006-07-12 17:45:58 +0000
committerBob Ippolito <bob@redivi.com>2006-07-12 17:45:58 +0000
commit9eec25bff41ca103b28c1a14ec0220932e4e65b3 (patch)
treed1d65fade32b3cf46f40fa793ea750b5fa6720ad
parent43656b8109cacd7c70dac84715bcce23eda47898 (diff)
downloadsimplejson-9eec25bff41ca103b28c1a14ec0220932e4e65b3.tar.gz
unused
git-svn-id: http://simplejson.googlecode.com/svn/trunk@27 a4795897-2c25-0410-b006-0d3caba88fa1
-rw-r--r--simplejson/encoder.py1
1 files changed, 0 insertions, 1 deletions
diff --git a/simplejson/encoder.py b/simplejson/encoder.py
index b285ae9..627fd3e 100644
--- a/simplejson/encoder.py
+++ b/simplejson/encoder.py
@@ -4,7 +4,6 @@ Implementation of JSONEncoder
import re
# this should match any kind of infinity
-INFCHARS = re.compile(r'[infINF]')
ESCAPE = re.compile(r'[\x00-\x19\\"\b\f\n\r\t]')
ESCAPE_ASCII = re.compile(r'([\\"/]|[^\ -~])')
ESCAPE_DCT = {