[Python-modules-commits] [pycurl] 139/140: Import pycurl 7.19.5-1
Barry Warsaw
barry at moszumanska.debian.org
Wed Oct 1 21:45:19 UTC 2014
This is an automated email from the git hooks/post-receive script.
barry pushed a commit to branch master
in repository pycurl.
commit 741b0eb63cdddf1daa6ca0a31368d0440f71d4db
Merge: e7a1f23 16c78a4
Author: Barry Warsaw <barry at python.org>
Date: Wed Oct 1 16:44:17 2014 -0400
Import pycurl 7.19.5-1
AUTHORS | 3 +
ChangeLog | 70 +-
INSTALL.rst | 76 +-
MANIFEST.in | 24 +-
Makefile | 178 +-
PKG-INFO | 2 +-
README.rst | 34 +-
RELEASE-NOTES.rst | 19 +
debian/.git-dpm | 14 +-
debian/TODO | 1 +
debian/changelog | 51 +-
debian/control | 54 +-
debian/copyright | 2 +-
debian/patches/10_setup.py.patch | 14 +-
debian/patches/20_build_doc_for_debian.patch | 34 +-
...-pycurl.doc-base => python-pycurl-doc.doc-base} | 6 +-
debian/python-pycurl.dirs | 1 -
debian/rules | 22 +-
doc/callbacks.rst | 43 +-
doc/conf.py | 182 +
doc/curl.rst | 10 +
doc/curlmultiobject.rst | 106 +-
doc/curlobject.rst | 95 +-
doc/curlshareobject.rst | 29 +-
doc/docstrings/curl.rst | 9 +
doc/docstrings/curl_close.rst | 10 +
doc/docstrings/curl_errstr.rst | 5 +
doc/docstrings/curl_getinfo.rst | 36 +
doc/docstrings/curl_pause.rst | 12 +
doc/docstrings/curl_perform.rst | 10 +
doc/docstrings/curl_reset.rst | 8 +
doc/docstrings/curl_setopt.rst | 100 +
doc/docstrings/curl_unsetopt.rst | 15 +
doc/docstrings/multi.rst | 4 +
doc/docstrings/multi_add_handle.rst | 11 +
doc/docstrings/multi_close.rst | 8 +
doc/docstrings/multi_fdset.rst | 26 +
doc/docstrings/multi_info_read.rst | 13 +
doc/docstrings/multi_perform.rst | 6 +
doc/docstrings/multi_remove_handle.rst | 11 +
doc/docstrings/multi_select.rst | 24 +
doc/docstrings/multi_socket_action.rst | 4 +
doc/docstrings/multi_socket_all.rst | 4 +
doc/docstrings/pycurl_global_cleanup.rst | 7 +
doc/docstrings/pycurl_global_init.rst | 10 +
doc/docstrings/pycurl_module.rst | 13 +
doc/docstrings/pycurl_version_info.rst | 18 +
doc/docstrings/share.rst | 5 +
doc/docstrings/share_close.rst | 10 +
.../share_setopt.rst} | 12 +-
doc/files.rst | 4 +-
doc/index.rst | 45 +
doc/install.rst | 1 +
doc/pycurl.rst | 120 +-
doc/quickstart.rst | 279 ++
doc/release-notes.rst | 1 +
doc/release-process.rst | 5 +-
doc/static/favicon.ico | Bin 0 -> 318 bytes
doc/unicode.rst | 352 +-
examples/quickstart/follow_redirect.py | 13 +
examples/quickstart/form_post.py | 25 +
examples/quickstart/get.py | 24 +
examples/quickstart/get_python2.py | 20 +
examples/quickstart/get_python3.py | 19 +
examples/quickstart/response_headers.py | 68 +
examples/quickstart/response_info.py | 23 +
examples/quickstart/write_file.py | 14 +
examples/tests/test_build_config.py | 65 +
python/curl/__init__.py | 6 +-
requirements-dev-2.4.txt | 2 -
requirements-dev-2.5.txt | 2 -
requirements-dev.txt | 3 -
setup.py | 97 +-
src/docstrings.c | 435 ++
src/docstrings.h | 29 +
src/easy.c | 2182 +++++++++
src/module.c | 961 ++++
src/multi.c | 880 ++++
src/oscompat.c | 55 +
src/pycurl.c | 5088 --------------------
src/pycurl.h | 424 ++
src/pythoncompat.c | 84 +
src/share.c | 332 ++
src/stringcompat.c | 64 +
src/threadsupport.c | 282 ++
tests/__init__.py | 8 -
tests/app.py | 113 -
tests/appmanager.py | 56 -
tests/certinfo_test.py | 67 -
tests/certs/server.crt | 14 -
tests/certs/server.key | 15 -
tests/debug_test.py | 52 -
tests/default_write_function_test.py | 84 -
tests/easy_test.py | 16 -
tests/error_test.py | 82 -
tests/ext/test-lib.sh | 69 -
tests/ext/test-suite.sh | 25 -
tests/fake-curl/curl-config-empty | 15 -
tests/fake-curl/curl-config-libs-and-static-libs | 17 -
tests/fake-curl/curl-config-ssl-feature-only | 18 -
tests/fake-curl/curl-config-ssl-in-libs | 14 -
tests/fake-curl/curl-config-ssl-in-static-libs | 17 -
tests/ftp_test.py | 53 -
tests/functools_backport.py | 58 -
tests/getinfo_test.py | 52 -
tests/global_init_test.py | 31 -
tests/header_function_test.py | 49 -
tests/header_test.py | 49 -
tests/internals_test.py | 165 -
tests/matrix.py | 180 -
.../curl-7.19.0-sslv2-c66b0b32fba-modified.patch | 18 -
tests/matrix/nose-1.3.0-python24.patch | 68 -
tests/matrix/python25.patch | 67 -
tests/matrix/python30.patch | 19 -
tests/memory_mgmt_test.py | 221 -
tests/multi_option_constants_test.py | 24 -
tests/multi_socket_select_test.py | 120 -
tests/multi_socket_test.py | 97 -
tests/multi_test.py | 368 --
tests/multi_timer_test.py | 90 -
tests/option_constants_test.py | 76 -
tests/pause_test.py | 93 -
tests/post_test.py | 125 -
tests/procmgr.py | 101 -
tests/pycurl_object_test.py | 125 -
tests/read_callback_test.py | 126 -
tests/relative_url_test.py | 22 -
tests/reset_test.py | 68 -
tests/resolve_test.py | 26 -
tests/runwsgi.py | 121 -
tests/seek_function_test.py | 77 -
tests/setopt_lifecycle_test.py | 58 -
tests/setopt_unicode_test.py | 41 -
tests/setup_test.py | 103 -
tests/share_test.py | 60 -
tests/socket_open_test.py | 48 -
tests/unset_range_test.py | 51 -
tests/user_agent_string_test.py | 27 -
tests/util.py | 162 -
tests/version_comparison_test.py | 15 -
tests/version_test.py | 13 -
tests/vsftpd.conf | 13 -
tests/write_abort_test.py | 40 -
tests/write_cb_bogus_test.py | 47 -
tests/write_to_file_test.py | 94 -
tests/write_to_stringio_test.py | 41 -
winbuild.py | 54 +-
147 files changed, 7840 insertions(+), 9863 deletions(-)
diff --cc debian/.git-dpm
index 89d6c64,0000000..69fbbe4
mode 100644,000000..100644
--- a/debian/.git-dpm
+++ b/debian/.git-dpm
@@@ -1,8 -1,0 +1,8 @@@
+# see git-dpm(1) from git-dpm package
- fee49d6404d03c2c05dc7267db9e0f4d6bac826f
- fee49d6404d03c2c05dc7267db9e0f4d6bac826f
- 8e6f1b9f15258f380b8f8d7252c8c1a6dfe32900
- 8e6f1b9f15258f380b8f8d7252c8c1a6dfe32900
- pycurl_7.19.3.1.orig.tar.gz
- fd82722e2abc108b7bd469ab6a743cebe8cd8f78
- 116687
++NONE
++36f7b931a1363416d3256b98bf59474c37007fc1
++31bfa35a9b88bd353aeb97784ac8de4c49755f08
++31bfa35a9b88bd353aeb97784ac8de4c49755f08
++pycurl_7.19.5.orig.tar.gz
++ec36d55a99db9a49fede3bfa27ee16a4f5dc7bef
++107580
--
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