Skip to content

Commit

Permalink
More tests on voidptr (from python-qt-tools#104)
Browse files Browse the repository at this point in the history
  • Loading branch information
bluebird75 committed Apr 26, 2022
1 parent e42a9fe commit e296cfc
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion tests/siparray.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,4 +6,10 @@

volume = QCustom3DVolume()
volume.setTextureData(a)
a = volume.textureData()
a = volume.textureData()

# more voidptr tests
v = sip.voidptr(None)
v = sip.voidptr(b'123', 0)
v = sip.voidptr(bytearray(b'123'), 0, False)
v = sip.voidptr(v)

0 comments on commit e296cfc

Please sign in to comment.