aboutsummaryrefslogtreecommitdiffstats
path: root/community/py3-h2/py311.patch
diff options
context:
space:
mode:
Diffstat (limited to 'community/py3-h2/py311.patch')
-rw-r--r--community/py3-h2/py311.patch54
1 files changed, 54 insertions, 0 deletions
diff --git a/community/py3-h2/py311.patch b/community/py3-h2/py311.patch
new file mode 100644
index 00000000000..935bf5989fa
--- /dev/null
+++ b/community/py3-h2/py311.patch
@@ -0,0 +1,54 @@
+Patch-Source: https://github.com/python-hyper/h2/pull/1269
+From b892f39566e03591e9556e94708d9b208182ffab Mon Sep 17 00:00:00 2001
+From: =?UTF-8?q?Robert-Andr=C3=A9=20Mauchin?= <zebob.m@gmail.com>
+Date: Sun, 3 Jul 2022 12:05:05 +0200
+Subject: [PATCH] Fix repr() checks for Python 3.11
+
+In Python 3.11, repr() was modified, this commit fixes the
+assertions to match the new repr() behavior.
+
+Fix #1268
+---
+ test/test_events.py | 8 ++++----
+ 1 file changed, 4 insertions(+), 4 deletions(-)
+
+diff --git a/test/test_events.py b/test/test_events.py
+index a6e8d8379..954ca9921 100644
+--- a/test/test_events.py
++++ b/test/test_events.py
+@@ -209,7 +209,7 @@ def test_remotesettingschanged_repr(self):
+
+ assert repr(e) == (
+ "<RemoteSettingsChanged changed_settings:{ChangedSetting("
+- "setting=SettingCodes.INITIAL_WINDOW_SIZE, original_value=65536, "
++ "setting=4, original_value=65536, "
+ "new_value=32768)}>"
+ )
+
+@@ -251,7 +251,7 @@ def test_streamreset_repr(self):
+
+ assert repr(e) == (
+ "<StreamReset stream_id:919, "
+- "error_code:ErrorCodes.ENHANCE_YOUR_CALM, remote_reset:False>"
++ "error_code:11, remote_reset:False>"
+ )
+
+ def test_pushedstreamreceived_repr(self):
+@@ -286,7 +286,7 @@ def test_settingsacknowledged_repr(self):
+
+ assert repr(e) == (
+ "<SettingsAcknowledged changed_settings:{ChangedSetting("
+- "setting=SettingCodes.INITIAL_WINDOW_SIZE, original_value=65536, "
++ "setting=4, original_value=65536, "
+ "new_value=32768)}>"
+ )
+
+@@ -319,7 +319,7 @@ def test_connectionterminated_repr(self, additional_data, data_repr):
+ e.additional_data = additional_data
+
+ assert repr(e) == (
+- "<ConnectionTerminated error_code:ErrorCodes.INADEQUATE_SECURITY, "
++ "<ConnectionTerminated error_code:12, "
+ "last_stream_id:33, additional_data:%s>" % data_repr
+ )
+