summaryrefslogtreecommitdiffstats
path: root/Objects/unicodeobject.c
diff options
context:
space:
mode:
authorChristian Heimes <christian@cheimes.de>2007-11-23 06:52:42 (GMT)
committerChristian Heimes <christian@cheimes.de>2007-11-23 06:52:42 (GMT)
commit5914323c283513253677433c8f5d579fb4eb6946 (patch)
tree957d4d556fd2f9825b29cb14592e455f2f54e23c /Objects/unicodeobject.c
parente165727d57afb2059ec807acf5c1b32cb6f0ea9b (diff)
downloadcpython-5914323c283513253677433c8f5d579fb4eb6946.zip
cpython-5914323c283513253677433c8f5d579fb4eb6946.tar.gz
cpython-5914323c283513253677433c8f5d579fb4eb6946.tar.bz2
Cleanup
Removed unreferenced variable
Diffstat (limited to 'Objects/unicodeobject.c')
-rw-r--r--Objects/unicodeobject.c1
1 files changed, 0 insertions, 1 deletions
diff --git a/Objects/unicodeobject.c b/Objects/unicodeobject.c
index c351130..02b0c7a 100644
--- a/Objects/unicodeobject.c
+++ b/Objects/unicodeobject.c
@@ -8654,7 +8654,6 @@ PyObject *PyUnicode_Format(PyObject *format,
Py_INCREF(temp);
}
else {
- PyObject *unicode;
if (c == 's')
temp = PyObject_Str(v);
else