[pypy-commit] pypy py3.3: _posixsubprocess is not optional anymore.

amauryfa noreply at buildbot.pypy.org
Sat Jul 26 13:25:47 CEST 2014


Author: Amaury Forgeot d'Arc <amauryfa at gmail.com>
Branch: py3.3
Changeset: r72496:2e4e787ecfa6
Date: 2014-07-26 13:22 +0200
http://bitbucket.org/pypy/pypy/changeset/2e4e787ecfa6/

Log:	_posixsubprocess is not optional anymore.

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
@@ -17,7 +17,7 @@
     usemodules = ['binascii', 'posix', 'signal', 'struct', 'rctime']
     # py3k os.open uses subprocess, requiring the following per platform
     if os.name != 'nt':
-        usemodules += ['fcntl', 'select']
+        usemodules += ['fcntl', 'select', '_posixsubprocess']
     else:
         usemodules += ['_rawffi', 'thread']
     mod.space = gettestobjspace(usemodules=usemodules)


More information about the pypy-commit mailing list