From eeccf8487ba2f47e444acec9d12b72b551f035df Mon Sep 17 00:00:00 2001 From: Jeremy Fincher Date: Thu, 25 Sep 2003 06:17:44 +0000 Subject: [PATCH] Changed some quotes so emacs would syntax-highlight properly. --- src/ansi.py | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/src/ansi.py b/src/ansi.py index 7497c3386..597a2e48a 100644 --- a/src/ansi.py +++ b/src/ansi.py @@ -29,7 +29,7 @@ # POSSIBILITY OF SUCH DAMAGE. ### -''' +""" ansi.py ANSI Terminal Interface @@ -37,8 +37,6 @@ ANSI Terminal Interface Color Usage: print RED + 'this is red' + 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 moveUp(lines): 'Move cursor up # of lines' def moveDown(lines): 'Move cursor down # of lines' @@ -48,7 +46,7 @@ Commands: def restore(): 'Restores cursor position' def clear(): 'Clears screen and homes cursor' def clrtoeol(): 'Clears screen to end of line' -''' +""" ################################ # C O L O R C O N S T A N T S #