[issue36876] [subinterpreters] Global C variables are a problem

2022-02-10 Thread Eric Snow
Eric Snow added the comment: New changeset 80e4f262aa27a39abf3fadc19a6323fea4607a8f by Eric Snow in branch 'main': bpo-36876: Make sure the c-analyzer is checking all the source files.' (gh-31264) https://github.com/python/cpython/commit/80e4f262aa27a39abf3fadc19a6323fea4607a8f --

[issue36876] [subinterpreters] Global C variables are a problem

2022-02-10 Thread Eric Snow
Change by Eric Snow : -- pull_requests: +29430 pull_request: https://github.com/python/cpython/pull/31264 ___ Python tracker ___

[issue36876] [subinterpreters] Global C variables are a problem

2022-02-09 Thread Eric Snow
Eric Snow added the comment: New changeset cb68788dcadf43b47292bab7816a5ed9efa69730 by Eric Snow in branch 'main': bpo-36876: Minor cleanup to c-analyzer "ignored" data.' (gh-31239) https://github.com/python/cpython/commit/cb68788dcadf43b47292bab7816a5ed9efa69730 --

[issue36876] [subinterpreters] Global C variables are a problem

2022-02-09 Thread Eric Snow
Change by Eric Snow : -- pull_requests: +29409 pull_request: https://github.com/python/cpython/pull/31239 ___ Python tracker ___

[issue36876] [subinterpreters] Global C variables are a problem

2022-02-08 Thread Eric Snow
Eric Snow added the comment: New changeset 77bab59c8a1f04922bb975cc4f11e5323d1d379d by Eric Snow in branch 'main': bpo-36876: Update the c-analyzer whitelist. (gh-31225) https://github.com/python/cpython/commit/77bab59c8a1f04922bb975cc4f11e5323d1d379d --

[issue36876] [subinterpreters] Global C variables are a problem

2022-02-08 Thread Eric Snow
Change by Eric Snow : -- pull_requests: +29396 pull_request: https://github.com/python/cpython/pull/31225 ___ Python tracker ___

[issue36876] [subinterpreters] Global C variables are a problem

2021-05-16 Thread Dennis Sweeney
Dennis Sweeney added the comment: I'm getting the following FutureWarning on a certain regular expression. I think it just needs "[]" to become "\[\]". 0:05:36 load avg: 0.00 [ 53/427] test_check_c_globals ...\Tools\c-analyzer\c_common\tables.py:236: FutureWarning: Possible nested set at

[issue36876] [subinterpreters] Global C variables are a problem

2020-12-25 Thread Eric Snow
Eric Snow added the comment: New changeset 5ae9be68d9f1a628fdc920b647257f94afb77887 by Eric Snow in branch 'master': bpo-36876: [c-analyzer tool] Additional CLI updates for "capi" command. (gh-23929) https://github.com/python/cpython/commit/5ae9be68d9f1a628fdc920b647257f94afb77887

[issue36876] [subinterpreters] Global C variables are a problem

2020-12-24 Thread Eric Snow
Change by Eric Snow : -- pull_requests: +22779 pull_request: https://github.com/python/cpython/pull/23929 ___ Python tracker ___

[issue36876] [subinterpreters] Global C variables are a problem

2020-12-24 Thread Eric Snow
Eric Snow added the comment: New changeset 7ec59d8861ef1104c3028678b2cacde4c5693e19 by Eric Snow in branch 'master': bpo-36876: [c-analyzer tool] Add a "capi" subcommand to the c-analyzer tool. (gh-23918) https://github.com/python/cpython/commit/7ec59d8861ef1104c3028678b2cacde4c5693e19

[issue36876] [subinterpreters] Global C variables are a problem

2020-12-23 Thread Eric Snow
Change by Eric Snow : -- pull_requests: +22769 pull_request: https://github.com/python/cpython/pull/23918 ___ Python tracker ___

[issue36876] [subinterpreters] Global C variables are a problem

2020-11-20 Thread Eric Snow
Eric Snow added the comment: New changeset 9f02b479e6b6b48d0c2aad621978cff82e530b15 by Eric Snow in branch 'master': bpo-36876: [c-analyzer tool] Tighten up the results and output. (GH-23431) https://github.com/python/cpython/commit/9f02b479e6b6b48d0c2aad621978cff82e530b15 --

[issue36876] [subinterpreters] Global C variables are a problem

2020-11-20 Thread Eric Snow
Change by Eric Snow : -- pull_requests: +22322 pull_request: https://github.com/python/cpython/pull/23431 ___ Python tracker ___

[issue36876] [subinterpreters] Global C variables are a problem

2020-10-30 Thread Eric Snow
Eric Snow added the comment: New changeset 4fe72090deb7fb7bc09bfa56c92f6b3b0967d395 by Eric Snow in branch 'master': bpo-36876: Small adjustments to the C-analyzer tool. (GH-23045) https://github.com/python/cpython/commit/4fe72090deb7fb7bc09bfa56c92f6b3b0967d395 --

[issue36876] [subinterpreters] Global C variables are a problem

2020-10-30 Thread Eric Snow
Change by Eric Snow : -- pull_requests: +21964 pull_request: https://github.com/python/cpython/pull/23045 ___ Python tracker ___

[issue36876] [subinterpreters] Global C variables are a problem

2020-10-22 Thread Eric Snow
Eric Snow added the comment: New changeset 345cd37abe324ad4f60f80e2c3133b8849e54e9b by Eric Snow in branch 'master': bpo-36876: Fix the C analyzer tool. (GH-22841) https://github.com/python/cpython/commit/345cd37abe324ad4f60f80e2c3133b8849e54e9b --

[issue36876] [subinterpreters] Global C variables are a problem

2020-10-20 Thread Eric Snow
Change by Eric Snow : -- pull_requests: +21795 pull_request: https://github.com/python/cpython/pull/22841 ___ Python tracker ___

[issue36876] [subinterpreters] Global C variables are a problem

2020-05-14 Thread David Bolen
Change by David Bolen : -- nosy: -db3l ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue36876] [subinterpreters] Global C variables are a problem

2020-05-14 Thread STINNER Victor
STINNER Victor added the comment: More and more C extensions are converted to multiphase initialization API (PEP 489) and their global variables are moved into a new module state. bpo-39465 will make _Py_IDENTIFIER compatible with subinterpreters. See also bpo-40521 for caches like free

[issue36876] [subinterpreters] Global C variables are a problem

2020-05-14 Thread STINNER Victor
Change by STINNER Victor : -- components: +Subinterpreters -Interpreter Core title: Global C variables are a problem. -> [subinterpreters] Global C variables are a problem ___ Python tracker