diff options
author | Stefan Krah <skrah@bytereef.org> | 2020-02-29 18:43:42 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-02-29 18:43:42 (GMT) |
commit | 815280eb160af637e1347213659f9236adf78f80 (patch) | |
tree | ecb6e85f7e8cec204316d3bfb82289a3724a173d /PC/pyconfig.h | |
parent | 0aeab5c4381f0cc11479362af2533b3a391312ac (diff) | |
download | cpython-815280eb160af637e1347213659f9236adf78f80.zip cpython-815280eb160af637e1347213659f9236adf78f80.tar.gz cpython-815280eb160af637e1347213659f9236adf78f80.tar.bz2 |
bpo-39794: Add --without-decimal-contextvar (#18702)
Diffstat (limited to 'PC/pyconfig.h')
-rw-r--r-- | PC/pyconfig.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/PC/pyconfig.h b/PC/pyconfig.h index 424c5be..0aa4f95 100644 --- a/PC/pyconfig.h +++ b/PC/pyconfig.h @@ -465,6 +465,10 @@ Py_NO_ENABLE_SHARED to find out. Also support MS_NO_COREDLL for b/w compat */ (which you can't on SCO ODT 3.0). */ /* #undef SYS_SELECT_WITH_SYS_TIME */ +/* Define if you want build the _decimal module using a coroutine-local rather + than a thread-local context */ +#define WITH_DECIMAL_CONTEXTVAR 1 + /* Define if you want documentation strings in extension modules */ #define WITH_DOC_STRINGS 1 |