summaryrefslogtreecommitdiffstats
path: root/Python/bltinmodule.c
diff options
context:
space:
mode:
authorGuido van Rossum <guido@python.org>2007-05-22 00:10:22 (GMT)
committerGuido van Rossum <guido@python.org>2007-05-22 00:10:22 (GMT)
commit390bd7c67e4521bfcf8c923b6d8922881555b627 (patch)
tree8b9d9e8f69991565fe38fd24b3cd36657a7a6b62 /Python/bltinmodule.c
parent7d0a8264ff29fe8963bb1cc67debc03e7c728a98 (diff)
downloadcpython-390bd7c67e4521bfcf8c923b6d8922881555b627.zip
cpython-390bd7c67e4521bfcf8c923b6d8922881555b627.tar.gz
cpython-390bd7c67e4521bfcf8c923b6d8922881555b627.tar.bz2
Oops. unicode() builtin was still around.
Diffstat (limited to 'Python/bltinmodule.c')
-rw-r--r--Python/bltinmodule.c1
1 files changed, 0 insertions, 1 deletions
diff --git a/Python/bltinmodule.c b/Python/bltinmodule.c
index 064b92a..1587e06 100644
--- a/Python/bltinmodule.c
+++ b/Python/bltinmodule.c
@@ -2056,7 +2056,6 @@ _PyBuiltin_Init(void)
SETBUILTIN("super", &PySuper_Type);
SETBUILTIN("tuple", &PyTuple_Type);
SETBUILTIN("type", &PyType_Type);
- SETBUILTIN("unicode", &PyUnicode_Type);
debug = PyBool_FromLong(Py_OptimizeFlag == 0);
if (PyDict_SetItemString(dict, "__debug__", debug) < 0) {
Py_XDECREF(debug);