Fix accidental-merge docstrings
authorKenneth Reitz <me@kennethreitz.com>
Sun, 9 Oct 2011 12:25:17 +0000 (08:25 -0400)
committerKenneth Reitz <me@kennethreitz.com>
Sun, 9 Oct 2011 12:26:42 +0000 (08:26 -0400)
requests/models.py

index 2ac8c33a6ce8ce8904137262f0dbed584c7ffda1..98cc4b308f04d5620280e9c3c98bf0118bfdd567 100644 (file)
@@ -4,6 +4,7 @@
 requests.models
 ~~~~~~~~~~~~~~~
 
+This module contains the primary classes that power Requests.
 """
 
 import urllib
@@ -243,7 +244,10 @@ class Request(object):
 
 
     def send(self, anyway=False):
-        """Sends the shit."""
+        """Sends the HTTP Request. Populates `Request.response`.
+
+        Returns True if everything went according to plan.
+        """
 
         # Safety check.
         self._checks()