事实证明,PyQt重新定义了一个函数hex()
,遗憾的是,它使得python标准库hex()
无法使用。我正在开发一个大型软件项目,它已经设置了* imports:
from PyQt4.QtCore import *
from PyQt4.QtGui import *
...等
我需要标准的python hex()
函数,有什么方法可以引用它吗?我在想stdlib.hex()
或类似的东西?
目前我丑陋的解决方法是:
pyHex = hex
from PyQt4.QtCore import *
from PyQt4.QtGui import *
hex = pyHex
我真的不想那样做。
感谢。