dirtywords

portable text interface framework  https://pypi.python.org/pypi/dirtywords
git clone https://git.ce9e.org/dirtywords.git

commit
b35975c12cdfdc3aac63b6eec18eb389c4ad598a
parent
52af8bf2a1107f7f487de4d45005d2c7fa447ddf
Author
Tobias Bengfort <tobias.bengfort@gmx.net>
Date
2014-10-07 18:03
rename BaseScreen to Core

Diffstat

M dirtywords/base.py 6 +++---

1 files changed, 3 insertions, 3 deletions


diff --git a/dirtywords/base.py b/dirtywords/base.py

@@ -45,7 +45,7 @@ class AttrString(unicode):
   45    45         return AttrString(ch, **self.get_attrs())
   46    46 
   47    47 
   48    -1 class BaseScreen(object):
   -1    48 class Core(object):
   49    49     def __init__(self, height, width):
   50    50         """Initialize screen."""
   51    51         self.height = height
@@ -135,8 +135,8 @@ class BaseScreen(object):
  135   135         pass
  136   136 
  137   137 
  138    -1 class Screen(BaseScreen):
  139    -1     """Additional utility functions for :py:class:`BaseScreen`."""
   -1   138 class Screen(Core):
   -1   139     """Additional utility functions for :py:class:`Core`."""
  140   140 
  141   141     def delch(self, y, x):
  142   142         """Delete character at position."""