Issue1514
Created on 2009-12-03.21:55:08 by jaraco, last changed 2009-12-03.22:10:47 by pjenvey.
| msg5342 (view) |
Author: Jason R. Coombs (jaraco) |
Date: 2009-12-03.21:55:08 |
|
Jython seems to be losing some command-line arguments, such as the
question mark. I'm using Windows 7. The problem occurs under Windows
Powershell as well as CMD.exe.
PS C:\> jython -V
Jython 2.5.1
PS C:\> jython -c "import sys; print sys.argv" "0 15 10 ? * 6#3,4#3"
['-c', '0 15 10 ']
It works as expected on CPython 2.6.4
PS C:\> python -c "import sys; print sys.argv" "0 15 10 ? * 6#3,4#3"
['-c', '0 15 10 ? * 6#3,4#3']
|
| msg5343 (view) |
Author: Philip Jenvey (pjenvey) |
Date: 2009-12-03.22:10:47 |
|
This is most likely the same problem as #1356, in that Windows .bat files
(and our .bat based argv handling) have argv parsing quirks compared to
native executables. Fixing #1491 is the ideal solution
|
|
| Date |
User |
Action |
Args |
| 2009-12-03 22:10:47 | pjenvey | set | nosy:
+ pjenvey, otmarhumbel messages:
+ msg5343 title: Arguments missing from command-line -> [Windows] Arguments missing from command-line |
| 2009-12-03 21:55:08 | jaraco | create | |
|