module documentation
(source)

Win32 utilities.

See also twisted.python.shortcut.

Class ​Fake​Windows​Error Stand-in for sometimes-builtin exception on platforms for which it is missing.
Function cmd​Line​Quote Internal method for quoting a single command-line argument.
Function quote​Arguments Quote an iterable of command-line arguments for passing to CreateProcess or a similar API. This allows the list passed to reactor.spawnProcess to match the child process's sys.argv properly.
Constant ERROR​_DIRECTORY Undocumented
Constant ERROR​_FILE​_NOT​_FOUND Undocumented
Constant ERROR​_INVALID​_NAME Undocumented
Constant ERROR​_PATH​_NOT​_FOUND Undocumented
Constant O​_BINARY the 'binary' mode flag on Windows, or 0 on other platforms, so it may safely be OR'ed into a mask for os.open.
Variable format​Error Undocumented
Class _​Error​Formatter Formatter for Windows error messages.
Variable _cmd​Line​Quote​Re Undocumented
Variable _cmd​Line​Quote​Re2 Undocumented
def cmdLineQuote(s): (source)
Internal method for quoting a single command-line argument.
Parameters
s:stran unquoted string that you want to quote so that something that does cmd.exe-style unquoting will interpret it as a single argument, even if it contains spaces.
Returns
stra quoted string.
def quoteArguments(arguments): (source)
Quote an iterable of command-line arguments for passing to CreateProcess or a similar API. This allows the list passed to reactor.spawnProcess to match the child process's sys.argv properly.
Parameters
argumentsan iterable of str, each unquoted.
Returns
a single string, with the given sequence quoted as necessary.
ERROR_DIRECTORY: int = (source)

Undocumented

Value
267
ERROR_FILE_NOT_FOUND: int = (source)

Undocumented

Value
2
ERROR_INVALID_NAME: int = (source)

Undocumented

Value
123
ERROR_PATH_NOT_FOUND: int = (source)

Undocumented

Value
3
O_BINARY = (source)
the 'binary' mode flag on Windows, or 0 on other platforms, so it may safely be OR'ed into a mask for os.open.
Value
getattr(os, 'O_BINARY', 0)
formatError = (source)

Undocumented

_cmdLineQuoteRe = (source)

Undocumented

_cmdLineQuoteRe2 = (source)

Undocumented