aboutsummaryrefslogtreecommitdiff
path: root/modules/commands/outs.py
diff options
context:
space:
mode:
authorGravatar jesopo2019-12-10 05:27:35 +0000
committerGravatar jesopo2019-12-10 05:27:35 +0000
commit638eee0d685c06d258cb55287204ca97bca7c344 (patch)
tree33442439317ae2846f1efb7674b7a3758c8990a1 /modules/commands/outs.py
parentmove sys.exit() codes to an enum in utils.consts (diff)
move core modules to src/core_modules, make them uneffected by white/black list
Diffstat (limited to 'modules/commands/outs.py')
-rw-r--r--modules/commands/outs.py28
1 files changed, 0 insertions, 28 deletions
diff --git a/modules/commands/outs.py b/modules/commands/outs.py
deleted file mode 100644
index e82ceefd..00000000
--- a/modules/commands/outs.py
+++ /dev/null
@@ -1,28 +0,0 @@
-import re
-from src import IRCLine, utils
-
-class StdOut(object):
- def __init__(self, prefix):
- self.prefix = prefix
- self._lines = []
- self._assured = False
-
- def assure(self):
- self._assured = True
-
- def write(self, text):
- self.write_lines(
- text.replace("\r", "").replace("\n\n", "\n").split("\n"))
- def write_lines(self, lines):
- self._lines += list(filter(None, lines))
-
- def get_all(self):
- return self._lines.copy()
- def pop(self):
- return self._lines.pop(0)
- def insert(self, text):
- self._lines.insert(0, text)
-
- def has_text(self):
- return bool(self._lines)
-