get rid of this noise

This commit is contained in:
Jean-Paul Calderone 2021-01-11 11:16:49 -05:00
parent 23d1d76242
commit f4a1a6fd97

View File

@ -28,10 +28,7 @@ def get_argv():
use_last_error=True
)(("CommandLineToArgvW", windll.shell32))
import sys
command_line = GetCommandLineW()
print("GetCommandLineW() -> {!r}".format(command_line), file=sys.stderr)
argc = c_int(0)
argv_unicode = CommandLineToArgvW(command_line, byref(argc))
if argv_unicode is None: