mirror of
https://github.com/python/cpython.git
synced 2025-07-24 03:35:53 +00:00
Merged revisions 75877 via svnmerge from
svn+ssh://svn.python.org/python/branches/py3k ........ r75877 | georg.brandl | 2009-10-27 22:37:48 +0100 (Di, 27 Okt 2009) | 1 line Only declare variable when it's used. ........
This commit is contained in:
parent
6f1ee6f4e6
commit
227c4858bc
1 changed files with 2 additions and 0 deletions
|
@ -281,7 +281,9 @@ PyLocale_strxfrm(PyObject* self, PyObject* args)
|
|||
wchar_t *s, *buf = NULL;
|
||||
size_t n1, n2;
|
||||
PyObject *result = NULL;
|
||||
#ifndef HAVE_USABLE_WCHAR_T
|
||||
Py_ssize_t i;
|
||||
#endif
|
||||
|
||||
if (!PyArg_ParseTuple(args, "u#:strxfrm", &s0, &n0))
|
||||
return NULL;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue