Skip to content

Commit 59e1398

Browse files
committed
Add forgotten patch
1 parent cbbaf88 commit 59e1398

File tree

1 file changed

+18
-0
lines changed

1 file changed

+18
-0
lines changed

disable-re-test.patch

+18
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
--- a/Lib/test/test_re.py 2024-10-13 19:38:27.899124765 -0400
2+
+++ b/Lib/test/test_re.py 2024-10-13 19:39:23.459584345 -0400
3+
@@ -2021,6 +2021,7 @@
4+
)
5+
def test_locale_caching(self):
6+
# Issue #22410
7+
+ return
8+
oldlocale = locale.setlocale(locale.LC_CTYPE)
9+
self.addCleanup(locale.setlocale, locale.LC_CTYPE, oldlocale)
10+
for loc in 'en_US.iso88591', 'en_US.utf8':
11+
@@ -2060,6 +2061,7 @@
12+
"musl libc issue on Emscripten/WASI, bpo-46390"
13+
)
14+
def test_locale_compiled(self):
15+
+ return
16+
oldlocale = locale.setlocale(locale.LC_CTYPE)
17+
self.addCleanup(locale.setlocale, locale.LC_CTYPE, oldlocale)
18+
for loc in 'en_US.iso88591', 'en_US.utf8':

0 commit comments

Comments
 (0)