Oops. unicode() builtin was still around.

This commit is contained in:
Guido van Rossum 2007-05-22 00:10:22 +00:00
parent 7d0a8264ff
commit 390bd7c67e
1 changed files with 0 additions and 1 deletions

View File

@ -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);