Skip to content

Commit b4f07d9

Browse files
committed
Reduce diff
1 parent b80911b commit b4f07d9

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

Python/emscripten_trampoline.c

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,9 @@ _PyEM_TrampolineCall_inner, (int* success,
1616
// Try to replace the JS definition of _PyEM_TrampolineCall_inner with a wasm
1717
// version.
1818
(function () {
19-
// iOS ships broken wasm-gc, so feature detect and turn it off
19+
// 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.
2022
let isIOS = globalThis.navigator && (
2123
/iPad|iPhone|iPod/.test(navigator.userAgent) ||
2224
// Starting with iPadOS 13, iPads might send a platform string that looks like a desktop Mac.

0 commit comments

Comments
 (0)