From 1b1625b8e7da6e1307d73335cb995fa8813d5950 Mon Sep 17 00:00:00 2001 From: Andrew Tridgell Date: Mon, 1 May 2023 14:30:12 +1000 Subject: [PATCH] cope with python 3.11 --- waflib/ConfigSet.py | 2 +- waflib/Context.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/waflib/ConfigSet.py b/waflib/ConfigSet.py index b300bb56b7..84736c9c87 100644 --- a/waflib/ConfigSet.py +++ b/waflib/ConfigSet.py @@ -312,7 +312,7 @@ def load(self, filename): :type filename: string """ tbl = self.table - code = Utils.readf(filename, m='rU') + code = Utils.readf(filename, m='r') for m in re_imp.finditer(code): g = m.group tbl[g(2)] = eval(g(3)) diff --git a/waflib/Context.py b/waflib/Context.py index 4e7a63337c..204d2a3051 100644 --- a/waflib/Context.py +++ b/waflib/Context.py @@ -662,7 +662,7 @@ def load_module(path, encoding=None): module = imp.new_module(WSCRIPT_FILE) try: - code = Utils.readf(path, m='rU', encoding=encoding) + code = Utils.readf(path, m='r', encoding=encoding) except EnvironmentError: raise Errors.WafError('Could not read the file %r' % path)