Created
April 24, 2016 22:33
-
-
Save Asday/28772213cdeb2c845008cbc470f1f6bf to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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