Skip to content

Commit df67ff9

Browse files
committed
Avoid the addition of two new object attributes
These new attributes were added in Python 3.13. https://docs.python.org/3/whatsnew/3.13.html
1 parent 59a6ffe commit df67ff9

1 file changed

Lines changed: 2 additions & 0 deletions

File tree

cbv/importer/importers.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,11 +19,13 @@
1919
"__dict__",
2020
"__doc__",
2121
"__file__",
22+
"__firstlineno__",
2223
"__module__",
2324
"__name__",
2425
"__package__",
2526
"__path__",
2627
"__spec__",
28+
"__static_attributes__",
2729
"__weakref__",
2830
)
2931

0 commit comments

Comments
 (0)