mirror of
https://github.com/xonsh/xonsh.git
synced 2025-03-04 16:34:47 +01:00
10 lines
No EOL
263 B
Python
10 lines
No EOL
263 B
Python
"""Hooks for the distributed parallel computing library."""
|
|
|
|
def _dworker(args, stdin=None):
|
|
"""Programatic access to the dworker utility, to allow launching
|
|
workers that also have access to xonsh builtins.
|
|
"""
|
|
pass
|
|
|
|
|
|
aliases['dworker'] = _dworker |