~ubuntu-branches/ubuntu/trusty/python-django/trusty

« back to all changes in this revision

Viewing changes to django/test/client.py

  • Committer: Package Import Robot
  • Author(s): Luke Faraone
  • Date: 2013-12-12 15:46:01 UTC
  • mfrom: (1.1.26) (4.4.32 sid)
  • Revision ID: package-import@ubuntu.com-20131212154601-k236saafzyyuwkje
Tags: 1.6.1-1
* New upstream version.
* Fix broken encoding in translations attribution. (Closes: #729194)

Show diffs side-by-side

added added

removed removed

Lines of Context:
595
595
        else:
596
596
            request.session = engine.SessionStore()
597
597
        logout(request)
 
598
        self.cookies = SimpleCookie()
598
599
 
599
600
    def _handle_redirects(self, response, **extra):
600
601
        "Follows any redirects by requesting responses from the server using GET."