This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author py.user
Recipients py.user
Date 2013-01-08.23:37:01
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1357688221.9.0.622857187739.issue16901@psf.upfronthosting.co.za>
In-reply-to
Content
>>> import http.cookiejar
>>> cjf = http.cookiejar.FileCookieJar()
>>> cjf.load('file.txt')
Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
  File "/usr/local/lib/python3.3/http/cookiejar.py", line 1767, in load
    self._really_load(f, filename, ignore_discard, ignore_expires)
AttributeError: 'FileCookieJar' object has no attribute '_really_load'
>>> 
>>> 
>>> import http.cookiejar
>>> cjf = http.cookiejar.FileCookieJar('file.txt')
>>> cjf.load()
Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
  File "/usr/local/lib/python3.3/http/cookiejar.py", line 1767, in load
    self._really_load(f, filename, ignore_discard, ignore_expires)
AttributeError: 'FileCookieJar' object has no attribute '_really_load'
>>>
>>> 
>>> cjf.revert()
Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
  File "/usr/local/lib/python3.3/http/cookiejar.py", line 1789, in revert
    self.load(filename, ignore_discard, ignore_expires)
  File "/usr/local/lib/python3.3/http/cookiejar.py", line 1767, in load
    self._really_load(f, filename, ignore_discard, ignore_expires)
AttributeError: 'FileCookieJar' object has no attribute '_really_load'
>>>
History
Date User Action Args
2013-01-08 23:37:01py.usersetrecipients: + py.user
2013-01-08 23:37:01py.usersetmessageid: <1357688221.9.0.622857187739.issue16901@psf.upfronthosting.co.za>
2013-01-08 23:37:01py.userlinkissue16901 messages
2013-01-08 23:37:01py.usercreate