I got the answer , It is removed in django 1.9 so You can use of following 
code

class SortedDictWithMetadata(SortedDict):
    """
    A sorted dict-like object, that can have additional properties attached.
    """
    def __reduce__(self):
        return self.__class__, (SortedDict(self), )

    def __getstate__(self):

        return SortedDict(self).__dict__


On Wednesday, 26 July 20you 17 23:52:44 UTC+5:30, Sagar Gawli wrote:
>
> Hi , 
> Is Anybody know the alternative for `SortedDictWithMetadata` in drf 3.3.0 
> . As I am using the code of previous versions where it was available and I 
> want to convert code to `drf  3.3.0`
>

-- 
You received this message because you are subscribed to the Google Groups 
"Django REST framework" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
For more options, visit https://groups.google.com/d/optout.

Reply via email to