diff options
author | Serhiy Storchaka <storchaka@gmail.com> | 2018-12-11 13:14:12 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-12-11 13:14:12 (GMT) |
commit | 7211d306d4c2f73732540759e20dd17bd18b3361 (patch) | |
tree | 364855968662223e98a4f766e0afba1bae0e0d4b | |
parent | 2ab2afd387084ba38a37f5944fcb0675113b64dc (diff) | |
download | cpython-7211d306d4c2f73732540759e20dd17bd18b3361.zip cpython-7211d306d4c2f73732540759e20dd17bd18b3361.tar.gz cpython-7211d306d4c2f73732540759e20dd17bd18b3361.tar.bz2 |
Remove an unused variable after bpo-35444. (GH-11117)
-rw-r--r-- | Objects/object.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/Objects/object.c b/Objects/object.c index 993342e..6c2bd77 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; |