summaryrefslogtreecommitdiff
path: root/simplejson
diff options
context:
space:
mode:
authorSerhiy Storchaka <storchaka@gmail.com>2017-05-21 13:38:20 +0300
committerSerhiy Storchaka <storchaka@gmail.com>2017-05-21 13:38:20 +0300
commitc6ceb19322a64f8fd7158343861478c0538deabd (patch)
treed65b7d40f56c9ae44468aa8f905f5861a41b6c0e /simplejson
parent3cfafa4865d6a97f7f92d04c9434a04fe82c5df0 (diff)
downloadsimplejson-c6ceb19322a64f8fd7158343861478c0538deabd.tar.gz
Added missed ";" in Python 2 only code.
Diffstat (limited to 'simplejson')
-rw-r--r--simplejson/_speedups.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/simplejson/_speedups.c b/simplejson/_speedups.c
index 75bd3c4..d61f270 100644
--- a/simplejson/_speedups.c
+++ b/simplejson/_speedups.c
@@ -2166,7 +2166,7 @@ scan_once_str(PyScannerObject *s, PyObject *pystr, Py_ssize_t idx, Py_ssize_t *n
switch (str[idx]) {
case '"':
/* string */
- strict = PyObject_IsTrue(s->strict)
+ strict = PyObject_IsTrue(s->strict);
if (strict < 0)
return NULL;
rval = scanstring_str(pystr, idx + 1,