Changes between Initial Version and Version 1 of Ticket #29576


Ignore:
Timestamp:
Jul 18, 2018, 8:59:47 PM (6 years ago)
Author:
Thng Kai Yuan
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #29576 – Description

    initial v1  
    1 The existing implementation wrongly constructs cookies into:
     1The bug exists at:
     2https://github.com/django/django/blob/master/django/test/client.py#L280
     3
     4This existing implementation wrongly constructs cookies into:
    25' sessionid=helloworld; Domain=None; expires=None; Max-Age=None; Path=/'
    36
    4 For the given example, this fix will correct the construction to be:
     7For the given example, a fix will correct the construction to be:
    58'sessionid=helloworld'
Back to Top