Corrected assert to check for correct type in py3k.

This commit is contained in:
Eric Smith 2008-02-24 21:41:49 +00:00
parent 6057b2e645
commit 4b051eecb9
1 changed files with 1 additions and 1 deletions

View File

@ -494,7 +494,7 @@ render_field(PyObject *fieldobj, SubString *format_spec, OutputString *output)
goto done;
#if PY_VERSION_HEX >= 0x03000000
assert(PyString_Check(result));
assert(PyUnicode_Check(result));
#else
assert(PyString_Check(result) || PyUnicode_Check(result));