-
Notifications
You must be signed in to change notification settings - Fork 60
Expand file tree
/
Copy pathFaultHandler.java
More file actions
45 lines (36 loc) · 1 KB
/
Copy pathFaultHandler.java
File metadata and controls
45 lines (36 loc) · 1 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
package org.python.modules;
import org.python.core.Py;
import org.python.core.PyObject;
import org.python.expose.ExposedFunction;
import org.python.expose.ExposedModule;
/**
* Created by isaiah on 7/15/16.
*/
@ExposedModule(name = "faulthandler")
public class FaultHandler {
@ExposedFunction
public static void dump_traceback(PyObject[] args, String[] keywords) {
}
@ExposedFunction
public static void enable(PyObject[] args, String[] keywords) {
}
@ExposedFunction
public static void disable() {
}
@ExposedFunction
public static PyObject is_enabled() {
return Py.False;
}
@ExposedFunction
public static void dump_traceback_later(PyObject[] args, String[] keywords) {
}
@ExposedFunction
public static void cancel_dump_traceback_later() {
}
@ExposedFunction
public static void register(PyObject[] args, String[] keywords) {
}
@ExposedFunction
public static void unregister(PyObject[] args, String[] keywords) {
}
}