summaryrefslogtreecommitdiff
path: root/dev-python/munch/files
diff options
context:
space:
mode:
authorroot <root@alpha.trunkmasters.com>2026-06-04 16:24:49 -0500
committerroot <root@alpha.trunkmasters.com>2026-06-04 16:24:49 -0500
commita3ceca1b4c0d9bdb550dc23f06ffbb5a8e033bc7 (patch)
tree0c52bbae1c242fbc296bd650fcd1167685f81492 /dev-python/munch/files
parentbfd9c39e4712ebdb442d4ca0673061faed1e70e1 (diff)
downloadbaldeagleos-repo-a3ceca1b4c0d9bdb550dc23f06ffbb5a8e033bc7.tar.gz
baldeagleos-repo-a3ceca1b4c0d9bdb550dc23f06ffbb5a8e033bc7.tar.xz
baldeagleos-repo-a3ceca1b4c0d9bdb550dc23f06ffbb5a8e033bc7.zip
Adding metadata
Diffstat (limited to 'dev-python/munch/files')
-rw-r--r--dev-python/munch/files/munch-4.0.0-py313.patch29
1 files changed, 0 insertions, 29 deletions
diff --git a/dev-python/munch/files/munch-4.0.0-py313.patch b/dev-python/munch/files/munch-4.0.0-py313.patch
deleted file mode 100644
index 6d7cba2b89d7..000000000000
--- a/dev-python/munch/files/munch-4.0.0-py313.patch
+++ /dev/null
@@ -1,29 +0,0 @@
-From 84651ee872f9ea6dbaed986fd3818202933a8b50 Mon Sep 17 00:00:00 2001
-From: Karolina Surma <ksurma@redhat.com>
-Date: Wed, 5 Jun 2024 09:49:49 +0200
-Subject: [PATCH] Adjust tests for Python 3.13
-
----
- tests/test_munch.py | 9 +++++++++
- 1 file changed, 9 insertions(+)
-
-diff --git a/tests/test_munch.py b/tests/test_munch.py
-index c80b757..5886fdd 100644
---- a/tests/test_munch.py
-+++ b/tests/test_munch.py
-@@ -225,6 +225,15 @@ def test_reserved_attributes(attrname):
- assert attr == 'munch'
- elif attrname == '__dict__':
- assert attr == {}
-+ elif attrname == '__static_attributes__':
-+ # Python 3.13: added __static_attributes__ attribute, populated by the
-+ # compiler, containing a tuple of names of attributes of this class
-+ # which are accessed through self.X from any function in its body.
-+ assert isinstance(attr, tuple)
-+ elif attrname == '__firstlineno__':
-+ # Python 3.13: added __firstlineno__ attribute, populated by the
-+ # compiler, containing the line number of the first line of the class definition
-+ assert isinstance(attr, int)
- else:
- assert callable(attr)
-