summarylogtreecommitdiffstats
path: root/0103-tests-fix-test_bytes.patch
diff options
context:
space:
mode:
authoratomlong2021-10-23 17:55:22 +0800
committeratomlong2021-10-23 18:06:15 +0800
commit80096c8de4b34ec1ed8f30bb428918cd592b2424 (patch)
treeb48dd1e73de9ea35a4709fb6b93deb16331ec514 /0103-tests-fix-test_bytes.patch
parent89a67c05174951d172252b1db96ff93cc4ec4bcd (diff)
downloadaur-80096c8de4b34ec1ed8f30bb428918cd592b2424.tar.gz
update to 3.9.7
Diffstat (limited to '0103-tests-fix-test_bytes.patch')
-rw-r--r--0103-tests-fix-test_bytes.patch27
1 files changed, 27 insertions, 0 deletions
diff --git a/0103-tests-fix-test_bytes.patch b/0103-tests-fix-test_bytes.patch
new file mode 100644
index 000000000000..8f5db54627cb
--- /dev/null
+++ b/0103-tests-fix-test_bytes.patch
@@ -0,0 +1,27 @@
+From dee249e62d0d3f610538286927b24ea6f9f5b332 Mon Sep 17 00:00:00 2001
+From: Christoph Reiter <reiter.christoph@gmail.com>
+Date: Fri, 23 Jul 2021 08:51:32 +0200
+Subject: [PATCH 103/N] tests: fix test_bytes
+
+%p has different casing with mingw-w64, but it's implementation defined.
+Change the test to the mingw-w64 variant.
+---
+ Lib/test/test_bytes.py | 2 +-
+ 1 file changed, 1 insertion(+), 1 deletion(-)
+
+diff --git a/Lib/test/test_bytes.py b/Lib/test/test_bytes.py
+index 227e6d7..193ce10 100644
+--- a/Lib/test/test_bytes.py
++++ b/Lib/test/test_bytes.py
+@@ -1073,7 +1073,7 @@ class BytesTest(BaseBytesTest, unittest.TestCase):
+
+ if os.name == 'nt':
+ # Windows (MSCRT)
+- ptr_format = '0x%0{}X'.format(2 * sizeof_ptr)
++ ptr_format = '0x%0{}x'.format(2 * sizeof_ptr)
+ def ptr_formatter(ptr):
+ return (ptr_format % ptr)
+ else:
+--
+2.33.0
+