Author: guido.van.rossum
Date: Tue May 22 02:10:22 2007
New Revision: 55498

Modified:
   python/branches/py3k-struni/Python/bltinmodule.c
Log:
Oops.  unicode() builtin was still around.


Modified: python/branches/py3k-struni/Python/bltinmodule.c
==============================================================================
--- python/branches/py3k-struni/Python/bltinmodule.c    (original)
+++ python/branches/py3k-struni/Python/bltinmodule.c    Tue May 22 02:10:22 2007
@@ -2056,7 +2056,6 @@
        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);
_______________________________________________
Python-3000-checkins mailing list
[email protected]
http://mail.python.org/mailman/listinfo/python-3000-checkins

Reply via email to