From: Serhiy Storchaka Date: Tue, 11 Dec 2018 13:14:12 +0000 (+0200) Subject: Remove an unused variable after bpo-35444. (GH-11117) X-Git-Tag: v3.8.0a1~290 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=7211d306d4c2f73732540759e20dd17bd18b3361;p=python Remove an unused variable after bpo-35444. (GH-11117) --- diff --git a/Objects/object.c b/Objects/object.c index 993342eae5..6c2bd7717c 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;