From 78b5d9ed45d3f969e38e6772501da446db1efd59 Mon Sep 17 00:00:00 2001 From: Kenneth Reitz Date: Sun, 9 Oct 2011 08:25:17 -0400 Subject: [PATCH] Fix accidental-merge docstrings --- requests/models.py | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/requests/models.py b/requests/models.py index 2ac8c33a..98cc4b30 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()