[pypy-commit] pypy default: win32 also needs signal

bdkearns noreply at buildbot.pypy.org
Thu Apr 10 03:31:27 CEST 2014


Author: Brian Kearns <bdkearns at gmail.com>
Branch: 
Changeset: r70529:17a17f188b4a
Date: 2014-04-09 18:30 -0700
http://bitbucket.org/pypy/pypy/changeset/17a17f188b4a/

Log:	win32 also needs signal

diff --git a/pypy/module/posix/test/test_posix2.py b/pypy/module/posix/test/test_posix2.py
--- a/pypy/module/posix/test/test_posix2.py
+++ b/pypy/module/posix/test/test_posix2.py
@@ -19,7 +19,7 @@
         usemodules += ['fcntl']
     else:
         # On windows, os.popen uses the subprocess module
-        usemodules += ['_rawffi', 'thread']
+        usemodules += ['_rawffi', 'thread', 'signal']
     mod.space = gettestobjspace(usemodules=usemodules)
     mod.path = udir.join('posixtestfile.txt')
     mod.path.write("this is a test")


More information about the pypy-commit mailing list