about summary refs log tree commit diff stats
path: root/WWW/Library/Implementation/HTML.h
Commit message (Collapse)AuthorAgeFilesLines
* snapshot of project "lynx", label v2-7-1ac-0_117Thomas E. Dickey1998-02-271-257/+0
|
* snapshot of project "lynx", label v2-7-1ac-0_113Thomas E. Dickey1998-02-051-80/+79
|
* snapshot of project "lynx", label v2-7-1ac-0_111Thomas E. Dickey1998-01-281-2/+0
|
* snapshot of project "lynx", label v2-7-1ac_0-95Thomas E. Dickey1997-11-171-5/+39
|
* snapshot of project "lynx", label v2-7-1ac_0-76Thomas E. Dickey1997-10-061-0/+3
|
* snapshot of project "lynx", label v2-7-1ac_0-52Thomas E. Dickey1997-08-171-2/+2
|
* snapshot of project "lynx", label v2-7-1ac_0-36Thomas E. Dickey1997-07-181-0/+1
|
* snapshot of project "lynx", label v2-7-1ac_0-28Thomas E. Dickey1997-05-251-0/+5
|
* snapshot of project "lynx", label v2-7-1ac_0-6Thomas E. Dickey1997-04-161-1/+12
|
* snapshot of project "lynx", label v2_7Thomas E. Dickey1997-02-151-0/+1
|
* snapshot of project "lynx", label v2_6fm_970129Thomas E. Dickey1997-01-291-26/+152
|
* snapshot of project "lynx", label v2_6Thomas E. Dickey1996-09-021-0/+79
span class="n">print_function) import curses @curses.wrapper def main(win): def print_all_colors(attr): for color in range(-1, curses.COLORS): try: curses.init_pair(color, color, 0) except curses.error: pass else: win.addstr(str(color) + ' ', curses.color_pair(color) | attr) curses.start_color() try: curses.use_default_colors() except curses.error: pass win.addstr("available colors: %d\n\n" % curses.COLORS) print_all_colors(0) win.addstr("\n\n") print_all_colors(curses.A_BOLD) win.refresh() win.getch()