diff options
| author | root <root@alpha.trunkmasters.com> | 2026-06-04 16:24:49 -0500 |
|---|---|---|
| committer | root <root@alpha.trunkmasters.com> | 2026-06-04 16:24:49 -0500 |
| commit | a3ceca1b4c0d9bdb550dc23f06ffbb5a8e033bc7 (patch) | |
| tree | 0c52bbae1c242fbc296bd650fcd1167685f81492 /dev-python/typing-extensions/files | |
| parent | bfd9c39e4712ebdb442d4ca0673061faed1e70e1 (diff) | |
| download | baldeagleos-repo-a3ceca1b4c0d9bdb550dc23f06ffbb5a8e033bc7.tar.gz baldeagleos-repo-a3ceca1b4c0d9bdb550dc23f06ffbb5a8e033bc7.tar.xz baldeagleos-repo-a3ceca1b4c0d9bdb550dc23f06ffbb5a8e033bc7.zip | |
Adding metadata
Diffstat (limited to 'dev-python/typing-extensions/files')
| -rw-r--r-- | dev-python/typing-extensions/files/typing-extensions-4.15.0-py314-test.patch | 28 |
1 files changed, 0 insertions, 28 deletions
diff --git a/dev-python/typing-extensions/files/typing-extensions-4.15.0-py314-test.patch b/dev-python/typing-extensions/files/typing-extensions-4.15.0-py314-test.patch deleted file mode 100644 index a17dc9615766..000000000000 --- a/dev-python/typing-extensions/files/typing-extensions-4.15.0-py314-test.patch +++ /dev/null @@ -1,28 +0,0 @@ -From aa81d37f98c3322d535a7d0c8dd093870f0fb5ef Mon Sep 17 00:00:00 2001 -From: Jelle Zijlstra <jelle.zijlstra@gmail.com> -Date: Thu, 18 Sep 2025 21:03:16 -0700 -Subject: [PATCH] fix test on 3.14 - ---- - src/test_typing_extensions.py | 8 ++++++-- - 1 file changed, 6 insertions(+), 2 deletions(-) - -diff --git a/src/test_typing_extensions.py b/src/test_typing_extensions.py -index 27f4059c..f07e1eb0 100644 ---- a/src/test_typing_extensions.py -+++ b/src/test_typing_extensions.py -@@ -4508,8 +4508,12 @@ def _make_td(future, class_name, annos, base, extra_names=None): - child = _make_td( - child_future, "Child", {"child": "int"}, "Base", {"Base": base} - ) -- base_anno = typing.ForwardRef("int", module="builtins") if base_future else int -- child_anno = typing.ForwardRef("int", module="builtins") if child_future else int -+ if sys.version_info >= (3, 14): -+ base_anno = typing.ForwardRef("int", module="builtins", owner=base) if base_future else int -+ child_anno = typing.ForwardRef("int", module="builtins", owner=child) if child_future else int -+ else: -+ base_anno = typing.ForwardRef("int", module="builtins") if base_future else int -+ child_anno = typing.ForwardRef("int", module="builtins") if child_future else int - self.assertEqual(base.__annotations__, {'base': base_anno}) - self.assertEqual( - child.__annotations__, {'child': child_anno, 'base': base_anno} |
