Created
September 25, 2014 16:01
-
-
Save tacahiroy/b925c0800dfab4c6f54d to your computer and use it in GitHub Desktop.
Test file for ctrlp-funky - python
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
| class Vim: | |
| def editor(): | |
| print "Vi Improved" | |
| class CtrlP: | |
| def method(): | |
| print "ctrlp!" | |
| class Funky(Vim, CtrlP): | |
| def funk(): | |
| print "funk" | |
| def saturday(night, fever): | |
| print "dancing" | |
| def sleeping(on, | |
| sunday): | |
| print "zzZ" | |
| def monday( | |
| ): | |
| print "absent" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment