diff options
author | 依云 <lilydjwg@gmail.com> | 2019-05-29 06:50:59 (GMT) |
---|---|---|
committer | Miss Islington (bot) <31488909+miss-islington@users.noreply.github.com> | 2019-05-29 06:50:59 (GMT) |
commit | 744c08a9c75a1a53b7a6521fcee3e7c513919ff9 (patch) | |
tree | 432a13057b4f1031536f30a06ca6618f85d102b4 /Lib/asyncio/base_events.py | |
parent | e1f95e77e0647aff602e0660ba3c282b71045875 (diff) | |
download | cpython-744c08a9c75a1a53b7a6521fcee3e7c513919ff9.zip cpython-744c08a9c75a1a53b7a6521fcee3e7c513919ff9.tar.gz cpython-744c08a9c75a1a53b7a6521fcee3e7c513919ff9.tar.bz2 |
bpo-35246: fix support for path-like args in asyncio subprocess (GH-13628)
Drop isinstance checks from create_subprocess_exec function and let
subprocess module do them.
https://bugs.python.org/issue35246
https://bugs.python.org/issue35246
Diffstat (limited to 'Lib/asyncio/base_events.py')
-rw-r--r-- | Lib/asyncio/base_events.py | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/Lib/asyncio/base_events.py b/Lib/asyncio/base_events.py index 68105ee..e002539 100644 --- a/Lib/asyncio/base_events.py +++ b/Lib/asyncio/base_events.py @@ -1605,11 +1605,6 @@ class BaseEventLoop(events.AbstractEventLoop): raise ValueError("errors must be None") popen_args = (program,) + args - for arg in popen_args: - if not isinstance(arg, (str, bytes)): - raise TypeError( - f"program arguments must be a bytes or text string, " - f"not {type(arg).__name__}") protocol = protocol_factory() debug_log = None if self._debug: |