Commit f7492569 authored by Denis Bilenko's avatar Denis Bilenko

subprocess: on 2.6 move check_output from __implements__ to __extra__

this prevents test__all__.py from failing and prevents monkey from patching it
parent 79fc470b
......@@ -66,6 +66,10 @@ for name in __imports__[:]:
__imports__.remove(name)
__extra__.append(name)
if sys.version_info[:2] <= (2, 6):
__implements__.remove('check_output')
__extra__.append('check_output')
_subprocess = getattr(__subprocess__, '_subprocess', None)
_NONE = object()
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment