Victor Stinner
Victor Stinner
Can you try PyOS_BeforeFork() and tell me how it goes?
@xrmx: Since there is now a pending uwsgi PR, is it still useful to have a Python issue? Or can we close this issue?
Latest attempt to include repr(obj) in list error message went bad: * https://github.com/python/cpython/issues/116792 * https://github.com/python/cpython/pull/116956 * https://github.com/python/cpython/issues/96844
I didn't see that a PR was merged.
The UI issue can also be reproduced at https://buildbot.buildbot.net/#/builders
This bug is causing a major performance issue on https://buildbot.python.org/. Can someone have a look at this buildbot 4.0 regression?
@AA-Turner @picnixz @hugovk: Do you think that this change is ready to be merged? cc @erlend-aasland @corona10 who modify configure tools sometimes.
Test without mpdecimal installed: ``` $ ./configure --with-pydebug (...) checking for --with-libmpdec... checking for --with-system-libmpdec... yes checking for libmpdec >= 2.5.0... no (...) ``` The fallback to the Python implementation...
I think that I now prefer PR gh-135568: don't add `--with-libmpdec` option. I don't think that `./configure` should fail if mpdecimal library is missing, but a warning should be written...
I am no longer sure if I like this change or not. My main worry is that some users may build Python without `_decimal` and would **silently** get a 100x...