From e185aec92072ead19b03b9cbb86764b607c58a81 Mon Sep 17 00:00:00 2001 From: Andrey Petrov Date: Sat, 7 Jan 2012 15:17:06 -0800 Subject: [PATCH 1/2] Adding a humble mention of urllib3 to the Requests intros. --- README.rst | 5 +++-- docs/index.rst | 2 +- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/README.rst b/README.rst index 3ee4cd02..bc6c2917 100644 --- a/README.rst +++ b/README.rst @@ -27,8 +27,9 @@ See `the same code, without Requests `_. Requests allow you to send **HEAD**, **GET**, **POST**, **PUT**, **PATCH**, and **DELETE** HTTP requests. You can add headers, form data, multipart files, and parameters with simple Python dictionaries, and access the -response data in the same way. It's powered by httplib, but it does -all the hard work and crazy hacks for you. +response data in the same way. It's powered by httplib and `urllib3 +`_, but it does all the hard work and crazy +hacks for you. Features diff --git a/docs/index.rst b/docs/index.rst index 78658cef..d7f93fd8 100644 --- a/docs/index.rst +++ b/docs/index.rst @@ -28,7 +28,7 @@ Things shouldn’t be this way. Not in Python. See `the same code, without Requests `_. -Requests takes all of the work out of Python HTTP — making your integration with web services seamless. There's no need to manually add query strings to your URLs, or to form-encode your POST data. +Requests takes all of the work out of Python HTTP — making your integration with web services seamless. There's no need to manually add query strings to your URLs, or to form-encode your POST data. The core of Requests is powered by `urllib3 `_ which is included as part of the Requests package. Testimonials From 534cdd7587e5b8fe410db24094229718a630bf66 Mon Sep 17 00:00:00 2001 From: Andrey Petrov Date: Sat, 7 Jan 2012 15:17:14 -0800 Subject: [PATCH 2/2] Rewriting history for correctness. --- HISTORY.rst | 1 + 1 file changed, 1 insertion(+) diff --git a/HISTORY.rst b/HISTORY.rst index d460edb4..068ac5be 100644 --- a/HISTORY.rst +++ b/HISTORY.rst @@ -87,6 +87,7 @@ History * OPTION method * Async pool size throttling * File uploads send real names +* Vendored in urllib3 0.7.6 (2011-11-07) ++++++++++++++++++