From: Josh Imhoff Date: Tue, 22 May 2012 00:27:47 +0000 (-0400) Subject: Removed print statements left over from debugging. X-Git-Tag: v0.13.0~10^2 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=0eb0b89431d467197b361e4eab3c3399ff07b22e;p=services%2Fpython-requests.git Removed print statements left over from debugging. --- diff --git a/requests/cookies.py b/requests/cookies.py index 4eab64c..85726b0 100644 --- a/requests/cookies.py +++ b/requests/cookies.py @@ -222,8 +222,6 @@ class RequestsCookieJar(cookielib.CookieJar, collections.MutableMapping): Python dict of name-value pairs of cookies that meet the requirements.""" dictionary = {} for cookie in iter(self): - print path - print cookie.path if (domain == None or cookie.domain == domain) and (path == None or cookie.path == path): dictionary[cookie.name] = cookie.value