Changes between Initial Version and Version 1 of Ticket #29576
- Timestamp:
- Jul 18, 2018, 8:59:47 PM (6 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #29576 – Description
initial v1 1 The existing implementation wrongly constructs cookies into: 1 The bug exists at: 2 https://github.com/django/django/blob/master/django/test/client.py#L280 3 4 This existing implementation wrongly constructs cookies into: 2 5 ' sessionid=helloworld; Domain=None; expires=None; Max-Age=None; Path=/' 3 6 4 For the given example, thisfix will correct the construction to be:7 For the given example, a fix will correct the construction to be: 5 8 'sessionid=helloworld'