Skip to content

Commit f5bc181

Browse files
authored
MAINT Add jsproxy_typedict to _core_module (pyodide#2473)
1 parent 1aad443 commit f5bc181

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

src/core/jsproxy.c

+2
Original file line numberDiff line numberDiff line change
@@ -2145,6 +2145,8 @@ JsProxy_init(PyObject* core_module)
21452145
JsProxy_TypeDict = PyDict_New();
21462146
FAIL_IF_NULL(JsProxy_TypeDict);
21472147

2148+
PyModule_AddObject(core_module, "jsproxy_typedict", JsProxy_TypeDict);
2149+
21482150
PyExc_BaseException_Type = (PyTypeObject*)PyExc_BaseException;
21492151
_Exc_JsException.tp_base = (PyTypeObject*)PyExc_Exception;
21502152

0 commit comments

Comments
 (0)