[issue7990] xml.etree.cElementTree lacks full dir() on Element

2015-11-25 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: Thank you Martin. Committed with both your suggestions. -- resolution: -> fixed stage: patch review -> resolved status: open -> closed ___ Python tracker

[issue7990] xml.etree.cElementTree lacks full dir() on Element

2015-11-25 Thread Roundup Robot
Roundup Robot added the comment: New changeset fef7f041c1a7 by Serhiy Storchaka in branch 'default': Issue #7990: dir() on ElementTree.Element now lists properties: "tag", https://hg.python.org/cpython/rev/fef7f041c1a7 -- nosy: +python-dev ___ Python

[issue7990] xml.etree.cElementTree lacks full dir() on Element

2015-11-23 Thread Martin Panter
Martin Panter added the comment: The patch looks technically good, though I’m not a big fan of the double underscores, like element_get__text(). Maybe element_text_getter() instead, because it has to match the “getter” signature? Personally, I would say keep the doc strings basic. If you want

[issue7990] xml.etree.cElementTree lacks full dir() on Element

2015-11-23 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: Here is a patch updated to 3.6. -- nosy: +serhiy.storchaka versions: +Python 3.6 -Python 3.3, Python 3.4 Added file: http://bugs.python.org/file41133/etree_attributes.patch ___ Python tracker

[issue7990] xml.etree.cElementTree lacks full dir() on Element

2015-11-23 Thread Serhiy Storchaka
Changes by Serhiy Storchaka : -- assignee: -> serhiy.storchaka ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue7990] xml.etree.cElementTree lacks full dir() on Element

2013-08-03 Thread Christian Heimes
Changes by Christian Heimes : -- nosy: +christian.heimes ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://

[issue7990] xml.etree.cElementTree lacks full dir() on Element

2013-08-03 Thread Eli Bendersky
Eli Bendersky added the comment: Could you please refresh the patch for Python 3.3 and 3.4 (_elementtree went through many changes in 3.3)? -- ___ Python tracker ___

[issue7990] xml.etree.cElementTree lacks full dir() on Element

2012-07-21 Thread Florent Xicluna
Changes by Florent Xicluna : -- assignee: effbot -> nosy: +eli.bendersky stage: needs patch -> patch review ___ Python tracker ___ ___

[issue7990] xml.etree.cElementTree lacks full dir() on Element

2011-04-14 Thread Arc Riley
Arc Riley added the comment: It looks right to me, but I would include more verbose pydoc strings. IE, "The tail attribute can be used to hold additional data associated with the element" tells me nothing. You could explain here what .tail actually is, a few XML examples of what would be p

[issue7990] xml.etree.cElementTree lacks full dir() on Element

2011-04-14 Thread Santoso Wijaya
Santoso Wijaya added the comment: Is this a right approach? I converted the hard-coded "attributes" into real, C-API attributes. -- ___ Python tracker ___ __

[issue7990] xml.etree.cElementTree lacks full dir() on Element

2011-03-20 Thread Santoso Wijaya
Changes by Santoso Wijaya : -- versions: +Python 3.4 -Python 2.7, Python 3.1, Python 3.2 ___ Python tracker ___ ___ Python-bugs-list ma

[issue7990] xml.etree.cElementTree lacks full dir() on Element

2011-03-07 Thread Santoso Wijaya
Changes by Santoso Wijaya : -- versions: +Python 3.1, Python 3.3 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue7990] xml.etree.cElementTree lacks full dir() on Element

2011-03-07 Thread Santoso Wijaya
Santoso Wijaya added the comment: Attached a patch with test for this: Following the suggestion, I put "tag", "text", "tail", and "attrib" to be accessible via tp_getset for _etree.Element type. -- keywords: +patch nosy: +santa4nt Added file: http://bugs.python.org/file21041/dir_elem_