|
Revision 13202, 405 bytes
(checked in by foom, 5 years ago)
|
|
Remove example for old API, and add comment directing people towards better API.
|
| Line | |
|---|
| 1 | """ |
|---|
| 2 | You don't really want to use this module. Try helper.py instead. |
|---|
| 3 | """ |
|---|
| 4 | |
|---|
| 5 | CLEAR = 0 |
|---|
| 6 | BOLD = 1 |
|---|
| 7 | DIM = 2 |
|---|
| 8 | ITALIC = 3 |
|---|
| 9 | UNDERSCORE = 4 |
|---|
| 10 | BLINK_SLOW = 5 |
|---|
| 11 | BLINK_FAST = 6 |
|---|
| 12 | REVERSE = 7 |
|---|
| 13 | CONCEALED = 8 |
|---|
| 14 | FG_BLACK = 30 |
|---|
| 15 | FG_RED = 31 |
|---|
| 16 | FG_GREEN = 32 |
|---|
| 17 | FG_YELLOW = 33 |
|---|
| 18 | FG_BLUE = 34 |
|---|
| 19 | FG_MAGENTA = 35 |
|---|
| 20 | FG_CYAN = 36 |
|---|
| 21 | FG_WHITE = 37 |
|---|
| 22 | BG_BLACK = 40 |
|---|
| 23 | BG_RED = 41 |
|---|
| 24 | BG_GREEN = 42 |
|---|
| 25 | BG_YELLOW = 43 |
|---|
| 26 | BG_BLUE = 44 |
|---|
| 27 | BG_MAGENTA = 45 |
|---|
| 28 | BG_CYAN = 46 |
|---|
| 29 | BG_WHITE = 47 |
|---|