mirror of
https://gitlab.com/ita1024/waf.git
synced 2024-11-24 18:59:39 +01:00
Fix a few deprecation warnings
This commit is contained in:
parent
1c75284614
commit
68997828c8
@ -27,7 +27,7 @@ class Context(mod.Context):
|
|||||||
cache[node] = True
|
cache[node] = True
|
||||||
self.pre_recurse(node)
|
self.pre_recurse(node)
|
||||||
try:
|
try:
|
||||||
function_code = node.read('rU')
|
function_code = node.read('r')
|
||||||
exec(compile(function_code, node.abspath(), 'exec'), self.exec_dict)
|
exec(compile(function_code, node.abspath(), 'exec'), self.exec_dict)
|
||||||
finally:
|
finally:
|
||||||
self.post_recurse(node)
|
self.post_recurse(node)
|
||||||
|
@ -312,7 +312,7 @@ class ConfigSet(object):
|
|||||||
:type filename: string
|
:type filename: string
|
||||||
"""
|
"""
|
||||||
tbl = self.table
|
tbl = self.table
|
||||||
code = Utils.readf(filename, m='rU')
|
code = Utils.readf(filename, m='r')
|
||||||
for m in re_imp.finditer(code):
|
for m in re_imp.finditer(code):
|
||||||
g = m.group
|
g = m.group
|
||||||
tbl[g(2)] = eval(g(3))
|
tbl[g(2)] = eval(g(3))
|
||||||
|
@ -266,7 +266,7 @@ class Context(ctx):
|
|||||||
cache[node] = True
|
cache[node] = True
|
||||||
self.pre_recurse(node)
|
self.pre_recurse(node)
|
||||||
try:
|
try:
|
||||||
function_code = node.read('rU', encoding)
|
function_code = node.read('r', encoding)
|
||||||
exec(compile(function_code, node.abspath(), 'exec'), self.exec_dict)
|
exec(compile(function_code, node.abspath(), 'exec'), self.exec_dict)
|
||||||
finally:
|
finally:
|
||||||
self.post_recurse(node)
|
self.post_recurse(node)
|
||||||
@ -662,7 +662,7 @@ def load_module(path, encoding=None):
|
|||||||
|
|
||||||
module = imp.new_module(WSCRIPT_FILE)
|
module = imp.new_module(WSCRIPT_FILE)
|
||||||
try:
|
try:
|
||||||
code = Utils.readf(path, m='rU', encoding=encoding)
|
code = Utils.readf(path, m='r', encoding=encoding)
|
||||||
except EnvironmentError:
|
except EnvironmentError:
|
||||||
raise Errors.WafError('Could not read the file %r' % path)
|
raise Errors.WafError('Could not read the file %r' % path)
|
||||||
|
|
||||||
|
@ -276,9 +276,9 @@ def error(*k, **kw):
|
|||||||
|
|
||||||
def warn(*k, **kw):
|
def warn(*k, **kw):
|
||||||
"""
|
"""
|
||||||
Wraps logging.warn
|
Wraps logging.warning
|
||||||
"""
|
"""
|
||||||
log.warn(*k, **kw)
|
log.warning(*k, **kw)
|
||||||
|
|
||||||
def info(*k, **kw):
|
def info(*k, **kw):
|
||||||
"""
|
"""
|
||||||
|
6
wscript
6
wscript
@ -30,7 +30,7 @@ from waflib import Configure
|
|||||||
Configure.autoconfig = 1
|
Configure.autoconfig = 1
|
||||||
|
|
||||||
def sub_file(fname, lst):
|
def sub_file(fname, lst):
|
||||||
with open(fname, 'rU') as f:
|
with open(fname, 'r') as f:
|
||||||
txt = f.read()
|
txt = f.read()
|
||||||
|
|
||||||
for (key, val) in lst:
|
for (key, val) in lst:
|
||||||
@ -160,7 +160,7 @@ def process_tokens(tokens):
|
|||||||
body = ''.join(accu)
|
body = ''.join(accu)
|
||||||
return body
|
return body
|
||||||
|
|
||||||
deco_re = re.compile('(def|class)\\s+(\w+)\\(.*')
|
deco_re = re.compile('(def|class)\\s+(\\w+)\\(.*')
|
||||||
def process_decorators(body):
|
def process_decorators(body):
|
||||||
lst = body.splitlines()
|
lst = body.splitlines()
|
||||||
accu = []
|
accu = []
|
||||||
@ -315,7 +315,7 @@ def create_waf(self, *k, **kw):
|
|||||||
tar.close()
|
tar.close()
|
||||||
z.close()
|
z.close()
|
||||||
|
|
||||||
with open('waf-light', 'rU') as f:
|
with open('waf-light', 'r') as f:
|
||||||
code1 = f.read()
|
code1 = f.read()
|
||||||
|
|
||||||
# now store the revision unique number in waf
|
# now store the revision unique number in waf
|
||||||
|
Loading…
Reference in New Issue
Block a user