We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a0fd949 commit 5fe139cCopy full SHA for 5fe139c
Python/sysmodule.c
@@ -3605,12 +3605,12 @@ make_impl_info(PyObject *version_info)
3605
// PEP-734
3606
#if defined(__wasi__) || defined(__EMSCRIPTEN__)
3607
// It is not enabled on WASM builds just yet
3608
- value = Py_NewRef(Py_False);
+ value = Py_False;
3609
#elif defined(__APPLE__) && defined(TARGET_OS_IPHONE) && TARGET_OS_IPHONE
3610
// It is not enabled on iOS just yet
3611
3612
#else
3613
- value = Py_NewRef(Py_True);
+ value = Py_True;
3614
#endif
3615
res = PyDict_SetItemString(impl_info, "supports_isolated_interpreters", value);
3616
if (res < 0) {
0 commit comments