Created
April 10, 2015 17:00
-
-
Save Averroes/8ad1f08a86a160ad2afd to your computer and use it in GitHub Desktop.
splitting a module into multiple files
This file contains hidden or 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
| import mymodule | |
| a = mymodule.A() | |
| a.spam() | |
| b = mymodule.B() | |
| b.bar() |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment