Changed some quotes so emacs would syntax-highlight properly.

This commit is contained in:
Jeremy Fincher 2003-09-25 06:17:44 +00:00
parent 343fd76d51
commit eeccf8487b
1 changed files with 2 additions and 4 deletions

View File

@ -29,7 +29,7 @@
# POSSIBILITY OF SUCH DAMAGE. # POSSIBILITY OF SUCH DAMAGE.
### ###
''' """
ansi.py ansi.py
ANSI Terminal Interface ANSI Terminal Interface
@ -37,8 +37,6 @@ ANSI Terminal Interface
Color Usage: Color Usage:
print RED + 'this is red' + RESET print RED + 'this is red' + RESET
print BOLD + GREEN + WHITEBG + 'this is bold green on white' + RESET print BOLD + GREEN + WHITEBG + 'this is bold green on white' + RESET
Commands:
def move(new_x, new_y): 'Move cursor to new_x, new_y' def move(new_x, new_y): 'Move cursor to new_x, new_y'
def moveUp(lines): 'Move cursor up # of lines' def moveUp(lines): 'Move cursor up # of lines'
def moveDown(lines): 'Move cursor down # of lines' def moveDown(lines): 'Move cursor down # of lines'
@ -48,7 +46,7 @@ Commands:
def restore(): 'Restores cursor position' def restore(): 'Restores cursor position'
def clear(): 'Clears screen and homes cursor' def clear(): 'Clears screen and homes cursor'
def clrtoeol(): 'Clears screen to end of line' def clrtoeol(): 'Clears screen to end of line'
''' """
################################ ################################
# C O L O R C O N S T A N T S # # C O L O R C O N S T A N T S #