Small optimization on r12285

git-svn-id: http://code.djangoproject.com/svn/django/trunk@12292 bcc190cf-cafb-0310-a4f2-bffc1f526a37
This commit is contained in:
Luke Plant 2010-01-25 18:14:30 +00:00
parent 89f81810ed
commit 65c1dfe67b
1 changed files with 2 additions and 1 deletions

View File

@ -92,8 +92,9 @@ class CookieStorage(BaseStorage):
if self.max_cookie_size:
# data is going to be stored eventually by CompatCookie, which
# adds it's own overhead, which we must account for.
cookie = CompatCookie() # create outside the loop
def stored_length(val):
return len(CompatCookie().value_encode(val)[1])
return len(cookie.value_encode(val)[1])
while encoded_data and stored_length(encoded_data) > self.max_cookie_size:
if remove_oldest: