##// END OF EJS Templates
Bump codecov/codecov-action from 4 to 5 in the actions group...
Bump codecov/codecov-action from 4 to 5 in the actions group Bumps the actions group with 1 update: [codecov/codecov-action](https://github.com/codecov/codecov-action). Updates `codecov/codecov-action` from 4 to 5 - [Release notes](https://github.com/codecov/codecov-action/releases) - [Changelog](https://github.com/codecov/codecov-action/blob/main/CHANGELOG.md) - [Commits](https://github.com/codecov/codecov-action/compare/v4...v5) --- updated-dependencies: - dependency-name: codecov/codecov-action dependency-type: direct:production update-type: version-update:semver-major dependency-group: actions ... Signed-off-by: dependabot[bot] <support@github.com>

File last commit:

r28782:9b49aad9
r28969:e99dcdd7 dependabot/github...
Show More
_process_emscripten.py
22 lines | 503 B | text/x-python | PythonLexer
/ IPython / utils / _process_emscripten.py
Matthias Koeppe
IPython/utils/_process_emscripten.py: Add file header
r28613 """Emscripten-specific implementation of process utilities.
This file is only meant to be imported by process.py, not by end-users.
"""
Matthias Bussonnier
Reexport arg_split on emscripten....
r28677 from ._process_common import arg_split
Hood Chatham
IPython/utils/_process_emscripten.py: New
r28611 def system(cmd):
raise OSError("Not available")
Matthias Koeppe
IPython/utils/_process_emscripten.py: Codestyle fix
r28614
Hood Chatham
IPython/utils/_process_emscripten.py: New
r28611 def getoutput(cmd):
raise OSError("Not available")
Matthias Koeppe
IPython/utils/_process_emscripten.py: Codestyle fix
r28614
Hood Chatham
IPython/utils/_process_emscripten.py: New
r28611 def check_pid(cmd):
raise OSError("Not available")
Matthias Koeppe
IPython/utils/_process_emscripten.py: Codestyle fix
r28614
Matthias Bussonnier
Reexport arg_split on emscripten....
r28677 # `arg_split` is still used by magics regardless of whether we are on a posix/windows/emscipten
__all__ = ["system", "getoutput", "check_pid", "arg_split"]