From 0eb0b89431d467197b361e4eab3c3399ff07b22e Mon Sep 17 00:00:00 2001 From: Josh Imhoff Date: Mon, 21 May 2012 20:27:47 -0400 Subject: [PATCH] Removed print statements left over from debugging. --- requests/cookies.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/requests/cookies.py b/requests/cookies.py index 4eab64c9..85726b06 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