From: Kenneth Reitz Date: Sun, 9 Oct 2011 12:25:17 +0000 (-0400) Subject: Fix accidental-merge docstrings X-Git-Tag: v0.8.0~94^2~21 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=78b5d9ed45d3f969e38e6772501da446db1efd59;p=services%2Fpython-requests.git Fix accidental-merge docstrings --- diff --git a/requests/models.py b/requests/models.py index 2ac8c33..98cc4b3 100644 --- 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()