[Python-modules-commits] [prompt-toolkit] branch upstream updated (1c3f493 -> bf27329)

Scott Kitterman kitterman at moszumanska.debian.org
Sun Jan 10 09:12:57 UTC 2016


This is an automated email from the git hooks/post-receive script.

kitterman pushed a change to branch upstream
in repository prompt-toolkit.

      from  1c3f493   Import prompt-toolkit_0.54.orig.tar.gz
       new  bf27329   Import prompt-toolkit_0.57.orig.tar.gz

The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "adds" were already present in the repository and have only
been added to this reference.


Summary of changes:
 CHANGELOG                                          |  92 +++++
 MANIFEST.in                                        |   1 +
 PKG-INFO                                           |  18 +-
 README.rst                                         |  16 +-
 TODO.rst                                           |  39 ++
 ...ncio-prompt.py => asyncio-prompt-simplified.py} |  28 +-
 examples/asyncio-prompt.py                         |  34 +-
 examples/autocompletion-enter.py                   |  39 ++
 examples/bottom-toolbar.py                         |  10 +-
 examples/clock-input.py                            |   2 +-
 examples/colored-prompt.py                         |  29 +-
 examples/regular-language.py                       |  17 +-
 examples/switch-between-vi-emacs.py                |  32 ++
 examples/system-autocompletion.py                  |  17 +
 examples/system-prompt.py                          |   3 +-
 examples/up-arrow-partial-string-matching.py       |   3 +-
 prompt_toolkit.egg-info/PKG-INFO                   |  18 +-
 prompt_toolkit.egg-info/SOURCES.txt                |  21 +-
 prompt_toolkit.egg-info/pbr.json                   |   1 -
 prompt_toolkit/__init__.py                         |   3 +
 prompt_toolkit/application.py                      |  33 +-
 prompt_toolkit/buffer.py                           |  57 +--
 prompt_toolkit/buffer_mapping.py                   |  92 +++++
 prompt_toolkit/clipboard/base.py                   |   2 +-
 prompt_toolkit/contrib/completers/base.py          |  20 +-
 prompt_toolkit/contrib/completers/filesystem.py    |  15 +
 prompt_toolkit/contrib/completers/system.py        |  10 +-
 .../contrib/regular_languages/__init__.py          |   2 +-
 .../contrib/regular_languages/compiler.py          |   2 +-
 prompt_toolkit/contrib/regular_languages/lexer.py  |   1 +
 prompt_toolkit/contrib/telnet/server.py            |   6 +-
 prompt_toolkit/document.py                         | 149 +++++++-
 prompt_toolkit/enums.py                            |   2 +-
 prompt_toolkit/eventloop/asyncio_posix.py          |   2 +-
 prompt_toolkit/eventloop/asyncio_win32.py          |   2 +-
 prompt_toolkit/eventloop/base.py                   |   7 +-
 prompt_toolkit/eventloop/posix.py                  | 130 ++++---
 prompt_toolkit/eventloop/posix_utils.py            |   8 +-
 prompt_toolkit/eventloop/win32.py                  |   2 +-
 prompt_toolkit/filters/cli.py                      |   4 +-
 prompt_toolkit/focus_stack.py                      |  60 ---
 prompt_toolkit/input.py                            |   3 +
 prompt_toolkit/interface.py                        | 160 +++++---
 prompt_toolkit/key_binding/bindings/basic.py       |  11 +-
 prompt_toolkit/key_binding/bindings/emacs.py       |  47 +--
 prompt_toolkit/key_binding/bindings/scroll.py      |   6 +-
 prompt_toolkit/key_binding/bindings/vi.py          | 218 +++++++----
 prompt_toolkit/key_binding/manager.py              |  37 +-
 prompt_toolkit/key_binding/registry.py             |  29 +-
 prompt_toolkit/keys.py                             |   1 +
 prompt_toolkit/layout/containers.py                | 403 +++++++++++++++-----
 prompt_toolkit/layout/controls.py                  | 419 +++++++++++++++------
 prompt_toolkit/layout/dimension.py                 |  13 +-
 prompt_toolkit/layout/highlighters.py              | 209 ++++++++++
 prompt_toolkit/layout/processors.py                |  18 +-
 prompt_toolkit/layout/screen.py                    |  21 +-
 prompt_toolkit/layout/toolbars.py                  |   2 +-
 prompt_toolkit/layout/utils.py                     |  56 ++-
 prompt_toolkit/mouse_events.py                     |   3 +
 prompt_toolkit/output.py                           |  13 +
 prompt_toolkit/renderer.py                         |  97 +++--
 prompt_toolkit/selection.py                        |   2 +-
 prompt_toolkit/shortcuts.py                        | 105 +++---
 prompt_toolkit/styles.py                           | 134 ++++---
 prompt_toolkit/terminal/vt100_input.py             |  54 ++-
 prompt_toolkit/terminal/vt100_output.py            | 219 ++++++++---
 prompt_toolkit/terminal/win32_input.py             |   9 +-
 prompt_toolkit/terminal/win32_output.py            |  66 +++-
 prompt_toolkit/utils.py                            |  72 ++++
 setup.cfg                                          |   4 +-
 setup.py                                           |   4 +-
 tests/buffer_tests/__init__.py                     | 102 +++++
 tests/contrib_tests.py                             | 249 ++++++++++++
 tests/document_tests/__init__.py                   |  65 ++++
 tests/inputstream_tests/__init__.py                | 125 ++++++
 tests/key_binding_tests/__init__.py                |  71 ++++
 tests/layout_tests/__init__.py                     |  29 ++
 tests/regular_languages_tests/__init__.py          | 102 +++++
 tests/run_tests.py                                 |  59 +++
 tests/screen_tests/__init__.py                     |  96 +++++
 tests/utils_tests/__init__.py                      |  41 ++
 81 files changed, 3484 insertions(+), 919 deletions(-)
 create mode 100644 TODO.rst
 copy examples/{asyncio-prompt.py => asyncio-prompt-simplified.py} (64%)
 create mode 100755 examples/autocompletion-enter.py
 create mode 100644 examples/switch-between-vi-emacs.py
 create mode 100644 examples/system-autocompletion.py
 delete mode 100644 prompt_toolkit.egg-info/pbr.json
 create mode 100644 prompt_toolkit/buffer_mapping.py
 delete mode 100644 prompt_toolkit/focus_stack.py
 create mode 100644 prompt_toolkit/layout/highlighters.py
 create mode 100644 tests/buffer_tests/__init__.py
 create mode 100644 tests/contrib_tests.py
 create mode 100644 tests/document_tests/__init__.py
 create mode 100644 tests/inputstream_tests/__init__.py
 create mode 100644 tests/key_binding_tests/__init__.py
 create mode 100644 tests/layout_tests/__init__.py
 create mode 100644 tests/regular_languages_tests/__init__.py
 create mode 100755 tests/run_tests.py
 create mode 100644 tests/screen_tests/__init__.py
 create mode 100644 tests/utils_tests/__init__.py

-- 
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/python-modules/packages/prompt-toolkit.git



More information about the Python-modules-commits mailing list