Phoenix: wx.Icon CreateFromHICON

wx.Icon.CreateFromHICON and SetHandle and similar for wx.Bitmap.SetHandle raise an error on Python 3.3:

TypeError: Bitmap.SetHandle(): argument 1 has unexpected type ‘int’

Perhaps confusion from the lacking long type in Python 3.

Documentation for these are also missing in the case of wx.Icon.

Let me amend that, it fails with numbers greater than the max value of a 32-bit integer. 2147483647 passes while 2147483648 fails.