Changes between Initial Version and Version 3 of Ticket #28796


Ignore:
Timestamp:
Nov 14, 2017, 1:16:37 PM (7 years ago)
Author:
Nick
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #28796

    • Property Component UncategorizedUtilities
    • Property Summary urlsafe_base64_encode broken on Django 2.0django.utils.http.urlsafe_base64_encode() broken in Django 2.0
    • Property Type UncategorizedBug
  • Ticket #28796 – Description

    initial v3  
    1111
    1212which seems less 'urlsafe', as the quotes and the 'b' are added into the url. Shouldn't urlsafe_base64_encode now return a string, if bytes in urls now retain the quotes?
     13
     14I have created a full project which reproduces the bug here:
     15
     16https://github.com/NAThompson/urlsafe_bug
     17
     18To reproduce the bug, type:
     19
     20$ ./manage.py shell
     21>>> import reproduce
     22
Back to Top