urllib2 => httplib
authorKenneth Reitz <me@kennethreitz.com>
Thu, 13 Oct 2011 23:41:40 +0000 (19:41 -0400)
committerKenneth Reitz <me@kennethreitz.com>
Thu, 13 Oct 2011 23:41:40 +0000 (19:41 -0400)
README.rst

index 3f6455e..30fa8f1 100644 (file)
@@ -27,7 +27,7 @@ See `the same code, without Requests <https://gist.github.com/973705>`_.
 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 urllib2, but it does
+response data in the same way. It's powered by httplib, but it does
 all the hard work and crazy hacks for you.