From 6b3792aef27e045a049d6f3bd86d970cb53ea9f5 Mon Sep 17 00:00:00 2001 From: Michele Lazzeri Date: Wed, 11 Jan 2012 19:37:43 +0100 Subject: [PATCH] recursive xml parsing --- djangorestframework/parsers.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/djangorestframework/parsers.py b/djangorestframework/parsers.py index c5eefaec2..79e14260c 100644 --- a/djangorestframework/parsers.py +++ b/djangorestframework/parsers.py @@ -196,8 +196,6 @@ class XMLParser(BaseParser): def _xml_convert(self, element): """ convert the xml `element` into the corresponding python object - - `data` The python object representation of xml `element`. """ children = element.getchildren()