diff options
| author | Guido van Rossum <guido@python.org> | 2007-05-22 00:10:22 +0000 |
|---|---|---|
| committer | Guido van Rossum <guido@python.org> | 2007-05-22 00:10:22 +0000 |
| commit | 181a2d813ef08ebc9d20d6b1a810f8189b1da413 (patch) | |
| tree | 99e1e6fdc669ffd7c918d5f1a4588d48e15f208f /Python | |
| parent | 388d6bfc03fdd40b835be22eb116cfae5a07d606 (diff) | |
| download | cpython-181a2d813ef08ebc9d20d6b1a810f8189b1da413.tar.gz | |
Oops. unicode() builtin was still around.
Diffstat (limited to 'Python')
| -rw-r--r-- | Python/bltinmodule.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/Python/bltinmodule.c b/Python/bltinmodule.c index 064b92a7bd..1587e062e6 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); |
