-
-
Notifications
You must be signed in to change notification settings - Fork 32.7k
gh-128942: make arraymodule.c free-thread safe (lock-free) #130771
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: main
Are you sure you want to change the base?
Changes from all commits
f54c5fc
4c71f00
512c4c7
060100f
d0b17c6
c17b787
4fd8383
d00f2b7
a3e6004
fb6212a
04a8f9d
01423fd
99331dd
07c98cc
cf3bbbb
51135a4
fff827e
12f0ff6
1a6b8df
94ef417
0056412
1431784
460d3d7
409239c
a6f17c9
b5d219e
2c82071
1ba50e9
576aebf
4dd0954
d4e5313
48eabe3
c056b13
affae8e
689c7a3
3e2f8cd
7286fed
6550906
5b35203
15d92ca
2e7132e
06f86cf
d29c208
8db665a
cad8ca2
1a50981
f023e77
b53ba2a
eb60ffa
6d50e9a
711d86e
a813353
684b953
0cec45d
fd97dc3
229383b
8198469
8af6be7
201e7ad
0bd7ec1
b8bdb13
05b1a91
60f6e5b
30cfdbf
07c9c15
d545dc4
155c191
39796fd
4dbaa53
5c1d13b
92039ce
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
Make the :mod:`array` module safe under :term:`free threading`. |
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -38,3 +38,6 @@ _symtable symtablemodule.c | |
|
||
# for systems without $HOME env, used by site._getuserbase() | ||
@MODULE_PWD_TRUE@pwd pwdmodule.c | ||
|
||
# for optimization purposes | ||
@MODULE_ARRAY_TRUE@array arraymodule.c | ||
Comment on lines
+42
to
+43
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. What's the rationale for this? We should really avoid adding more and more modules to There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. This change was requested by @colesbury for optimization purposes: #130771 (comment) So maybe you guys decide which way to go. |
Uh oh!
There was an error while loading. Please reload this page.