Issue1100
Created on 2008-08-06.08:54:03 by ok4rm, last changed 2008-09-13.22:02:01 by brosner.
| File name |
Uploaded |
Description |
Edit |
Remove |
|
Convert.py
|
ok4rm,
2008-08-06.08:54:03
|
A piece of program to demonstrate the bug |
|
|
| msg3407 (view) |
Author: Jindra Vavruska (ok4rm) |
Date: 2008-08-06.08:54:03 |
|
When trying to call spawnv, it returns this error at line 12 (see
enclosed file):
AttributeError: class 'org.python.modules.os' has no attribute 'P_WAIT'
sys.version returns '2.2.1'
|
| msg3408 (view) |
Author: Jindra Vavruska (ok4rm) |
Date: 2008-08-07.17:14:19 |
|
Hello,
only after another test, in which I replaced P_WAIT by an integer
constant (e.g. 0) I realized how stupid I was because jython has no
spawnXY functions.
I guess you will want to discard this issue.
Rgds, Jindra
|
| msg3540 (view) |
Author: Brian Rosner (brosner) |
Date: 2008-09-13.22:02:01 |
|
Here is a list of objects that exists in CPython on Windows, but not in
Jython on Windows.
['O_BINARY', 'O_NOINHERIT', 'O_RANDOM', 'O_SEQUENTIAL', 'O_SHORT_LIVED',
'O_TEMPORARY', 'O_TEXT', 'P_DETACH', 'P_NOWAIT', 'P_NOWAITO',
'P_OVERLAY', 'P_WAIT', 'TMP_MAX', '__builtins__', '_copy_reg',
'_execvpe', '_exists', '_get_exports_list', '_make_stat_result',
'_make_statvfs_result', '_pickle_stat_result', '_pickle_statvfs_result',
'abort', 'dup', 'dup2', 'execl', 'execle', 'execlp', 'execlpe', 'execv',
'execve', 'execvp', 'execvpe', 'fstat', 'fsync', 'getcwdu', 'pipe',
'spawnl', 'spawnle', 'spawnv', 'spawnve', 'startfile',
'stat_float_times', 'statvfs_result', 'tempnam', 'times', 'tmpfile',
'tmpnam', 'umask', 'waitpid']
|
|
| Date |
User |
Action |
Args |
| 2008-09-13 22:02:01 | brosner | set | nosy:
+ brosner messages:
+ msg3540 |
| 2008-08-07 17:14:20 | ok4rm | set | messages:
+ msg3408 |
| 2008-08-06 08:54:03 | ok4rm | create | |
|