bpo-1635741: In pickle module, inject module state from class methods#23304
bpo-1635741: In pickle module, inject module state from class methods#23304koubaa wants to merge 2 commits into
Conversation
|
Most modules are using |
Sorry, something went wrong.
@tiran I did that in my initial draft here. The reason I didn't do it here is because there are local variables named state in some functions (see for example line 3949 in save_reduce. Do you have a suggestion on what to change those names to? I don't understand exactly what those variables represent |
Sorry, something went wrong.
|
This PR is stale because it has been open for 30 days with no activity. |
Sorry, something went wrong.
shihai1991
left a comment
There was a problem hiding this comment.
The reason I didn't do it here is because there are local variables named state in some functions (see for example line 3949 in save_reduce.
the state would be more exact. If there have other arguments have own this name, keep st unchanged is not a big probleam.
Sorry, something went wrong.
when switching to heap types, the clinic can be used to get the module state therte
d7cad26 to
eea5c35
Compare
March 7, 2021 17:21
shihai1991
left a comment
There was a problem hiding this comment.
This PR is huge :) . About adding parenthesis, I will update it when those code have relation with the bpo.
Sorry, something went wrong.
|
https://bugs.python.org/issue1635741 is closed. What is the status of this PR? |
Sorry, something went wrong.
|
The change is still relevant, but should use a new issue number. Moreover, the SC asked to put the conversion of static types to heap types on hold. @encukou and @erlend-aasland wrote https://peps.python.org/pep-0687/ which may unblock the situation but it's still a draft. |
Sorry, something went wrong.
FYI, PEP 687 was accepted. |
Sorry, something went wrong.
|
Pickle module state was isolated in #102982. |
Sorry, something went wrong.
It did; PR #102982 was based off of Mohamed's work in #23188 (IIRC, I cherry-picked the commits from |
Sorry, something went wrong.
This PR prepares for changing to heap types.
When switching to heap types, the clinic can be used to get the module state.
https://bugs.python.org/issue1635741