[Python-checkins] r55099 - python/branches/py3k-struni/Python/bltinmodule.c
guido.van.rossum
python-checkins at python.org
Thu May 3 19:22:58 CEST 2007
Author: guido.van.rossum
Date: Thu May 3 19:22:56 2007
New Revision: 55099
Modified:
python/branches/py3k-struni/Python/bltinmodule.c
Log:
Kill unichr() itself.
Modified: python/branches/py3k-struni/Python/bltinmodule.c
==============================================================================
--- python/branches/py3k-struni/Python/bltinmodule.c (original)
+++ python/branches/py3k-struni/Python/bltinmodule.c Thu May 3 19:22:56 2007
@@ -2286,9 +2286,6 @@
{"setattr", builtin_setattr, METH_VARARGS, setattr_doc},
{"sorted", (PyCFunction)builtin_sorted, METH_VARARGS | METH_KEYWORDS, sorted_doc},
{"sum", builtin_sum, METH_VARARGS, sum_doc},
-#ifdef Py_USING_UNICODE
- {"unichr", builtin_unichr, METH_VARARGS, unichr_doc},
-#endif
{"vars", builtin_vars, METH_VARARGS, vars_doc},
{"zip", builtin_zip, METH_VARARGS, zip_doc},
{NULL, NULL},
More information about the Python-checkins
mailing list