diff options
| author | Aymeric Augustin <aymeric.augustin@m4x.org> | 2012-03-31 12:54:40 +0000 |
|---|---|---|
| committer | Aymeric Augustin <aymeric.augustin@m4x.org> | 2012-03-31 12:54:40 +0000 |
| commit | bfbe4dfff749c27cda528bf632f8dda28a48e774 (patch) | |
| tree | d5ed3794b5515c71e0f7c841004b84bfaa051d24 | |
| parent | d38690796cd5c046c0b141174737b7615c143bb1 (diff) | |
Removed deprecated CompatCookie.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@17843 bcc190cf-cafb-0310-a4f2-bffc1f526a37
| -rw-r--r-- | django/http/__init__.py | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/django/http/__init__.py b/django/http/__init__.py index 2f3392f449..577f1d8170 100644 --- a/django/http/__init__.py +++ b/django/http/__init__.py @@ -76,11 +76,6 @@ else: dict.__setitem__(self, key, Cookie.Morsel()) -class CompatCookie(SimpleCookie): - def __init__(self, *args, **kwargs): - super(CompatCookie, self).__init__(*args, **kwargs) - warnings.warn("CompatCookie is deprecated. Use django.http.SimpleCookie instead.", DeprecationWarning) - from django.conf import settings from django.core import signing from django.core.exceptions import ImproperlyConfigured |
