Author: Matti Picus <[email protected]>
Branch: py3.6
Changeset: r96717:3183fe48a614
Date: 2019-05-30 07:44 +0300
http://bitbucket.org/pypy/pypy/changeset/3183fe48a614/

Log:    merge default into branch

diff --git a/pypy/config/pypyoption.py b/pypy/config/pypyoption.py
--- a/pypy/config/pypyoption.py
+++ b/pypy/config/pypyoption.py
@@ -69,7 +69,8 @@
     # unix only modules
     for name in ["crypt", "fcntl", "pwd", "termios", "_minimal_curses",
                  "_posixsubprocess"]:
-        working_modules.remove(name)
+        if name in working_modules:
+            working_modules.remove(name)
         if name in translation_modules:
             translation_modules.remove(name)
 
_______________________________________________
pypy-commit mailing list
[email protected]
https://mail.python.org/mailman/listinfo/pypy-commit

Reply via email to