aboutsummaryrefslogtreecommitdiffstats
path: root/contrib/python/zope.interface/py3/zope/interface/_compat.py
diff options
context:
space:
mode:
authorrobot-piglet <robot-piglet@yandex-team.com>2024-12-13 11:24:01 +0300
committerrobot-piglet <robot-piglet@yandex-team.com>2024-12-13 11:39:04 +0300
commit8ab4ecc8f6b38cb40a0538c26f53abd3343094f3 (patch)
tree130f3c2d74ced87dbae00dd8c59968dee2b206c9 /contrib/python/zope.interface/py3/zope/interface/_compat.py
parentb643b0cb5b1a28996ce6ff18a3689d7af03f2e58 (diff)
downloadydb-8ab4ecc8f6b38cb40a0538c26f53abd3343094f3.tar.gz
Intermediate changes
commit_hash:733d9d1dc02b26eb79eefc2059e2b9e39f7e1289
Diffstat (limited to 'contrib/python/zope.interface/py3/zope/interface/_compat.py')
-rw-r--r--contrib/python/zope.interface/py3/zope/interface/_compat.py3
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 bc3f867114..380329532b 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')