org.python.modules
Class errno
java.lang.Object
org.python.modules.errno
- All Implemented Interfaces:
- ClassDictInit
public class errno
- extends Object
- implements ClassDictInit
The Python errno module.
Errno constants can be accessed from Java code via
Errno
, e.g. Errno.ENOENT.
Constructor Summary |
errno()
|
__doc__
public static final PyString __doc__
errorcode
public static final PyObject errorcode
- Reverse mapping of codes to names.
errno
public errno()
classDictInit
public static void classDictInit(PyObject dict)
strerror
@Deprecated
public static PyObject strerror(PyObject code)
- Deprecated. Use org.python.core.constantine.Errno.valueOf(code).toString() (or
os.strerror from Python) instead.
Jython homepage