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
""" | |
Console module provide `copen` method for opening interactive python shell in | |
the runtime. | |
""" | |
import code | |
import readline | |
import rlcompleter | |
def copen(_globals, _locals): |
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
# smidi.py: A simple midi-file library | |
# make a single file version for midi-outfile only. | |
# Original code is from Max M's site here (GPL) | |
# http://www.mxm.dk/products/public/pythonmidi | |
# Modified by korakot, | |
# http://snippets.dzone.com/posts/show/572 | |
""" | |
include source codes from | |
- constants.py |