This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author pitrou
Recipients flox, pitrou, vstinner
Date 2010-08-10.23:42:35
SpamBayes Score 0.002524827
Marked as misclassified No
Message-id <1281483757.59.0.765668850921.issue9433@psf.upfronthosting.co.za>
In-reply-to
Content
Possible patch (checked to work in a Windows 7 VM):

Index: Lib/test/regrtest.py
===================================================================
--- Lib/test/regrtest.py	(révision 83938)
+++ Lib/test/regrtest.py	(copie de travail)
@@ -547,7 +547,8 @@
                     popen = Popen([sys.executable, '-E', '-m', 'test.regrtest',
                                    '--slaveargs', json.dumps(args_tuple)],
                                    stdout=PIPE, stderr=PIPE,
-                                   universal_newlines=True, close_fds=True)
+                                   universal_newlines=True,
+                                   close_fds=(os.name != 'nt'))
                     stdout, stderr = popen.communicate()
                     # Strip last refcount output line if it exists, since it
                     # comes from the shutdown of the interpreter in the subcommand.
History
Date User Action Args
2010-08-10 23:42:37pitrousetrecipients: + pitrou, vstinner, flox
2010-08-10 23:42:37pitrousetmessageid: <1281483757.59.0.765668850921.issue9433@psf.upfronthosting.co.za>
2010-08-10 23:42:36pitroulinkissue9433 messages
2010-08-10 23:42:35pitroucreate