org.python.core.io
Class FileDescriptors
java.lang.Object
org.python.core.io.FileDescriptors
public class FileDescriptors
- extends Object
Jython file descriptor management.
File descriptor objects in Jython are instances of RawIOBase.
- Author:
- Philip Jenvey
Method Summary |
static RawIOBase |
get(PyObject fd)
Return the RawIOBase associated with the specified file descriptor. |
FileDescriptors
public FileDescriptors()
get
public static RawIOBase get(PyObject fd)
- Return the RawIOBase associated with the specified file descriptor.
Raises a Python exception is the file descriptor is invalid
- Parameters:
fd
- a Jython file descriptor object
- Returns:
- the RawIOBase associated with the file descriptor
Jython homepage