[Python-modules-commits] [twisted] branch master updated (3266457 -> 20b75a9)

Free Ekanayaka freee at moszumanska.debian.org
Sat Nov 26 12:01:42 UTC 2016


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

freee pushed a change to branch master
in repository twisted.

      from  3266457   Update changelog for 16.5.0-1 release
       new  805e9d3   New upstream version 16.6.0
       new  8e2384c   Merge tag 'upstream/16.6.0'
       new  cb9d77e   Use 'python -m twisted.trial' instead of 'trial' to invoke tests
       new  b2dc1f2   Add sort-option-keys patch to fix failing test
       new  44fa14b   Fix test writing to stderr
       new  20b75a9   Update changelog for 16.6.0-1 release

The 6 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:
 NEWS                                               |  107 +
 PKG-INFO                                           |    2 +-
 README.rst                                         |    7 +-
 debian/changelog                                   |    9 +
 debian/patches/0008-sort-option-keys.patch         |   26 +
 .../patches/0009-no-stderr-in-test_ckeygen.patch   |   35 +
 debian/patches/series                              |    2 +
 debian/tests/unit-tests-2                          |    2 +-
 debian/tests/unit-tests-3                          |    2 +-
 .../development/policy/compatibility-policy.rst    |    4 +-
 docs/historic/Quotes/Twisted-16.6                  |   10 +
 docs/installation/howto/optional.rst               |    2 -
 src/Twisted.egg-info/PKG-INFO                      |    2 +-
 src/Twisted.egg-info/SOURCES.txt                   |    3 +
 src/Twisted.egg-info/requires.txt                  |   16 +-
 src/twisted/__main__.py                            |   16 +
 src/twisted/_version.py                            |    2 +-
 src/twisted/conch/scripts/cftp.py                  |    3 +-
 src/twisted/conch/scripts/ckeygen.py               |   69 +-
 src/twisted/conch/ssh/common.py                    |   61 +-
 src/twisted/conch/ssh/keys.py                      |  246 ++-
 src/twisted/conch/test/keydata.py                  |   67 +
 src/twisted/conch/test/test_ckeygen.py             |  141 +-
 src/twisted/conch/test/test_keys.py                |  173 ++
 src/twisted/conch/test/test_ssh.py                 |   61 +-
 src/twisted/internet/_sslverify.py                 |    3 +
 src/twisted/internet/base.py                       |    4 +
 src/twisted/internet/defer.py                      |   55 +-
 .../internet/iocpreactor/iocpsupport/acceptex.pxi  |    8 +-
 .../internet/iocpreactor/iocpsupport/connectex.pxi |    8 +-
 .../internet/iocpreactor/iocpsupport/iocpsupport.c | 2144 +++++++++++---------
 .../iocpreactor/iocpsupport/iocpsupport.pyx        |   67 +-
 .../internet/iocpreactor/iocpsupport/wsarecv.pxi   |   14 +-
 .../internet/iocpreactor/iocpsupport/wsasend.pxi   |    7 +-
 src/twisted/internet/protocol.py                   |    6 +
 src/twisted/internet/serialport.py                 |    2 +
 src/twisted/internet/ssl.py                        |    4 +-
 src/twisted/internet/test/_awaittests.py.3only     |   49 +-
 src/twisted/internet/test/_yieldfromtests.py.3only |   42 +-
 src/twisted/internet/test/connectionmixins.py      |    2 +-
 src/twisted/internet/test/test_unix.py             |    2 +-
 src/twisted/internet/udp.py                        |    2 +
 src/twisted/internet/wxsupport.py                  |   12 +-
 src/twisted/pair/tuntap.py                         |    2 +-
 src/twisted/persisted/dirdbm.py                    |  224 +-
 src/twisted/protocols/ftp.py                       |    4 +-
 src/twisted/protocols/postfix.py                   |    4 +-
 src/twisted/protocols/sip.py                       |  291 ++-
 src/twisted/python/_setup.py                       |   43 +-
 src/twisted/python/compat.py                       |   19 +
 src/twisted/python/components.py                   |    3 +
 src/twisted/python/log.py                          |    7 +
 src/twisted/python/test/test_release.py            |   24 +
 src/twisted/python/test/test_setup.py              |   14 +-
 src/twisted/test/test_defer.py                     |   26 +-
 src/twisted/test/test_dirdbm.py                    |  153 +-
 src/twisted/test/test_main.py                      |   47 +
 src/twisted/test/test_nooldstyle.py                |   11 +
 src/twisted/test/test_postfix.py                   |    2 +-
 src/twisted/test/test_sip.py                       |   77 +-
 src/twisted/web/_http2.py                          |   28 +-
 src/twisted/web/_newclient.py                      |   13 +
 src/twisted/web/test/test_http2.py                 |   92 +-
 src/twisted/web/test/test_newclient.py             |  132 ++
 src/twisted/words/im/interfaces.py                 |   36 +
 src/twisted/words/im/ircsupport.py                 |   82 +-
 src/twisted/words/protocols/irc.py                 |   59 +-
 src/twisted/words/service.py                       |  173 +-
 src/twisted/words/test/test_irc.py                 |  145 +-
 src/twisted/words/test/test_irc_service.py         |  100 +-
 src/twisted/words/test/test_ircsupport.py          |  218 +-
 src/twisted/words/test/test_service.py             |   95 +-
 tox.ini                                            |   35 +-
 73 files changed, 3811 insertions(+), 1847 deletions(-)
 create mode 100644 debian/patches/0008-sort-option-keys.patch
 create mode 100644 debian/patches/0009-no-stderr-in-test_ckeygen.patch
 create mode 100644 docs/historic/Quotes/Twisted-16.6
 create mode 100644 src/twisted/__main__.py
 mode change 100644 => 100755 src/twisted/internet/iocpreactor/iocpsupport/iocpsupport.c
 create mode 100644 src/twisted/test/test_main.py

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



More information about the Python-modules-commits mailing list