[Python-modules-commits] [pexpect] branch master updated (f55bcd1 -> cf7854f)

Javier Merino Cacho vicho at moszumanska.debian.org
Sun Nov 1 19:22:01 UTC 2015


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

vicho pushed a change to branch master
in repository pexpect.

      from  f55bcd1   Update Vcs fields for git migration
      adds  f079872   Import pexpect_4.0.1.orig.tar.gz
       new  721acc8   Merge branch 'upstream'
       new  d480703   New upstream release (Closes: #744844)
       new  b8961fe   Bump standards-version to 3.9.6 (no change needed)
       new  5fbe752   Fix PyPI URL in debian/watch.  Thanks Lintian
       new  cf7854f   Build-depend on python-ptyprocess to generate the documentation properly

The 5 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:
 ANSI.py                                            |    7 -
 FSM.py                                             |    7 -
 INSTALL                                            |   48 -
 LICENSE                                            |    2 +
 PKG-INFO                                           |   12 +-
 debian/changelog                                   |   10 +
 debian/control                                     |    4 +-
 debian/watch                                       |    4 +-
 doc/FAQ.rst                                        |   43 +-
 doc/api/ANSI.rst                                   |   14 -
 doc/api/fdpexpect.rst                              |   12 +-
 doc/api/index.rst                                  |   11 +-
 doc/api/pexpect.rst                                |   32 +-
 doc/api/popen_spawn.rst                            |   24 +
 doc/api/pxssh.rst                                  |    4 +
 doc/api/replwrap.rst                               |   26 +
 doc/api/screen.rst                                 |   10 -
 doc/commonissues.rst                               |   28 +-
 doc/conf.py                                        |    4 +-
 doc/history.rst                                    |   64 +-
 doc/install.rst                                    |   10 +-
 doc/overview.rst                                   |   29 +-
 doc/requirements.txt                               |    1 +
 examples/astat.py                                  |    7 +-
 examples/cgishell.cgi                              |    4 +-
 examples/chess.py                                  |    3 +-
 examples/chess2.py                                 |    4 +-
 examples/chess3.py                                 |    3 +-
 examples/hive.py                                   |    1 -
 fdpexpect.py                                       |    7 -
 pexpect/ANSI.py                                    |   66 +-
 pexpect/__init__.py                                | 1983 +-------------------
 pexpect/async.py                                   |   72 +
 pexpect/exceptions.py                              |   35 +
 pexpect/expect.py                                  |  297 +++
 pexpect/fdpexpect.py                               |   51 +-
 pexpect/popen_spawn.py                             |  179 ++
 pexpect/psh.py                                     |  148 --
 pexpect/pty_spawn.py                               |  824 ++++++++
 pexpect/pxssh.py                                   |   28 +-
 pexpect/replwrap.py                                |  113 ++
 pexpect/run.py                                     |  157 ++
 pexpect/screen.py                                  |  109 +-
 pexpect/spawnbase.py                               |  488 +++++
 pexpect/utils.py                                   |  112 ++
 pxssh.py                                           |    7 -
 screen.py                                          |    7 -
 setup.cfg                                          |    2 +
 setup.py                                           |   26 +-
 test.env                                           |   28 -
 tests/PexpectTestCase.py                           |   76 +-
 tests/README                                       |   18 +-
 tests/depricated_test_filedescriptor.py            |    1 -
 tests/echo_w_prompt.py                             |    8 +-
 tests/echo_wait.py                                 |    4 +-
 tests/getch.py                                     |    6 +-
 tests/interact.py                                  |   20 +-
 tests/interact_unicode.py                          |   20 -
 tests/log                                          |   10 +
 tests/pexpectTest.py                               |    4 +-
 .../CSIGNALTEST/test.c                             |    0
 tests/platform_checks/README                       |    2 +
 .../test.py => platform_checks/check.py}           |    5 +-
 .../test2.py => platform_checks/check2.py}         |    4 +-
 .../check_control_terminal.py}                     |    0
 .../check_handler.py}                              |    8 +-
 .../test_read.py => platform_checks/check_read.py} |    2 +-
 .../check_signals.py}                              |    6 +-
 tests/platform_tests/README                        |    4 -
 tests/platform_tests/pexqa.py                      |   39 -
 tests/platform_tests/test_badfork.py               |   15 -
 tests/platform_tests/test_killed_pid.py            |   17 -
 tests/platform_tests/test_middle_buffer.py         |   30 -
 tests/sigwinch_report.py                           |    1 +
 tests/test_ansi.py                                 |   94 +-
 tests/test_async.py                                |   51 +
 tests/test_command_list_split.py                   |    3 +-
 tests/test_constructor.py                          |   13 +-
 tests/test_ctrl_chars.py                           |  105 +-
 tests/test_destructor.py                           |    2 +-
 tests/test_dotall.py                               |    2 +-
 tests/test_expect.py                               |  210 ++-
 tests/test_filedescriptor.py                       |   28 +-
 tests/test_interact.py                             |   95 +-
 tests/test_isalive.py                              |  119 +-
 tests/test_log.py                                  |    2 +-
 tests/test_maxcanon.py                             |  176 ++
 tests/test_misc.py                                 |  458 ++---
 tests/test_missing_command.py                      |    2 +-
 tests/test_performance.py                          |   19 +-
 tests/test_popen_spawn.py                          |  131 ++
 tests/test_psh.py                                  |   16 -
 tests/test_replwrap.py                             |  105 ++
 tests/test_repr.py                                 |   26 +
 tests/test_run.py                                  |  152 +-
 tests/test_run_out_of_pty.py                       |    2 +-
 tests/test_screen.py                               |  126 +-
 tests/test_timeout_pattern.py                      |    2 +-
 tests/test_unicode.py                              |   58 +-
 tests/test_which.py                                |  274 +++
 tests/test_winsize.py                              |   61 +-
 tests/utils.py                                     |    7 +
 tools/testall.py                                   |   89 -
 103 files changed, 4657 insertions(+), 3238 deletions(-)
 delete mode 100644 ANSI.py
 delete mode 100644 FSM.py
 delete mode 100644 INSTALL
 delete mode 100644 doc/api/ANSI.rst
 create mode 100644 doc/api/popen_spawn.rst
 create mode 100644 doc/api/replwrap.rst
 delete mode 100644 doc/api/screen.rst
 create mode 100644 doc/requirements.txt
 delete mode 100644 fdpexpect.py
 create mode 100644 pexpect/async.py
 create mode 100644 pexpect/exceptions.py
 create mode 100644 pexpect/expect.py
 create mode 100644 pexpect/popen_spawn.py
 delete mode 100644 pexpect/psh.py
 create mode 100644 pexpect/pty_spawn.py
 create mode 100644 pexpect/replwrap.py
 create mode 100644 pexpect/run.py
 create mode 100644 pexpect/spawnbase.py
 create mode 100644 pexpect/utils.py
 delete mode 100644 pxssh.py
 delete mode 100644 screen.py
 create mode 100644 setup.cfg
 delete mode 100644 test.env
 delete mode 100644 tests/interact_unicode.py
 create mode 100644 tests/log
 rename tests/{platform_tests => platform_checks}/CSIGNALTEST/test.c (100%)
 create mode 100644 tests/platform_checks/README
 rename tests/{platform_tests/test.py => platform_checks/check.py} (97%)
 rename tests/{platform_tests/test2.py => platform_checks/check2.py} (96%)
 rename tests/{platform_tests/test_control_terminal.py => platform_checks/check_control_terminal.py} (100%)
 rename tests/{platform_tests/test_handler.py => platform_checks/check_handler.py} (94%)
 rename tests/{platform_tests/test_read.py => platform_checks/check_read.py} (98%)
 rename tests/{platform_tests/test_signals.py => platform_checks/check_signals.py} (96%)
 delete mode 100644 tests/platform_tests/README
 delete mode 100644 tests/platform_tests/pexqa.py
 delete mode 100755 tests/platform_tests/test_badfork.py
 delete mode 100755 tests/platform_tests/test_killed_pid.py
 delete mode 100755 tests/platform_tests/test_middle_buffer.py
 create mode 100644 tests/test_async.py
 create mode 100644 tests/test_maxcanon.py
 create mode 100644 tests/test_popen_spawn.py
 delete mode 100644 tests/test_psh.py
 create mode 100644 tests/test_replwrap.py
 create mode 100644 tests/test_repr.py
 create mode 100644 tests/test_which.py
 create mode 100644 tests/utils.py
 delete mode 100755 tools/testall.py

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



More information about the Python-modules-commits mailing list