﻿id	summary	reporter	owner	description	type	status	component	version	severity	resolution	keywords	cc	stage	has_patch	needs_docs	needs_tests	needs_better_patch	easy	ui_ux
1047	bug in decorator_from_middleware function	junzhang.jn@…	Jacob	"when i use cache_page decorator in Python24, I found 
{{{
@cache_page( 60 * 15 )
def some_view( request ):
    pass
}}}
not equals
{{{
def some_view( request ):
    pass
some_view = cache_page( some_view , 60 * 15 )
}}}

it equals 
{{{
def some_view( request ):
    pass
some_view = cache_page(60*15)( some_view )
}}}

so i think zhe 'cache.txt' and zhe decorator_from_middleware function should be fixed for this bug.
bug i don't know how to do that.

BTW：the cache system is so cool. :D"	defect	closed	Core (Cache system)		normal	duplicate			Design decision needed	0	0	0	0	0	0
