[Python-modules-commits] [prompt-toolkit] branch master updated (2da93da -> 5ef31b1)

Scott Kitterman kitterman at moszumanska.debian.org
Sun Apr 3 02:02:51 UTC 2016


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

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

      from  2da93da   Fixed VCS URL (https)
       new  c41b557   record new upstream branch created by importing prompt-toolkit_0.60.orig.tar.gz
       new  a26a5f5   Import prompt-toolkit_0.60.orig.tar.gz
       new  01398e2   [ Ondřej Nový ] [ Scott Kitterman ] New upstream release
       new  5ef31b1   Update debian/changelog for new release.

The 4 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                                          | 102 +++
 PKG-INFO                                           |  32 +-
 README.rst                                         |  13 +-
 debian/.git-dpm                                    |  14 +-
 debian/changelog                                   |   8 +-
 ...d-compatibility-stubs-for-renamed-functio.patch |  22 -
 debian/patches/series                              |   1 -
 examples/autocompletion.py                         |   7 +-
 examples/bottom-toolbar.py                         |   6 +-
 examples/clock-input.py                            |   4 +-
 examples/colored-prompt.py                         |  10 +-
 examples/full-screen-layout.py                     |   7 +-
 examples/get-multiline-input.py                    |  12 +-
 examples/html-input.py                             |   1 +
 examples/print-tokens.py                           |  25 +
 examples/regular-language.py                       |   7 +-
 examples/rprompt.py                                |  29 +
 examples/switch-between-vi-emacs.py                |  20 +-
 prompt_toolkit.egg-info/PKG-INFO                   |  32 +-
 prompt_toolkit.egg-info/SOURCES.txt                |  14 +-
 prompt_toolkit.egg-info/requires.txt               |   1 -
 prompt_toolkit/__init__.py                         |   3 +-
 prompt_toolkit/application.py                      |   5 +-
 prompt_toolkit/buffer.py                           |  54 +-
 prompt_toolkit/cache.py                            |  86 +++
 prompt_toolkit/contrib/regular_languages/lexer.py  |  28 +-
 prompt_toolkit/document.py                         | 268 ++++++--
 prompt_toolkit/eventloop/asyncio_win32.py          |   2 +
 prompt_toolkit/eventloop/win32.py                  |  21 +-
 prompt_toolkit/filters/base.py                     |  33 +-
 prompt_toolkit/filters/types.py                    |  56 +-
 prompt_toolkit/filters/utils.py                    |   8 +-
 prompt_toolkit/history.py                          |   3 +-
 prompt_toolkit/interface.py                        | 101 ++-
 prompt_toolkit/key_binding/bindings/basic.py       |  13 +-
 prompt_toolkit/key_binding/bindings/emacs.py       |  39 +-
 prompt_toolkit/key_binding/bindings/scroll.py      |  93 ++-
 prompt_toolkit/key_binding/bindings/vi.py          |  74 +-
 prompt_toolkit/key_binding/manager.py              |   2 +-
 prompt_toolkit/key_binding/registry.py             |   1 +
 prompt_toolkit/keys.py                             |   8 +
 prompt_toolkit/layout/__init__.py                  |   2 +-
 prompt_toolkit/layout/containers.py                | 741 +++++++++++++++------
 prompt_toolkit/layout/controls.py                  | 658 +++++++++---------
 prompt_toolkit/layout/highlighters.py              | 209 ------
 prompt_toolkit/layout/lexers.py                    | 261 +++++++-
 prompt_toolkit/layout/margins.py                   | 195 ++++--
 prompt_toolkit/layout/menus.py                     | 141 ++--
 prompt_toolkit/layout/processors.py                | 446 +++++++------
 prompt_toolkit/layout/prompt.py                    |  20 +-
 prompt_toolkit/layout/screen.py                    | 115 +---
 prompt_toolkit/layout/toolbars.py                  |  21 +-
 prompt_toolkit/layout/utils.py                     |  45 +-
 prompt_toolkit/output.py                           |   4 +
 prompt_toolkit/renderer.py                         |  14 +-
 prompt_toolkit/shortcuts.py                        | 187 ++++--
 prompt_toolkit/styles.py                           | 221 ------
 prompt_toolkit/styles/__init__.py                  |  20 +
 prompt_toolkit/styles/base.py                      |  86 +++
 prompt_toolkit/styles/defaults.py                  |  83 +++
 prompt_toolkit/styles/from_dict.py                 | 143 ++++
 prompt_toolkit/styles/from_pygments.py             |  71 ++
 prompt_toolkit/terminal/conemu_output.py           |   3 +-
 prompt_toolkit/terminal/vt100_input.py             |  25 +
 prompt_toolkit/terminal/vt100_output.py            | 317 ++++++---
 prompt_toolkit/terminal/win32_input.py             |  19 +-
 prompt_toolkit/terminal/win32_output.py            |  91 ++-
 prompt_toolkit/token.py                            |  38 ++
 prompt_toolkit/utils.py                            |  39 +-
 prompt_toolkit/validation.py                       |   2 +-
 setup.cfg                                          |   2 +-
 setup.py                                           |  32 +-
 tests/filter_tests.py                              | 153 +++++
 tests/layout_tests/__init__.py                     |   2 +-
 tests/run_tests.py                                 |   7 +-
 tests/screen_tests/__init__.py                     |  96 ---
 tests/style_tests.py                               |  41 ++
 77 files changed, 3693 insertions(+), 2122 deletions(-)
 delete mode 100644 debian/patches/0001-Add-backward-compatibility-stubs-for-renamed-functio.patch
 delete mode 100644 debian/patches/series
 create mode 100755 examples/print-tokens.py
 create mode 100755 examples/rprompt.py
 mode change 100644 => 100755 examples/switch-between-vi-emacs.py
 create mode 100644 prompt_toolkit/cache.py
 delete mode 100644 prompt_toolkit/layout/highlighters.py
 delete mode 100644 prompt_toolkit/styles.py
 create mode 100644 prompt_toolkit/styles/__init__.py
 create mode 100644 prompt_toolkit/styles/base.py
 create mode 100644 prompt_toolkit/styles/defaults.py
 create mode 100644 prompt_toolkit/styles/from_dict.py
 create mode 100644 prompt_toolkit/styles/from_pygments.py
 create mode 100644 prompt_toolkit/token.py
 mode change 100644 => 100755 setup.py
 create mode 100644 tests/filter_tests.py
 delete mode 100644 tests/screen_tests/__init__.py
 create mode 100644 tests/style_tests.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