Removed print statements left over from debugging.
authorJosh Imhoff <joshimhoff13@gmail.com>
Tue, 22 May 2012 00:27:47 +0000 (20:27 -0400)
committerJosh Imhoff <joshimhoff13@gmail.com>
Tue, 22 May 2012 00:27:47 +0000 (20:27 -0400)
requests/cookies.py

index 4eab64c..85726b0 100644 (file)
@@ -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