Михаил Кривушин added the comment:

Hello, I have find some workaround to get actual argv, but it broken:

python -c 'import ctypes; argv = ctypes.POINTER(ctypes.c_char_p)(); argc = 
ctypes.c_int(); ctypes.pythonapi.Py_GetArgcArgv(ctypes.byref(argc), 
ctypes.byref(argv)); print([argv[i] for i in xrange(0, argc.value)])'

And this will output:
['python', '-c', '-c']

May be we just need to fix this behaviour, due this is error, as far as i can 
see. But may broke something.

----------
nosy: +Михаил.Кривушин

_______________________________________
Python tracker <rep...@bugs.python.org>
<http://bugs.python.org/issue23427>
_______________________________________
_______________________________________________
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com

Reply via email to