summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBob Ippolito <bob@redivi.com>2006-07-12 17:46:17 +0000
committerBob Ippolito <bob@redivi.com>2006-07-12 17:46:17 +0000
commitf92ad76613d9bac57047c8096b5dccc1670d9720 (patch)
treeff2be172b9aa182eac84b60a72813cedbbdd2902
parent9eec25bff41ca103b28c1a14ec0220932e4e65b3 (diff)
downloadsimplejson-f92ad76613d9bac57047c8096b5dccc1670d9720.tar.gz
unused
git-svn-id: http://simplejson.googlecode.com/svn/trunk@28 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 627fd3e..b694e11 100644
--- a/simplejson/encoder.py
+++ b/simplejson/encoder.py
@@ -3,7 +3,6 @@ Implementation of JSONEncoder
"""
import re
-# this should match any kind of infinity
ESCAPE = re.compile(r'[\x00-\x19\\"\b\f\n\r\t]')
ESCAPE_ASCII = re.compile(r'([\\"/]|[^\ -~])')
ESCAPE_DCT = {