diff options
author | Christian Heimes <christian@cheimes.de> | 2013-01-03 08:22:41 (GMT) |
---|---|---|
committer | Christian Heimes <christian@cheimes.de> | 2013-01-03 08:22:41 (GMT) |
commit | 75e923fcf2da24c08d148b6a3256252d16cb8312 (patch) | |
tree | 2cc2cd91243a274be98f1b5eefd275c6ca113491 /Modules/_json.c | |
parent | 37623ab5f12b9034b1935f9507c3a5d1786dfd9e (diff) | |
parent | f402e922f36a1f5fb5cc8fd87022761c6ee68c20 (diff) | |
download | cpython-75e923fcf2da24c08d148b6a3256252d16cb8312.zip cpython-75e923fcf2da24c08d148b6a3256252d16cb8312.tar.gz cpython-75e923fcf2da24c08d148b6a3256252d16cb8312.tar.bz2 |
Issue #16847: Fixed improper use of _PyUnicode_CheckConsistency() in
non-pydebug builds. Several extension modules now compile cleanly when
assert()s are enabled in standard builds (-DDEBUG flag).
Diffstat (limited to 'Modules/_json.c')
-rw-r--r-- | Modules/_json.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Modules/_json.c b/Modules/_json.c index 68ebe99..2e1659e 100644 --- a/Modules/_json.c +++ b/Modules/_json.c @@ -210,7 +210,9 @@ ascii_escape_unicode(PyObject *pystr) } } output[chars++] = '"'; +#ifdef Py_DEBUG assert(_PyUnicode_CheckConsistency(rval, 1)); +#endif return rval; } |