summaryrefslogtreecommitdiff
path: root/simplejson
diff options
context:
space:
mode:
Diffstat (limited to 'simplejson')
-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 = {