From cc63fd51b226f86aa684342241c20e2e2b84f8da Mon Sep 17 00:00:00 2001 From: Kevin O'Connor Date: Mon, 4 Oct 2021 15:09:10 -0400 Subject: scripts: Use backport of a recent Python3 configparser on Python2 Signed-off-by: Kevin O'Connor --- klippy/util.py | 8 +------- 1 file changed, 1 insertion(+), 7 deletions(-) (limited to 'klippy/util.py') diff --git a/klippy/util.py b/klippy/util.py index 6d110e47..eabd2263 100644 --- a/klippy/util.py +++ b/klippy/util.py @@ -98,16 +98,10 @@ def setup_python2_wrappers(): if sys.version_info.major >= 3: return # Add module hacks so that common Python3 module imports work in Python2 - import Queue, io, StringIO, ConfigParser, time + import Queue, io, StringIO, time sys.modules["queue"] = Queue io.StringIO = StringIO.StringIO time.process_time = time.clock - sys.modules["configparser"] = ConfigParser - OrigRawConfigParser = ConfigParser.RawConfigParser - def RCP(strict=False, *args, **kwargs): - return OrigRawConfigParser(*args, **kwargs) - RCP.SECTCRE = OrigRawConfigParser.SECTCRE - ConfigParser.RawConfigParser = RCP setup_python2_wrappers() -- cgit v1.2.3-70-g09d2