diff options
author | Maxim Yurchuk <maxim-yurchuk@ydb.tech> | 2024-12-14 10:12:08 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-12-14 10:12:08 +0000 |
commit | 05790a616375bf3dd50f64989b40bc4833b9aa42 (patch) | |
tree | dd4033454262eaa0409f005737624df4398a19f2 /contrib/python/zope.interface/py3/zope/interface/_compat.py | |
parent | cd6e4b48262b4430d1e357aa384f65758cf66f57 (diff) | |
parent | 343a8a39750604e3ef349ae3f479dbbeb04a3c7d (diff) | |
download | ydb-05790a616375bf3dd50f64989b40bc4833b9aa42.tar.gz |
Merge pull request #12602 from ydb-platform/mergelibs-241213-1023
Library import 241213-1023
Diffstat (limited to 'contrib/python/zope.interface/py3/zope/interface/_compat.py')
-rw-r--r-- | contrib/python/zope.interface/py3/zope/interface/_compat.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/contrib/python/zope.interface/py3/zope/interface/_compat.py b/contrib/python/zope.interface/py3/zope/interface/_compat.py index bc3f8671142..380329532b1 100644 --- a/contrib/python/zope.interface/py3/zope/interface/_compat.py +++ b/contrib/python/zope.interface/py3/zope/interface/_compat.py @@ -22,6 +22,9 @@ import os import sys +PY313_OR_OLDER = sys.version_info < (3, 14) + + def _normalize_name(name): if isinstance(name, bytes): name = str(name, 'ascii') |