AttributeError: 'function' object has no attribute 'func_name' and python 3
AttributeError: 'function' object has no attribute 'func_name' and python 3
我下载了以下代码:
from __future__ import print_function
from time import sleep
def callback_a(i, result):
print("Items processed: {}. Running result: {}.".format(i, result))
def square(i):
return i * i
def processor(process, times, report_interval, callback):
print("Entered processor(): times = {}, report_interval = {}, callback = {}".format(
times, report_interval, callback.func_name))
# Can also use callback.__name__ instead of callback.func_name in line above.
result = 0
print("Processing data ...")
for i in range(1, times + 1):
result += process(i)
sleep(1)
if i % report_interval == 0:
# This is the call to the callback function
# that was passed to this function.
callback(i, result)
processor(square, 20, 5, callback_a)
在python2下工作正常,但在python3下出现以下错误:
Traceback (most recent call last):
File "test/python/cb_demo.py", line 33, in <module>
processor(square, 20, 5, callback_a)
File "test/python/cb_demo.py", line 21, in processor
times, report_interval, callback.func_name))
AttributeError: 'function' object has no attribute 'func_name'
我需要在python3.
下工作
Python 3 中的这种行为是预期的,因为它是从 Python 2 更改而来的。根据此处的文档:
https://docs.python.org/3/whatsnew/3.0.html#operators-and-special-methods
The function attributes named func_X have been renamed to use the __X__
form, freeing up these names in the function attribute namespace for user-defined attributes. To wit, func_closure, func_code, func_defaults, func_dict, func_doc, func_globals, func_name were renamed to __closure__
, __code__
, __defaults__
, __dict__
, __doc__
, __globals__
, __name__
, respectively.
您会注意到 func_name
作为重命名的属性之一。您将需要使用 __name__
.
Python3 中的示例代码:
>>> def foo(a):
... print(a.__name__)
...
>>> def c():
... pass
...
>>>
>>> foo(c)
c
我下载了以下代码:
from __future__ import print_function
from time import sleep
def callback_a(i, result):
print("Items processed: {}. Running result: {}.".format(i, result))
def square(i):
return i * i
def processor(process, times, report_interval, callback):
print("Entered processor(): times = {}, report_interval = {}, callback = {}".format(
times, report_interval, callback.func_name))
# Can also use callback.__name__ instead of callback.func_name in line above.
result = 0
print("Processing data ...")
for i in range(1, times + 1):
result += process(i)
sleep(1)
if i % report_interval == 0:
# This is the call to the callback function
# that was passed to this function.
callback(i, result)
processor(square, 20, 5, callback_a)
在python2下工作正常,但在python3下出现以下错误:
Traceback (most recent call last):
File "test/python/cb_demo.py", line 33, in <module>
processor(square, 20, 5, callback_a)
File "test/python/cb_demo.py", line 21, in processor
times, report_interval, callback.func_name))
AttributeError: 'function' object has no attribute 'func_name'
我需要在python3.
下工作Python 3 中的这种行为是预期的,因为它是从 Python 2 更改而来的。根据此处的文档:
https://docs.python.org/3/whatsnew/3.0.html#operators-and-special-methods
The function attributes named func_X have been renamed to use the
__X__
form, freeing up these names in the function attribute namespace for user-defined attributes. To wit, func_closure, func_code, func_defaults, func_dict, func_doc, func_globals, func_name were renamed to__closure__
,__code__
,__defaults__
,__dict__
,__doc__
,__globals__
,__name__
, respectively.
您会注意到 func_name
作为重命名的属性之一。您将需要使用 __name__
.
Python3 中的示例代码:
>>> def foo(a):
... print(a.__name__)
...
>>> def c():
... pass
...
>>>
>>> foo(c)
c