From: Kenneth Reitz Date: Sat, 19 Nov 2011 20:43:46 +0000 (-0500) Subject: use monkey patched cookies X-Git-Tag: v0.8.2~5 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=8ffe17cb09aa1e5a2018248dccab500c33d2fd58;p=services%2Fpython-requests.git use monkey patched cookies --- diff --git a/requests/models.py b/requests/models.py index 808d336..4951198 100644 --- a/requests/models.py +++ b/requests/models.py @@ -420,7 +420,7 @@ class Request(object): if 'cookie' not in self.headers: # Simple cookie with our dict. - c = SimpleCookie() + c = oreos.monkeys.SimpleCookie() for (k, v) in self.cookies.items(): c[k] = v