diff options
author | robot-piglet <robot-piglet@yandex-team.com> | 2024-04-27 23:59:42 +0300 |
---|---|---|
committer | robot-piglet <robot-piglet@yandex-team.com> | 2024-04-28 00:08:23 +0300 |
commit | 1a84ca0a513349509c5e90a2581a6006fa416253 (patch) | |
tree | 7c17508674224f7bc98fd52e38e1298a811837f1 /contrib/python/zope.interface/py3/zope/interface | |
parent | 0f9874a47090250cf263e617e4c6fcc410eb6ffd (diff) | |
download | ydb-1a84ca0a513349509c5e90a2581a6006fa416253.tar.gz |
Intermediate changes
Diffstat (limited to 'contrib/python/zope.interface/py3/zope/interface')
-rw-r--r-- | contrib/python/zope.interface/py3/zope/interface/interface.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/contrib/python/zope.interface/py3/zope/interface/interface.py b/contrib/python/zope.interface/py3/zope/interface/interface.py index 8143daf3dd..733e3954fe 100644 --- a/contrib/python/zope.interface/py3/zope/interface/interface.py +++ b/contrib/python/zope.interface/py3/zope/interface/interface.py @@ -799,6 +799,9 @@ class InterfaceClass(_InterfaceClassBase): '__qualname__', # __annotations__: PEP 3107 (Python 3.0+) '__annotations__', + # __static_attributes__: Python 3.13a6+ + # https://github.com/python/cpython/pull/115913 + '__static_attributes__', ) and aval is not _decorator_non_return } |