projects
/
services
/
python-requests.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
ba93593
)
Fix accidental-merge docstrings
author
Kenneth Reitz
<me@kennethreitz.com>
Sun, 9 Oct 2011 12:25:17 +0000
(08:25 -0400)
committer
Kenneth Reitz
<me@kennethreitz.com>
Sun, 9 Oct 2011 12:26:42 +0000
(08:26 -0400)
requests/models.py
patch
|
blob
|
history
diff --git
a/requests/models.py
b/requests/models.py
index 2ac8c33a6ce8ce8904137262f0dbed584c7ffda1..98cc4b308f04d5620280e9c3c98bf0118bfdd567 100644
(file)
--- a/
requests/models.py
+++ b/
requests/models.py
@@
-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()