[issue35444] Unify and optimize the helper for getting a builtin object

2018-12-11 Thread Serhiy Storchaka
Change by Serhiy Storchaka : -- resolution: -> fixed stage: patch review -> resolved status: open -> closed ___ Python tracker ___

[issue35444] Unify and optimize the helper for getting a builtin object

2018-12-11 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: New changeset 7211d306d4c2f73732540759e20dd17bd18b3361 by Serhiy Storchaka in branch 'master': Remove an unused variable after bpo-35444. (GH-7) https://github.com/python/cpython/commit/7211d306d4c2f73732540759e20dd17bd18b3361 --

[issue35444] Unify and optimize the helper for getting a builtin object

2018-12-11 Thread STINNER Victor
STINNER Victor added the comment: I reopen the issuue. Commit bb86bf4c4eaa30b1f5192dab9f389ce0bb61114d introduced a new compiler warning: gcc -pthread -c -Wno-unused-result -Wsign-compare -g -Og -Wall -O0 -std=c99 -Wextra -Wno-unused-result -Wno-unused-parameter -Wno-missing-field-initial

[issue35444] Unify and optimize the helper for getting a builtin object

2018-12-11 Thread Serhiy Storchaka
Change by Serhiy Storchaka : -- pull_requests: +10346 stage: resolved -> patch review ___ Python tracker ___ ___ Python-bugs-list ma

[issue35444] Unify and optimize the helper for getting a builtin object

2018-12-11 Thread Serhiy Storchaka
Change by Serhiy Storchaka : -- resolution: -> fixed stage: patch review -> resolved status: open -> closed versions: +Python 3.6, Python 3.7 ___ Python tracker ___ __

[issue35444] Unify and optimize the helper for getting a builtin object

2018-12-11 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: New changeset be6ec444729f727f304ae10f3a7e2feda3cc3aaa by Serhiy Storchaka (Miss Islington (bot)) in branch '3.6': bpo-35444: Fix error handling when fail to look up builtin "getattr". (GH-11047) (GH-11107) (GH-11108) https://github.com/python/cpython/comm

[issue35444] Unify and optimize the helper for getting a builtin object

2018-12-11 Thread miss-islington
Change by miss-islington : -- pull_requests: +10337 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://m

[issue35444] Unify and optimize the helper for getting a builtin object

2018-12-11 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: New changeset 3cae16d2e98ffaa89ddd311df70a857dfaff4020 by Serhiy Storchaka in branch '3.7': bpo-35444: Fix error handling when fail to look up builtin "getattr". (GH-11047) (GH-11107) https://github.com/python/cpython/commit/3cae16d2e98ffaa89ddd311df70a857

[issue35444] Unify and optimize the helper for getting a builtin object

2018-12-10 Thread Serhiy Storchaka
Change by Serhiy Storchaka : -- pull_requests: +10336 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https:/

[issue35444] Unify and optimize the helper for getting a builtin object

2018-12-10 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: New changeset bb86bf4c4eaa30b1f5192dab9f389ce0bb61114d by Serhiy Storchaka in branch 'master': bpo-35444: Unify and optimize the helper for getting a builtin object. (GH-11047) https://github.com/python/cpython/commit/bb86bf4c4eaa30b1f5192dab9f389ce0bb6111

[issue35444] Unify and optimize the helper for getting a builtin object

2018-12-09 Thread Serhiy Storchaka
Change by Serhiy Storchaka : -- keywords: +patch pull_requests: +10283 stage: -> patch review ___ Python tracker ___ ___ Python-bug

[issue35444] Unify and optimize the helper for getting a builtin object

2018-12-09 Thread Serhiy Storchaka
New submission from Serhiy Storchaka : _PyIter_GetBuiltin() was introduced in issue14288 (31668b8f7a3efc7b17511bb08525b28e8ff5f23a). This was used for getting references to the builtin "iter" and "reverse". It was renamed to _PyObject_GetBuiltin() in a701388de1135241b5a8e4c970e06c0e83a66dc0.