31 Aug
2010
31 Aug
'10
6:03 a.m.
So it means that, for example, a FileIO object couldn't be shared between runtimes either? How about a socket object? Do you want to forbid FileIO and socket objects as part of the API?
Python objects don't have this concern: all methods of FileIO are implemented in a single file (fileio.c), linked to a single C runtime.
Ah, right. But you still can call the fileno() method. Regards Antoine.