Skip to content
Snippets Groups Projects
Commit f0db3c5e1e0f authored by Bob Ippolito's avatar Bob Ippolito
Browse files

pyflakes fixes

git-svn-id: http://simplejson.googlecode.com/svn/trunk@235 a4795897-2c25-0410-b006-0d3caba88fa1
parent 97431ea8768e
No related branches found
No related tags found
No related merge requests found
...@@ -53,7 +53,7 @@ ...@@ -53,7 +53,7 @@
x = {} x = {}
y = {"a": x, "b": x} y = {"a": x, "b": x}
# ensure that the marker is cleared # ensure that the marker is cleared
json.dumps(x) json.dumps(y)
def test_defaultrecursion(self): def test_defaultrecursion(self):
enc = RecursiveJSONEncoder() enc = RecursiveJSONEncoder()
......
import decimal
from unittest import TestCase from unittest import TestCase
...@@ -2,6 +1,6 @@ ...@@ -2,6 +1,6 @@
from unittest import TestCase from unittest import TestCase
from simplejson import decoder, encoder, scanner from simplejson import encoder, scanner
def has_speedups(): def has_speedups():
return encoder.c_make_encoder is not None return encoder.c_make_encoder is not None
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment