Skip to content

Commit

Permalink
cope with python 3.11
Browse files Browse the repository at this point in the history
  • Loading branch information
tridge committed May 1, 2023
1 parent 51f1529 commit 1b1625b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion waflib/ConfigSet.py
Original file line number Diff line number Diff line change
Expand Up @@ -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))
Expand Down
2 changes: 1 addition & 1 deletion waflib/Context.py
Original file line number Diff line number Diff line change
Expand Up @@ -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)

Expand Down

0 comments on commit 1b1625b

Please sign in to comment.