Skip to content

gh-103092: Isolate winreg #103250

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

Merged
merged 34 commits into from
Apr 17, 2023
Merged
Changes from 1 commit
Commits
Show all changes
34 commits
Select commit Hold shift + click to select a range
c26eadc
gh-103092: isolate winreg
aisk Apr 4, 2023
cb77580
Update PC/winreg.c
aisk Apr 6, 2023
1f0ecc0
finish the isolate
aisk Apr 7, 2023
d48fc88
add tests for winreg
aisk Apr 7, 2023
2201037
add news
aisk Apr 7, 2023
71547ef
Update Lib/test/test_winreg.py
aisk Apr 9, 2023
1b5b873
Update Misc/NEWS.d/next/Library/2023-04-08-00-48-40.gh-issue-103092.5…
aisk Apr 9, 2023
a4eb9c5
Update PC/winreg.c
aisk Apr 9, 2023
179416a
Update PC/winreg.c
aisk Apr 9, 2023
73f3ffe
Update PC/winreg.c
aisk Apr 9, 2023
dff3839
Update PC/winreg.c
aisk Apr 9, 2023
8623719
Update PC/winreg.c
aisk Apr 9, 2023
3f1cd90
fix gc track on PyHKEY
aisk Apr 9, 2023
f3da318
using Py_Type to get class instead of using defining_class and
aisk Apr 9, 2023
a2017d1
fix the memory leak
aisk Apr 9, 2023
80af80c
Update PC/winreg.c
aisk Apr 10, 2023
9da5f0e
Update PC/winreg.c
aisk Apr 10, 2023
a06b9b5
Update PC/winreg.c
aisk Apr 10, 2023
0d7249a
Update PC/winreg.c
aisk Apr 10, 2023
488cae8
Update PC/winreg.c
aisk Apr 10, 2023
bbd1d6d
Update PC/winreg.c
aisk Apr 10, 2023
45fedf6
Update PC/winreg.c
aisk Apr 10, 2023
964e1dd
Update PC/winreg.c
aisk Apr 10, 2023
16de5c6
Update PC/winreg.c
aisk Apr 10, 2023
0572407
Update PC/winreg.c
aisk Apr 10, 2023
ae54a8e
nit fixes
aisk Apr 10, 2023
42bcb44
fix syntax error
aisk Apr 10, 2023
1998c06
passing state instead of module in c level module functions
aisk Apr 10, 2023
682c419
Update PC/winreg.c
aisk Apr 11, 2023
8b1aaa4
check result of gc new
aisk Apr 11, 2023
25a7f73
Merge remote-tracking branch 'upstream/main' into isolate-winreg
aisk Apr 11, 2023
3ecc718
Update PC/winreg.c
aisk Apr 12, 2023
e279c84
remove unused PyHKEY_NumberMethods
aisk Apr 12, 2023
d7f97fc
Update PC/winreg.c
erlend-aasland Apr 13, 2023
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Update PC/winreg.c
Co-authored-by: Erlend E. Aasland <[email protected]>
  • Loading branch information
aisk and erlend-aasland authored Apr 10, 2023

Verified

This commit was signed with the committer’s verified signature.
renovate-bot Mend Renovate
commit 488cae83c8f2b30cefdf35fc57777d1082b7a3e8
2 changes: 1 addition & 1 deletion PC/winreg.c
Original file line number Diff line number Diff line change
@@ -2202,7 +2202,7 @@ static PyModuleDef_Slot winreg_slots[] = {

static winreg_traverse(PyObject* module, visitproc visit, void* arg)
{
winreg_state *state = PyModule_GetState(module);
winreg_state *state = _PyModule_GetState(module);
Py_VISIT(state->PyHKEY_Type);
return 0;
}