diff options
author | Emmanuel Gil Peyrot <linkmauve@linkmauve.fr> | 2015-10-25 13:47:03 +0000 |
---|---|---|
committer | Emmanuel Gil Peyrot <linkmauve@linkmauve.fr> | 2016-06-11 20:49:46 +0100 |
commit | 275128963b6f6d0e9506fbff5f946510c5bf62a5 (patch) | |
tree | 3bb1dbf13417e9a274254583f41dda74972348d2 | |
parent | 739793e9bc562115a1d5b5be6f91c439398077e7 (diff) | |
download | poezio-275128963b6f6d0e9506fbff5f946510c5bf62a5.tar.gz poezio-275128963b6f6d0e9506fbff5f946510c5bf62a5.tar.bz2 poezio-275128963b6f6d0e9506fbff5f946510c5bf62a5.tar.xz poezio-275128963b6f6d0e9506fbff5f946510c5bf62a5.zip |
Remove some unused globals.
-rw-r--r-- | poezio/windows/base_wins.py | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/poezio/windows/base_wins.py b/poezio/windows/base_wins.py index cb20ad23..b33ee71b 100644 --- a/poezio/windows/base_wins.py +++ b/poezio/windows/base_wins.py @@ -23,9 +23,6 @@ FORMAT_CHAR = '\x19' # I guess. But maybe we can find better chars that are even less risky. format_chars = '\x0E\x0F\x10\x11\x12\x13\x14\x15\x16\x17\x18' -# different colors allowed in the input -allowed_color_digits = ('0', '1', '2', '3', '4', '5', '6', '7') - # msg is a reference to the corresponding Message object. text_start and # text_end are the position delimiting the text in this line. class Line: @@ -36,8 +33,6 @@ class Line: self.end_pos = end_pos self.prepend = prepend -LINES_NB_LIMIT = 4096 - class DummyWin(object): def __getattribute__(self, name): if name != '__bool__': |