| Commit message (Collapse) | Author | Age | Files | Lines |
| |
|
|
|
|
|
|
|
|
|
|
|
|
| |
Since [1] we monkey patch subprocess module and it uncovered one issue -
the previous patched_function implementation would produce functions
with all optional arguments lacking their default values which made them
required. This is an issue on Python 3 where there's at least one
optional explicit argument in at least one of the functions
(check_call), on Python 2 the function signature has *args and **kwargs
so it wasn't an issue.
This patch is contributed by Smarkets Limited.
[1] 614a20462aebfe85a54ce35a7daaf1a7dbde44a7
|
| |
|
|
|
|
| |
.communicate()
https://github.com/eventlet/eventlet/issues/290
|
| |
|
|
| |
https://github.com/eventlet/eventlet/issues/243
|
| |
|
|
| |
Fast-and-dirty attempt to fix issue #204
|
| | |
|
| |
|
|
|
|
|
| |
* pip install misspellings
* git ls-files | grep -v locale | misspellings -f -
Closes GH #194
|
| |
|
|
|
|
|
|
|
|
| |
order in the class constructor so it uses the same order as the actual class
from Python 3.3 and above.
TimeoutExpired from Python 3.3 takes arguments in the following order:
cmd, timeout, output.
See https://github.com/python/cpython/blob/master/Lib/subprocess.py#L388
|
| | |
|
| |
|
|
|
| |
https://github.com/eventlet/eventlet/pull/24
+ PEP8 fix tabs
|
|
|
As in Python 3.3 http://docs.python.org/3.3/library/subprocess.html#subprocess.Popen.wait
https://bitbucket.org/eventlet/eventlet/issue/89/add-a-timeout-argument-to-subprocesspopen
https://bitbucket.org/eventlet/eventlet/pull-request/30
|