You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The shlex library offers, as per the Python documentation, lexical analyzers for simple syntaxes resembling that of the Unix shell. Windows shell does not resemble Unix shell. For example, shlex.split() removes path separators (\) from Windows paths which makes invoking the editor command fail.
Other ways should be found to deal with shell commands on Windows.
The text was updated successfully, but these errors were encountered:
The
shlex
library offers, as per the Python documentation, lexical analyzers for simple syntaxes resembling that of the Unix shell. Windows shell does not resemble Unix shell. For example,shlex.split()
removes path separators (\
) from Windows paths which makes invoking the editor command fail.Other ways should be found to deal with shell commands on Windows.
The text was updated successfully, but these errors were encountered: