Details
-
Bug
-
Resolution: Cannot Reproduce
-
P1: Critical
-
1.2.x
-
Windows 7 64-bit, Python 2.6.4 64-bit, PySide 1.1.1 (compiled with Visual C++ 2008)
Description
If an address above 32 bits is passed to shiboken.wrapInstance, an OverflowError is raised.
>>> from PySide import QtCore, shiboken
>>>
>>> shiboken.wrapInstance(0xFFFFFFFF, QtCore.QObject)
<PySide.QtCore.QObject object at 0x0000000003EFB3C8>
>>> shiboken.wrapInstance(0x100000000, QtCore.QObject)
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
OverflowError
>>>
Attachments
Issue Links
- relates to
-
PYSIDE-46 winId() result is not a long
- Closed