summaryrefslogtreecommitdiff
path: root/Objects/intobject.c
diff options
context:
space:
mode:
authorMartin v. Löwis <martin@v.loewis.de>2006-02-27 16:46:16 +0000
committerMartin v. Löwis <martin@v.loewis.de>2006-02-27 16:46:16 +0000
commit49af04e5f18dc88fa2356acf9bac7e805dad6140 (patch)
treedbca7443cbf2947727269f1275228f0500bf9acc /Objects/intobject.c
parentb7b093eabcb7ce999e8f64fedfef53bfd3d79395 (diff)
downloadcpython-49af04e5f18dc88fa2356acf9bac7e805dad6140.tar.gz
Revert backwards-incompatible const changes.
Diffstat (limited to 'Objects/intobject.c')
-rw-r--r--Objects/intobject.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/Objects/intobject.c b/Objects/intobject.c
index 352210c819..b0876aea0c 100644
--- a/Objects/intobject.c
+++ b/Objects/intobject.c
@@ -950,7 +950,7 @@ int_new(PyTypeObject *type, PyObject *args, PyObject *kwds)
{
PyObject *x = NULL;
int base = -909;
- static const char *kwlist[] = {"x", "base", 0};
+ static char *kwlist[] = {"x", "base", 0};
if (type != &PyInt_Type)
return int_subtype_new(type, args, kwds); /* Wimp out */