[pypy-commit] pypy py3.6: merge default into branch

mattip pypy.commits at gmail.com
Thu May 30 00:44:55 EDT 2019


Author: Matti Picus <matti.picus at gmail.com>
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)
 


More information about the pypy-commit mailing list