Python 3.3 added the __qualname__
attribute允许人们获取函数的限定名(think module.submodule.class.function)或类似名称。
有没有办法在Python2.6和2.7中重现这个属性?
最佳答案
我已经编写了一个库,它为较旧的Python版本提供了一个__qualname__
等价物:https://github.com/wbolster/qualname
Python 3.3 added the __qualname__
attribute允许人们获取函数的限定名(think module.submodule.class.function)或类似名称。
有没有办法在Python2.6和2.7中重现这个属性?
最佳答案
我已经编写了一个库,它为较旧的Python版本提供了一个__qualname__
等价物:https://github.com/wbolster/qualname