Skip to content

Instantly share code, notes, and snippets.

@Asday
Created April 24, 2016 22:33
Show Gist options
  • Save Asday/28772213cdeb2c845008cbc470f1f6bf to your computer and use it in GitHub Desktop.
Save Asday/28772213cdeb2c845008cbc470f1f6bf to your computer and use it in GitHub Desktop.
C:\Users\Asday>py -3
Python 3.5.1 (v3.5.1:37a07cee5969, Dec 6 2015, 01:54:25) [MSC v.1900 64 bit (AMD64)] on win32
Type "help", "copyright", "credits" or "license" for more information.
>>> import wx
>>> class A(wx.Frame):
... def __init__(self):
... super().__init__(None)
... self.Show()
...
>>> A()
C:\Users\Asday>py -3
Python 3.5.1 (v3.5.1:37a07cee5969, Dec 6 2015, 01:54:25) [MSC v.1900 64 bit (AMD64)] on win32
Type "help", "copyright", "credits" or "license" for more information.
>>> import wx
>>> wx.version()
'3.0.3.dev1839+4ecd949 msw (phoenix)'
>>>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment