summaryrefslogtreecommitdiffstats
path: root/Python
diff options
context:
space:
mode:
authorTim Peters <tim.peters@gmail.com>2000-07-09 02:11:18 (GMT)
committerTim Peters <tim.peters@gmail.com>2000-07-09 02:11:18 (GMT)
commit4be47c0f76c349ee9c04b08ed122c8bd8190d2c5 (patch)
tree76602509be0a2c2bb2117ff3dfd47c44523e9d29 /Python
parent3cf4d2b3ea93eee40d34b1ae4845497d0cd3fcec (diff)
downloadcpython-4be47c0f76c349ee9c04b08ed122c8bd8190d2c5.zip
cpython-4be47c0f76c349ee9c04b08ed122c8bd8190d2c5.tar.gz
cpython-4be47c0f76c349ee9c04b08ed122c8bd8190d2c5.tar.bz2
Get rid of unused vars in builtin_unicode (they were causing
legit warnings).
Diffstat (limited to 'Python')
-rw-r--r--Python/bltinmodule.c2
1 files changed, 0 insertions, 2 deletions
diff --git a/Python/bltinmodule.c b/Python/bltinmodule.c
index 8e2720b..2bae3eb 100644
--- a/Python/bltinmodule.c
+++ b/Python/bltinmodule.c
@@ -148,8 +148,6 @@ builtin_unicode(self, args)
PyObject *args;
{
PyObject *v;
- const void *buffer;
- int len;
char *encoding = NULL;
char *errors = NULL;