diff options
author | Victor Stinner <victor.stinner@gmail.com> | 2013-11-12 20:39:02 (GMT) |
---|---|---|
committer | Victor Stinner <victor.stinner@gmail.com> | 2013-11-12 20:39:02 (GMT) |
commit | 3f36a5736b92457273d06cc17d55dd379381873d (patch) | |
tree | 81b290f15766d544f0962fed401f52036bf961cc /Objects | |
parent | dcf17f8a553f51fc77d6bb72f4563f625af0d639 (diff) | |
download | cpython-3f36a5736b92457273d06cc17d55dd379381873d.zip cpython-3f36a5736b92457273d06cc17d55dd379381873d.tar.gz cpython-3f36a5736b92457273d06cc17d55dd379381873d.tar.bz2 |
Issue #19515: Remove identifiers duplicated in the same file.
Patch written by Andrei Dorian Duma.
Diffstat (limited to 'Objects')
-rw-r--r-- | Objects/typeobject.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/Objects/typeobject.c b/Objects/typeobject.c index 0708d67..09f77fa 100644 --- a/Objects/typeobject.c +++ b/Objects/typeobject.c @@ -5633,7 +5633,6 @@ slot_tp_new(PyTypeObject *type, PyObject *args, PyObject *kwds) PyObject *func; PyObject *newargs, *x; Py_ssize_t i, n; - _Py_IDENTIFIER(__new__); func = _PyObject_GetAttrId((PyObject *)type, &PyId___new__); if (func == NULL) |