Package org.python.modules
Class errno
- java.lang.Object
-
- org.python.modules.errno
-
- All Implemented Interfaces:
ClassDictInit
public class errno extends java.lang.Object implements ClassDictInit
The Python errno module. Errno constants can be accessed from Java code viaErrno
, e.g. Errno.ENOENT.
-
-
Constructor Summary
Constructors Constructor Description errno()
-
Method Summary
All Methods Static Methods Concrete Methods Deprecated Methods Modifier and Type Method Description static void
classDictInit(PyObject dict)
static PyObject
strerror(PyObject code)
Deprecated.Use jnr.constants.platform.Errno.valueOf(code).toString() (or os.strerror from Python) instead.
-