Author: Armin Rigo <[email protected]>
Branch: nogil-unsafe-2
Changeset: r92156:55fb6aff1863
Date: 2017-08-15 20:36 +0200
http://bitbucket.org/pypy/pypy/changeset/55fb6aff1863/
Log: With nogil, it doesn't make sense to not have threads (and it fails
translation right now, FIXME)
diff --git a/pypy/config/pypyoption.py b/pypy/config/pypyoption.py
--- a/pypy/config/pypyoption.py
+++ b/pypy/config/pypyoption.py
@@ -23,7 +23,9 @@
default_modules.update([
"_codecs", "gc", "_weakref", "marshal", "errno", "imp", "math", "cmath",
"_sre", "_pickle_support", "operator", "parser", "symbol", "token", "_ast",
- "_io", "_random", "__pypy__", "_testing", "time"
+ "_io", "_random", "__pypy__", "_testing", "time",
+ "thread" # XXX with nogil, it doesn't make sense to not have threads
+ # (and it fails translation right now, FIXME)
])
_______________________________________________
pypy-commit mailing list
[email protected]
https://mail.python.org/mailman/listinfo/pypy-commit