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

Fixed #19810 -- MemcachedCache now uses pickle.HIGHEST_PROTOCOL

This commit is contained in:
Bas Peschier
2013-02-24 13:36:04 +01:00
committed by Aymeric Augustin
parent d7e835f76d
commit 5a9b2bce24
3 changed files with 23 additions and 0 deletions

View File

@@ -89,6 +89,9 @@ Minor features
:class:`~django.http.HttpResponsePermanentRedirect` now provide an ``url``
attribute (equivalent to the URL the response will redirect to).
* The ``MemcachedCache`` cache backend now uses the latest :mod:`pickle`
protocol available.
* Added the :attr:`django.db.models.ForeignKey.db_constraint`
option.