[Python-modules-commits] [pycurl] branch upstream updated (4d69da9 -> 8d86b84)

Barry Warsaw barry at moszumanska.debian.org
Wed Nov 18 18:28:55 UTC 2015


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

barry pushed a change to branch upstream
in repository pycurl.

      from  4d69da9   Import pycurl_7.19.5.1.orig.tar.gz
       new  8d86b84   Import pycurl_7.19.5.3.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:
 AUTHORS                                            |   7 +-
 COPYING-MIT                                        |   2 +-
 ChangeLog                                          | 101 +++++-
 INSTALL.rst                                        |  36 ++
 MANIFEST.in                                        |   3 +
 Makefile                                           |  18 +-
 PKG-INFO                                           |   2 +-
 README.rst                                         |   2 +-
 RELEASE-NOTES.rst                                  |  26 ++
 doc/callbacks.rst                                  |  72 +++-
 doc/conf.py                                        |   6 +-
 doc/curlmultiobject.rst                            |   6 +
 doc/docstrings/curl_setopt.rst                     |   5 +-
 doc/docstrings/multi_assign.rst                    |   7 +
 doc/docstrings/multi_setopt.rst                    |  38 ++
 doc/docstrings/multi_socket_action.rst             |   5 +-
 doc/docstrings/multi_timeout.rst                   |   6 +
 doc/files.rst                                      |  42 +--
 doc/quickstart.rst                                 |  69 ++++
 doc/unicode.rst                                    |   9 +-
 examples/basicfirst.py                             |   7 +-
 examples/linksys.py                                |  14 +-
 examples/quickstart/file_upload_buffer.py          |  18 +
 examples/quickstart/file_upload_real.py            |  18 +
 examples/quickstart/file_upload_real_fancy.py      |  22 ++
 examples/retriever-multi.py                        |   1 -
 examples/retriever.py                              |   7 +-
 examples/sfquery.py                                |   2 +-
 examples/smtp.py                                   |   6 +
 examples/tests/test_gtk.py                         |   1 -
 examples/xmlrpc_curl.py                            |  12 +-
 python/curl/__init__.py                            |   1 -
 requirements-dev-2.4.txt                           |   1 +
 requirements-dev.txt => requirements-dev-3.1.txt   |   3 +
 requirements-dev.txt                               |   2 +
 setup.py                                           | 233 ++++++++----
 src/Makefile                                       |  19 -
 src/docstrings.c                                   |  66 +++-
 src/docstrings.h                                   |   3 +
 src/easy.c                                         | 109 ++++--
 src/module.c                                       |  97 +++--
 src/multi.c                                        |  10 +-
 src/oscompat.c                                     |  10 +-
 src/pycurl.h                                       |  31 +-
 src/pythoncompat.c                                 |  44 +++
 src/threadsupport.c                                |   4 +-
 tests/__init__.py                                  |   2 +
 tests/app.py                                       |  14 +-
 tests/curl_object_test.py                          |   4 +-
 tests/debug_test.py                                |  31 +-
 tests/ext/test-suite.sh                            |   2 +
 tests/fake-curl/libcurl/Makefile                   |  15 +
 tests/fake-curl/libcurl/with_gnutls.c              |  29 ++
 tests/fake-curl/libcurl/with_nss.c                 |  29 ++
 tests/fake-curl/libcurl/with_openssl.c             |  29 ++
 tests/fake-curl/libcurl/with_unknown_ssl.c         |  29 ++
 tests/fake-curl/libcurl/without_ssl.c              |  29 ++
 tests/ftp_test.py                                  |   8 +-
 tests/getinfo_test.py                              |   2 +
 tests/header_test.py                               |   7 +-
 tests/internals_test.py                            |   2 +-
 tests/matrix.py                                    |   2 +-
 tests/matrix/openssl-1.0.1e-fix_pod_syntax-1.patch | 393 +++++++++++++++++++++
 tests/memory_mgmt_test.py                          |  41 ++-
 tests/multi_memory_mgmt_test.py                    |   6 +-
 tests/multi_option_constants_test.py               |   7 +
 tests/multi_socket_select_test.py                  |   2 +-
 tests/multi_test.py                                |   4 +-
 tests/option_constants_test.py                     |  57 ++-
 tests/pause_test.py                                |   2 +
 tests/post_test.py                                 |  80 ++++-
 tests/procmgr.py                                   |   6 +-
 tests/pycurl_object_test.py                        |   9 +-
 tests/reload_test.py                               |   1 -
 tests/reset_test.py                                |  30 +-
 tests/run-quickstart.sh                            |  38 ++
 tests/run.sh                                       |  24 ++
 tests/seek_function_test.py                        |   6 +-
 tests/setopt_lifecycle_test.py                     |   1 -
 tests/setopt_unicode_test.py                       |   4 -
 tests/setup_test.py                                |  99 +++++-
 tests/share_test.py                                |   8 +-
 tests/socket_open_test.py                          |   4 -
 tests/util.py                                      |  39 +-
 tests/write_cb_bogus_test.py                       |   1 -
 winbuild.py                                        | 292 +++++++++++----
 86 files changed, 2196 insertions(+), 395 deletions(-)
 create mode 100644 doc/docstrings/multi_assign.rst
 create mode 100644 doc/docstrings/multi_setopt.rst
 create mode 100644 doc/docstrings/multi_timeout.rst
 create mode 100644 examples/quickstart/file_upload_buffer.py
 create mode 100644 examples/quickstart/file_upload_real.py
 create mode 100644 examples/quickstart/file_upload_real_fancy.py
 copy requirements-dev.txt => requirements-dev-3.1.txt (55%)
 delete mode 100644 src/Makefile
 create mode 100644 tests/fake-curl/libcurl/Makefile
 create mode 100644 tests/fake-curl/libcurl/with_gnutls.c
 create mode 100644 tests/fake-curl/libcurl/with_nss.c
 create mode 100644 tests/fake-curl/libcurl/with_openssl.c
 create mode 100644 tests/fake-curl/libcurl/with_unknown_ssl.c
 create mode 100644 tests/fake-curl/libcurl/without_ssl.c
 create mode 100644 tests/matrix/openssl-1.0.1e-fix_pod_syntax-1.patch
 create mode 100755 tests/run-quickstart.sh
 create mode 100755 tests/run.sh

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



More information about the Python-modules-commits mailing list