Skip to content
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

gh-103092: Isolate _decimal #103381

Closed
wants to merge 30 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
30 commits
Select commit Hold shift + click to select a range
60902dd
Establish global state
erlend-aasland Mar 12, 2023
fa06750
Adapt PyDecContextManager_Type to heap type and add it to state
erlend-aasland Mar 12, 2023
f19c14c
fixup! Adapt PyDecContextManager_Type to heap type and add it to state
erlend-aasland Mar 12, 2023
cde5da9
Adapt PyDecContext_Type to heap type and add it to state
erlend-aasland Mar 12, 2023
90955ab
Adapt PyDecSignalDictMixin_Type to heap type and add it to state
erlend-aasland Mar 12, 2023
ae2ac48
fixup! Adapt PyDecSignalDictMixin_Type to heap type and add it to state
erlend-aasland Mar 12, 2023
eee3ef7
Adapt and add PyDec_Type & PyDecSignalDict_Type
erlend-aasland Mar 14, 2023
f9c3573
Add DecimalTuple to state
erlend-aasland Mar 14, 2023
57316db
fixup! Add DecimalTuple to state
erlend-aasland Mar 14, 2023
30e4128
Add DecimalException to state
erlend-aasland Mar 14, 2023
f92e385
fixup! Add DecimalException to state
erlend-aasland Mar 14, 2023
8b6c0c7
Add `basic_context_template` to state
CharlieZhao95 Mar 30, 2023
2ea6d98
Add `extended_context_template` to state
CharlieZhao95 Mar 30, 2023
7bf48be
Add `default_context_template` to state
CharlieZhao95 Mar 30, 2023
cd41d2c
Add context var to state
CharlieZhao95 Mar 31, 2023
44b0843
fixup! Add default_context_template to state
CharlieZhao95 Mar 31, 2023
db7b988
Add round_map to state
CharlieZhao95 Mar 31, 2023
86170a2
Add `Rational` and `SignalTuple` to state
CharlieZhao95 Mar 31, 2023
bc8df8f
Add external C-API functions to state
CharlieZhao95 Apr 3, 2023
4ff1074
port _decimal module to multi-initialization
CharlieZhao95 Apr 3, 2023
8fba9e8
Move global state to module state
CharlieZhao95 Apr 3, 2023
be7fa2a
Add `signal_map` to state to fix error in `decimal.Context`.
CharlieZhao95 Apr 8, 2023
b130f56
solve warnings and remove redundant code
CharlieZhao95 Apr 11, 2023
39fe618
Merge branch 'main' into isolate-decimal
erlend-aasland Apr 14, 2023
a81da37
remove NDEBUG and static-local variables
CharlieZhao95 Apr 20, 2023
6638ca7
Add a NEWS entry.
CharlieZhao95 Apr 21, 2023
7b05a94
Merge remote-tracking branch 'upstream/main' into isolate-decimal
CharlieZhao95 May 25, 2023
68473a0
Add Py_MOD_PER_INTERPRETER_GIL_SUPPORTED
CharlieZhao95 May 25, 2023
e00dc55
Merge branch 'main' into isolate-decimal
kumaraditya303 May 28, 2023
58f0049
Update Modules/_decimal/_decimal.c
CharlieZhao95 May 28, 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
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
Adapt :mod:`decimal` to :pep:`687`. Patch by Erlend Aasland and Charlie
Zhao.
Loading