diff options
author | Martin v. Löwis <martin@v.loewis.de> | 2008-04-07 03:22:07 (GMT) |
---|---|---|
committer | Martin v. Löwis <martin@v.loewis.de> | 2008-04-07 03:22:07 (GMT) |
commit | 5a6f4585fdc52959bcc0dfdb9d25f2d34f983300 (patch) | |
tree | 889d39a1f6556e8aab23628d036b60e53cb1ab51 /Objects/stringlib/formatter.h | |
parent | d218dc15e6b75d07450e4388c32e39c5741718bf (diff) | |
download | cpython-5a6f4585fdc52959bcc0dfdb9d25f2d34f983300.zip cpython-5a6f4585fdc52959bcc0dfdb9d25f2d34f983300.tar.gz cpython-5a6f4585fdc52959bcc0dfdb9d25f2d34f983300.tar.bz2 |
Merged revisions 62199 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk
........
r62199 | martin.v.loewis | 2008-04-07 05:08:28 +0200 (Mo, 07 Apr 2008) | 2 lines
Bug #2388: Fix gcc warnings when compiling with --enable-unicode=ucs4.
........
Diffstat (limited to 'Objects/stringlib/formatter.h')
-rw-r--r-- | Objects/stringlib/formatter.h | 15 |
1 files changed, 13 insertions, 2 deletions
diff --git a/Objects/stringlib/formatter.h b/Objects/stringlib/formatter.h index 3ca14fa..531bc22 100644 --- a/Objects/stringlib/formatter.h +++ b/Objects/stringlib/formatter.h @@ -785,8 +785,19 @@ FORMAT_STRING(PyObject* value, PyObject* args) break; default: /* unknown */ - PyErr_Format(PyExc_ValueError, "Unknown conversion type %c", - format.type); + #if STRINGLIB_IS_UNICODE + /* If STRINGLIB_CHAR is Py_UNICODE, %c might be out-of-range, + hence the two cases. If it is char, gcc complains that the + condition below is always true, hence the ifdef. */ + if (format.type > 32 && format.type <128) + #endif + PyErr_Format(PyExc_ValueError, "Unknown conversion type %c", + (char)format.type); + #if STRINGLIB_IS_UNICODE + else + PyErr_Format(PyExc_ValueError, "Unknown conversion type '\\x%x'", + (unsigned int)format.type); + #endif goto done; } |