https://github.com/python/cpython/commit/d62b73a9d8c0de0e103593873c4a6050e16ae3b2
commit: d62b73a9d8c0de0e103593873c4a6050e16ae3b2
branch: 3.14
author: Miss Islington (bot) <[email protected]>
committer: freakboy3742 <[email protected]>
date: 2025-06-16T23:41:46Z
summary:

[3.14] gh-128627: Emscripten: Add missing semicolon in ios detection code 
(GH-135590) (#135592)

(cherry picked from commit 68b7e1a6677d7a8fb47fbd28cb5d39a87217273c)

Co-authored-by: Hood Chatham <[email protected]>

files:
M Python/emscripten_trampoline.c

diff --git a/Python/emscripten_trampoline.c b/Python/emscripten_trampoline.c
index 975c28eec104c6..75b98a047234d8 100644
--- a/Python/emscripten_trampoline.c
+++ b/Python/emscripten_trampoline.c
@@ -80,7 +80,7 @@ function getPyEMCountArgsPtr() {
         // To differentiate, we check if the platform is 'MacIntel' (common 
for Macs and newer iPads)
         // AND if the device has multi-touch capabilities 
(navigator.maxTouchPoints > 1)
         (navigator.platform === 'MacIntel' && typeof navigator.maxTouchPoints 
!== 'undefined' && navigator.maxTouchPoints > 1)
-    )
+    );
     if (isIOS) {
         return 0;
     }

_______________________________________________
Python-checkins mailing list -- [email protected]
To unsubscribe send an email to [email protected]
https://mail.python.org/mailman3//lists/python-checkins.python.org
Member address: [email protected]

Reply via email to