Issue1356
Created on 2009-05-26.01:21:48 by pjenvey, last changed 2010-06-01.23:33:05 by otmarhumbel.
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
|
msg5624 (view) |
Author: Philip Jenvey (pjenvey) |
Date: 2010-04-04.18:05:43 |
|
#1567 probably a dupe of this, and it has a potential solution
|
msg5790 (view) |
Author: Oti Humbel (otmarhumbel) |
Date: 2010-06-01.23:33:03 |
|
fixed with revision 7060 - next step really is a native launcher
many thanks to Pekka Klaerck and Andreas Ebbert-Karroum for their analysis and suggestions!
|
|
Date |
User |
Action |
Args |
2010-06-01 23:33:05 | otmarhumbel | set | status: open -> closed resolution: fixed messages:
+ msg5790 |
2010-04-04 18:05:43 | pjenvey | set | messages:
+ msg5624 |
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 | |
|