[Xcb-commit] xcb/proto: xcbgen
GitLab Mirror
gitlab-mirror at kemper.freedesktop.org
Mon Jul 6 15:53:14 UTC 2020
xcbgen/matcher.py | 2 +-
xcbgen/state.py | 2 +-
2 files changed, 2 insertions(+), 2 deletions(-)
New commits:
commit 029d5b5d705a27a9bb16fb7fb9b0d2b03dab424a
Author: Björn Esser <besser82 at fedoraproject.org>
Date: Thu Jun 4 20:48:51 2020 +0200
xcbgen: Use xml.etree.ElementTree for Python >= 3.3.
In commit 7d58eed95f796fc764741d7549ee2214bbbcc64c we started
to use xml.etree.ElementTree for Python >= 3.9. In fact the
xml.etree.cElementTree module has already been deprecated
since Python 3.3.
Given this fact, we should start to use the xml.etree.ElementTree
module beginning with Python 3.3.
See: https://github.com/python/cpython/commit/a72a98f24a19928e31dcc4cab2cd2ad0f1846e11
Signed-off-by: Björn Esser <besser82 at fedoraproject.org>
diff --git a/xcbgen/matcher.py b/xcbgen/matcher.py
index a13ef28..0d57685 100644
--- a/xcbgen/matcher.py
+++ b/xcbgen/matcher.py
@@ -9,7 +9,7 @@ we do not create a new type object, we just record the existing one under a new
from os.path import join
from sys import version_info
-if version_info[:2] >= (3, 9):
+if version_info[:2] >= (3, 3):
from xml.etree.ElementTree import parse
else:
from xml.etree.cElementTree import parse
diff --git a/xcbgen/state.py b/xcbgen/state.py
index 3b7eeb4..ffbfc14 100644
--- a/xcbgen/state.py
+++ b/xcbgen/state.py
@@ -4,7 +4,7 @@ This module contains the namespace class and the singleton module class.
from os.path import dirname, basename
from sys import version_info
-if version_info[:2] >= (3, 9):
+if version_info[:2] >= (3, 3):
from xml.etree.ElementTree import parse
else:
from xml.etree.cElementTree import parse
More information about the xcb-commit
mailing list