~certify-web-dev/twisted/certify-trunk

« back to all changes in this revision

Viewing changes to twisted/conch/insults/colors.py

  • Committer: Bazaar Package Importer
  • Author(s): Matthias Klose
  • Date: 2007-01-17 14:52:35 UTC
  • mfrom: (1.1.5 upstream) (2.1.2 etch)
  • Revision ID: james.westby@ubuntu.com-20070117145235-btmig6qfmqfen0om
Tags: 2.5.0-0ubuntu1
New upstream version, compatible with python2.5.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
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