r47252 - blah
hawkowl-TA+aISz0psMTMxyoc4vAAJOcrHinNvQL0E9HWUfgJXw@public.gmane.org Fri, 15 Apr 2016 09:25:50 -0600 (MDT)
| Newsgroups | gmane.comp.python.twisted.commits |
|---|---|
| Message-ID | <[email protected]> |
Author: hawkowl
Date: Fri Apr 15 09:25:36 2016
New Revision: 47252
Modified:
branches/moar-windows-8025-7/twisted/test/test_process.py
Log:
blah
Modified: branches/moar-windows-8025-7/twisted/test/test_process.py
==============================================================================
--- branches/moar-windows-8025-7/twisted/test/test_process.py (original)
+++ branches/moar-windows-8025-7/twisted/test/test_process.py Fri Apr 15 09:25:36 2016
@@ -41,7 +41,7 @@
from twisted.internet import reactor, protocol, error, interfaces, defer
from twisted.trial import unittest
from twisted.python import runtime, procutils
-from twisted.python.compat import _PY3, networkString, xrange, _maybeMBCS
+from twisted.python.compat import _PY3, networkString, xrange
from twisted.python.filepath import FilePath, _asFilesystemBytes
@@ -2391,7 +2391,7 @@
d = defer.Deferred()
processProto = TrivialProcessProtocol(d)
- comspec = _maybeMBCS(os.environ.get("COMSPEC", "cmd.exe"))
+ comspec = u"cmd.exe"
cmd = [comspec, u"/c", pyExe, scriptPath]
p = _dumbwin32proc.Process(