直接参考Python的标准库

时间:2014-07-03 19:49:40

标签: python python-2.7 pyqt4 standard-library

事实证明,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

我真的不想那样做。

感谢。

1 个答案:

答案 0 :(得分:8)

from __builtin__ import hex

使用__builtin__ module