Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit ded5acf

Browse files
committed
Merged revisions 81936 via svnmerge from
svn+ssh://svn.python.org/python/branches/py3k ........ r81936 | mark.dickinson | 2010-06-12 11:10:14 +0200 (Sa, 12 Jun 2010) | 2 lines Silence 'unused variable' gcc warning. Patch by Éric Araujo. ........
1 parent 378e6db commit ded5acf

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

Objects/unicodeobject.c

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2616,10 +2616,11 @@ PyUnicode_DecodeUTF32Stateful(const char *s,
26162616
Py_UNICODE *p;
26172617
#ifndef Py_UNICODE_WIDE
26182618
int pairs = 0;
2619+
const unsigned char *qq;
26192620
#else
26202621
const int pairs = 0;
26212622
#endif
2622-
const unsigned char *q, *e, *qq;
2623+
const unsigned char *q, *e;
26232624
int bo = 0; /* assume native ordering by default */
26242625
const char *errmsg = "";
26252626
/* Offsets from q for retrieving bytes in the right order. */

0 commit comments

Comments
 (0)