1
0
mirror of https://github.com/django/django.git synced 2025-11-07 07:15:35 +00:00

[1.7.x] Fixed #23333 -- Made urlsafe_base64_decode() return proper type on Python 3.

Backport of 03d89168a2 from master
This commit is contained in:
Ian Foote
2014-08-21 12:53:22 +01:00
committed by Tim Graham
parent b2f7b517e5
commit d830665007
3 changed files with 11 additions and 2 deletions

View File

@@ -103,3 +103,6 @@ Bugfixes
* Fixed missing ``get_or_create`` and ``update_or_create`` on related managers
causing ``IntegrityError`` (:ticket:`23611`).
* Made :func:`~django.utils.http.urlsafe_base64_decode` return the proper
type (byte string) on Python 3 (:ticket:`23333`).