Issue1356
Created on 2009-05-26.01:21:48 by pjenvey, last changed 2009-10-21.20:07:12 by pjenvey.
| msg4718 (view) |
Author: Philip Jenvey (pjenvey) |
Date: 2009-05-26.01:21:47 |
|
This fails on Windows because the test passes a large command line to a
child process that seems to get cut off short. subprocess seems to be
passing along the right args so I suspect the .bat file might be
responsible, but I'm not sure of that yet
Shouldn't block 2.5 release
|
| msg4774 (view) |
Author: Philip Jenvey (pjenvey) |
Date: 2009-05-31.21:38:39 |
|
This is definitely the .bat file's fault, it's due to of all things an
asterisk. To reproduce it on the plain command line:
>dist\bin\jython -c "import sys;sys.stdout.write(\"xyz\"*1);"
File "<string>", line 1
import
^
SyntaxError: mismatched input '\n\n' expecting NAME
>python -c "import sys;sys.stdout.write(\"xyz\"*1);"
xyz
|
| msg5253 (view) |
Author: Philip Jenvey (pjenvey) |
Date: 2009-10-21.20:07:11 |
|
The ideal solution to this is #1491
|
|
| Date |
User |
Action |
Args |
| 2009-10-21 20:07:12 | pjenvey | set | messages:
+ msg5253 |
| 2009-05-31 21:38:39 | pjenvey | set | assignee: otmarhumbel messages:
+ msg4774 nosy:
+ otmarhumbel |
| 2009-05-26 13:08:13 | fwierzbicki | set | nosy:
+ fwierzbicki |
| 2009-05-26 01:21:48 | pjenvey | create | |
|