aboutsummaryrefslogtreecommitdiffstats
path: root/contrib/python/prompt-toolkit/py2/prompt_toolkit/selection.py
diff options
context:
space:
mode:
authormonster <monster@ydb.tech>2022-07-07 14:41:37 +0300
committermonster <monster@ydb.tech>2022-07-07 14:41:37 +0300
commit06e5c21a835c0e923506c4ff27929f34e00761c2 (patch)
tree75efcbc6854ef9bd476eb8bf00cc5c900da436a2 /contrib/python/prompt-toolkit/py2/prompt_toolkit/selection.py
parent03f024c4412e3aa613bb543cf1660176320ba8f4 (diff)
downloadydb-06e5c21a835c0e923506c4ff27929f34e00761c2.tar.gz
fix ya.make
Diffstat (limited to 'contrib/python/prompt-toolkit/py2/prompt_toolkit/selection.py')
-rw-r--r--contrib/python/prompt-toolkit/py2/prompt_toolkit/selection.py47
1 files changed, 0 insertions, 47 deletions
diff --git a/contrib/python/prompt-toolkit/py2/prompt_toolkit/selection.py b/contrib/python/prompt-toolkit/py2/prompt_toolkit/selection.py
deleted file mode 100644
index 6582921222..0000000000
--- a/contrib/python/prompt-toolkit/py2/prompt_toolkit/selection.py
+++ /dev/null
@@ -1,47 +0,0 @@
-"""
-Data structures for the selection.
-"""
-from __future__ import unicode_literals
-
-__all__ = (
- 'SelectionType',
- 'PasteMode',
- 'SelectionState',
-)
-
-
-class SelectionType(object):
- """
- Type of selection.
- """
- #: Characters. (Visual in Vi.)
- CHARACTERS = 'CHARACTERS'
-
- #: Whole lines. (Visual-Line in Vi.)
- LINES = 'LINES'
-
- #: A block selection. (Visual-Block in Vi.)
- BLOCK = 'BLOCK'
-
-
-class PasteMode(object):
- EMACS = 'EMACS' # Yank like emacs.
- VI_AFTER = 'VI_AFTER' # When pressing 'p' in Vi.
- VI_BEFORE = 'VI_BEFORE' # When pressing 'P' in Vi.
-
-
-class SelectionState(object):
- """
- State of the current selection.
-
- :param original_cursor_position: int
- :param type: :class:`~.SelectionType`
- """
- def __init__(self, original_cursor_position=0, type=SelectionType.CHARACTERS):
- self.original_cursor_position = original_cursor_position
- self.type = type
-
- def __repr__(self):
- return '%s(original_cursor_position=%r, type=%r)' % (
- self.__class__.__name__,
- self.original_cursor_position, self.type)