﻿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
15811	Lazy doesn't take into account methods defined in parents	Amirouche	nobody	"Example:

{{{
from django.utils.datastructures import SortedDict
from django.utils.functional import lazy

def a(): return SortedDict([(2,2),(1,1)])

f = lazy(a, SortedDict)()
f[1]

}}}

This results in a TypeError

I got a patch ready but not sure if it does what it should do well since I don't grasp all the ``lazy`` functionality."	Bug	closed	Core (Other)	dev	Normal	fixed		Amirouche	Ready for checkin	1	0	0	0	0	0
