[Python-modules-commits] [prompt-toolkit] branch upstream updated (0db2578 -> 977d486)

Scott Kitterman kitterman at moszumanska.debian.org
Sat Jun 18 22:55:33 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  0db2578   Import prompt-toolkit_1.0.0.orig.tar.gz
       new  977d486   Import prompt-toolkit_1.0.2.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                                          |  74 ++++++
 PKG-INFO                                           |   7 +-
 README.rst                                         |   5 +-
 TODO.rst                                           |  39 ----
 examples/asyncio-prompt-simplified.py              |  67 ------
 examples/asyncio-prompt.py                         |   4 +-
 ...on-enter.py => autocompletion-like-readline.py} |  24 +-
 examples/{get-input.py => chinese-prompt.py}       |   2 +-
 examples/clock-input.py                            |  46 +---
 examples/complete-test.py                          |  83 +++++++
 examples/confirmation-prompt.py                    |  11 +
 examples/custom-key-binding.py                     |   8 +-
 examples/finalterm-shell-integration.py            |  36 +++
 examples/pager.py                                  |  85 +++++++
 examples/system-autocompletion.py                  |  17 --
 prompt_toolkit.egg-info/PKG-INFO                   |   7 +-
 prompt_toolkit.egg-info/SOURCES.txt                |  38 ++--
 prompt_toolkit.egg-info/pbr.json                   |   1 +
 prompt_toolkit/__init__.py                         |   2 +-
 prompt_toolkit/benchmark.py                        |  20 ++
 prompt_toolkit/buffer.py                           |  23 +-
 prompt_toolkit/cache.py                            |   5 +
 prompt_toolkit/completion.py                       |   9 +-
 prompt_toolkit/contrib/completers/filesystem.py    |   8 +-
 .../contrib/regular_languages/validation.py        |   2 +-
 prompt_toolkit/contrib/telnet/server.py            |   2 +-
 prompt_toolkit/contrib/validators/base.py          |   3 +-
 prompt_toolkit/document.py                         |  26 ++-
 prompt_toolkit/eventloop/posix_utils.py            |  10 +-
 prompt_toolkit/eventloop/win32.py                  |   7 +-
 prompt_toolkit/filters/cli.py                      |   1 +
 prompt_toolkit/interface.py                        |  43 +++-
 prompt_toolkit/key_binding/bindings/basic.py       |  32 +--
 prompt_toolkit/key_binding/bindings/completion.py  | 163 +++++++++++++
 prompt_toolkit/key_binding/bindings/emacs.py       |   4 +-
 prompt_toolkit/key_binding/bindings/utils.py       |  22 +-
 prompt_toolkit/key_binding/bindings/vi.py          | 111 ++++++---
 prompt_toolkit/key_binding/input_processor.py      | 113 +++++----
 prompt_toolkit/key_binding/registry.py             |  94 +++++---
 prompt_toolkit/layout/containers.py                |  40 +++-
 prompt_toolkit/layout/controls.py                  |  44 +++-
 prompt_toolkit/layout/focus.py                     |  86 +++++++
 prompt_toolkit/layout/margins.py                   |   3 +-
 prompt_toolkit/layout/processors.py                |  51 ++++-
 prompt_toolkit/layout/screen.py                    |   3 +
 prompt_toolkit/layout/utils.py                     |  19 +-
 prompt_toolkit/output.py                           |  12 +
 prompt_toolkit/renderer.py                         |  27 ++-
 prompt_toolkit/shortcuts.py                        | 140 ++++++++++--
 prompt_toolkit/styles/defaults.py                  |   4 +-
 prompt_toolkit/terminal/vt100_output.py            |  22 +-
 prompt_toolkit/terminal/win32_input.py             |  83 +++++--
 prompt_toolkit/terminal/win32_output.py            |   4 +
 prompt_toolkit/token.py                            |   9 +
 prompt_toolkit/utils.py                            |  14 +-
 setup.cfg                                          |   2 +-
 tests/buffer_tests/__init__.py                     | 102 ---------
 tests/cli_tests.py                                 | 183 ---------------
 tests/contrib_tests.py                             | 249 --------------------
 tests/document_tests/__init__.py                   |  65 ------
 tests/filter_tests.py                              | 153 -------------
 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                                 |  61 -----
 tests/style_tests.py                               |  41 ----
 tests/test_buffer.py                               | 111 +++++++++
 tests/test_cli.py                                  | 216 ++++++++++++++++++
 tests/test_contrib.py                              | 253 +++++++++++++++++++++
 tests/test_document.py                             |  74 ++++++
 tests/test_filter.py                               | 168 ++++++++++++++
 tests/test_inputstream.py                          | 142 ++++++++++++
 tests/test_key_binding.py                          |  98 ++++++++
 tests/test_layout.py                               |  60 +++++
 tests/test_regular_languages.py                    | 110 +++++++++
 tests/test_shortcuts.py                            |  51 +++++
 tests/test_style.py                                |  40 ++++
 tests/test_utils.py                                |  39 ++++
 tests/utils_tests/__init__.py                      |  41 ----
 80 files changed, 2721 insertions(+), 1680 deletions(-)
 delete mode 100644 TODO.rst
 delete mode 100755 examples/asyncio-prompt-simplified.py
 rename examples/{autocompletion-enter.py => autocompletion-like-readline.py} (52%)
 copy examples/{get-input.py => chinese-prompt.py} (78%)
 create mode 100755 examples/complete-test.py
 create mode 100755 examples/confirmation-prompt.py
 create mode 100755 examples/finalterm-shell-integration.py
 create mode 100755 examples/pager.py
 delete mode 100644 examples/system-autocompletion.py
 create mode 100644 prompt_toolkit.egg-info/pbr.json
 create mode 100644 prompt_toolkit/benchmark.py
 create mode 100644 prompt_toolkit/key_binding/bindings/completion.py
 create mode 100644 prompt_toolkit/layout/focus.py
 delete mode 100644 tests/buffer_tests/__init__.py
 delete mode 100644 tests/cli_tests.py
 delete mode 100644 tests/contrib_tests.py
 delete mode 100644 tests/document_tests/__init__.py
 delete mode 100644 tests/filter_tests.py
 delete mode 100644 tests/inputstream_tests/__init__.py
 delete mode 100644 tests/key_binding_tests/__init__.py
 delete mode 100644 tests/layout_tests/__init__.py
 delete mode 100644 tests/regular_languages_tests/__init__.py
 delete mode 100755 tests/run_tests.py
 delete mode 100644 tests/style_tests.py
 create mode 100644 tests/test_buffer.py
 create mode 100644 tests/test_cli.py
 create mode 100644 tests/test_contrib.py
 create mode 100644 tests/test_document.py
 create mode 100644 tests/test_filter.py
 create mode 100644 tests/test_inputstream.py
 create mode 100644 tests/test_key_binding.py
 create mode 100644 tests/test_layout.py
 create mode 100644 tests/test_regular_languages.py
 create mode 100644 tests/test_shortcuts.py
 create mode 100644 tests/test_style.py
 create mode 100644 tests/test_utils.py
 delete 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