14
0
forked from pool/python-munch

Accepting request 1190456 from home:glaubitz:branches:devel:languages:python

- Cherry-pick upstream patch to adjust tests for Python 3.13
  * adjust-tests-for-python3.13.patch

OBS-URL: https://build.opensuse.org/request/show/1190456
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-munch?expand=0&rev=15
This commit is contained in:
2024-07-30 20:05:50 +00:00
committed by Git OBS Bridge
parent c6139b3fa3
commit 574589e16f
3 changed files with 38 additions and 1 deletions

View File

@@ -0,0 +1,29 @@
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)