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 b80911b commit b4f07d9Copy full SHA for b4f07d9
1 file changed
Python/emscripten_trampoline.c
@@ -16,7 +16,9 @@ _PyEM_TrampolineCall_inner, (int* success,
16
// Try to replace the JS definition of _PyEM_TrampolineCall_inner with a wasm
17
// version.
18
(function () {
19
- // iOS ships broken wasm-gc, so feature detect and turn it off
+ // Starting with iOS 18.3.1, WebKit on iOS has an issue with the garbage
20
+ // collector that breaks the call trampoline. See #130418 and
21
+ // https://bugs.webkit.org/show_bug.cgi?id=293113 for details.
22
let isIOS = globalThis.navigator && (
23
/iPad|iPhone|iPod/.test(navigator.userAgent) ||
24
// Starting with iPadOS 13, iPads might send a platform string that looks like a desktop Mac.
0 commit comments