[Python-checkins] Remove an unused variable after bpo-35444. (GH-11117)

Serhiy Storchaka webhook-mailer at python.org
Tue Dec 11 08:14:22 EST 2018


https://github.com/python/cpython/commit/7211d306d4c2f73732540759e20dd17bd18b3361
commit: 7211d306d4c2f73732540759e20dd17bd18b3361
branch: master
author: Serhiy Storchaka <storchaka at gmail.com>
committer: GitHub <noreply at github.com>
date: 2018-12-11T15:14:12+02:00
summary:

Remove an unused variable after bpo-35444. (GH-11117)

files:
M Objects/object.c

diff --git a/Objects/object.c b/Objects/object.c
index 993342eae5d8..6c2bd7717c01 100644
--- a/Objects/object.c
+++ b/Objects/object.c
@@ -17,7 +17,6 @@ _Py_IDENTIFIER(Py_Repr);
 _Py_IDENTIFIER(__bytes__);
 _Py_IDENTIFIER(__dir__);
 _Py_IDENTIFIER(__isabstractmethod__);
-_Py_IDENTIFIER(builtins);
 
 #ifdef Py_REF_DEBUG
 Py_ssize_t _Py_RefTotal;



More information about the Python-checkins mailing list