Skip to content

Commit b0cc07a

Browse files
committed
3.1.61.14
1 parent 0fa6573 commit b0cc07a

File tree

1 file changed

+14
-0
lines changed

1 file changed

+14
-0
lines changed
Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
--- Python-3.14.3/Python/fileutils.c
2+
+++ Python-3.14.3-bi/Python/fileutils.c
3+
@@ -1568,7 +1568,11 @@
4+
if (res < 0) {
5+
if (raise)
6+
PyErr_SetFromErrno(PyExc_OSError);
7+
+#if defined(__EMSCRIPTEN__)
8+
+ puts("# 1572:"__FILE__);
9+
+#else
10+
return -1;
11+
+#endif
12+
}
13+
return 0;
14+
#endif

0 commit comments

Comments
 (0)