diff options
author | Ezio Melotti <ezio.melotti@gmail.com> | 2011-10-21 22:01:32 (GMT) |
---|---|---|
committer | Ezio Melotti <ezio.melotti@gmail.com> | 2011-10-21 22:01:32 (GMT) |
commit | f881751ded440ef7e2d50648b7d8291c83511cf1 (patch) | |
tree | 6b8f410b7a69f0234d8110746fc7d463b243d147 /Objects | |
parent | 4837e39b0809680231e79007ee4e5836b82a9538 (diff) | |
download | cpython-f881751ded440ef7e2d50648b7d8291c83511cf1.zip cpython-f881751ded440ef7e2d50648b7d8291c83511cf1.tar.gz cpython-f881751ded440ef7e2d50648b7d8291c83511cf1.tar.bz2 |
Remove unused variable.
Diffstat (limited to 'Objects')
-rw-r--r-- | Objects/unicodeobject.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/Objects/unicodeobject.c b/Objects/unicodeobject.c index b961129..01d87dc 100644 --- a/Objects/unicodeobject.c +++ b/Objects/unicodeobject.c @@ -7382,7 +7382,6 @@ encode_code_page_errors(UINT code_page, PyObject **outbytes, PyObject *exc = NULL; PyObject *encoding_obj = NULL; char *encoding; - int err; Py_ssize_t startpos, newpos, newoutsize; PyObject *rep; int ret = -1; |