Batuhan Taskaya <isidenti...@gmail.com> added the comment:

@rhettinger can you clarify how does this arguments act on argv? Should they be 
hidden like the first argument, or should they remain visible as a passing 
argument? 
 $ python -c 'import sys;print(sys.argv)'                       
['-c']

 $ python -c 'import sys;print(sys.argv)' 'print("another")' 'print("another1")'
['-c', 'print("another")', 'print("another1")']

----------
nosy: +BTaskaya

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

Reply via email to