[issue9883] minidom: AttributeError: DocumentFragment instance has no attribute 'writexml'

2019-05-30 Thread Cheryl Sabella
Cheryl Sabella added the comment: I've closed PR1745 as it appeared to be abandoned. -- nosy: +cheryl.sabella ___ Python tracker ___

[issue9883] minidom: AttributeError: DocumentFragment instance has no attribute 'writexml'

2019-04-07 Thread miss-islington
miss-islington added the comment: New changeset a9a065addd175ed37a959118c90377ba60f90036 by Miss Islington (bot) in branch '3.7': bpo-9883: Update list of unimplemented interfaces in minidom. (GH-12677) https://github.com/python/cpython/commit/a9a065addd175ed37a959118c90377ba60f90036

[issue9883] minidom: AttributeError: DocumentFragment instance has no attribute 'writexml'

2019-04-06 Thread miss-islington
Change by miss-islington : -- pull_requests: +12638 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue9883] minidom: AttributeError: DocumentFragment instance has no attribute 'writexml'

2019-04-06 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: New changeset 2ea8099523581cf2ecc060831a53debb57ff98ee by Serhiy Storchaka (Stefan Behnel) in branch 'master': bpo-9883: Update list of unimplemented interfaces in minidom. (GH-12677)

[issue9883] minidom: AttributeError: DocumentFragment instance has no attribute 'writexml'

2019-04-06 Thread miss-islington
Change by miss-islington : -- pull_requests: +12634 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue9883] minidom: AttributeError: DocumentFragment instance has no attribute 'writexml'

2019-04-03 Thread Stefan Behnel
Change by Stefan Behnel : -- keywords: +patch pull_requests: +12604 stage: -> patch review ___ Python tracker ___ ___

[issue9883] minidom: AttributeError: DocumentFragment instance has no attribute 'writexml'

2019-04-03 Thread Stefan Behnel
Stefan Behnel added the comment: Seems like a reasonable request to me, even if it hasn't been touched or re-requested for years. Funny enough, DocumentFragment is currently documented as "not implemented" (as for Entity, Notation, CDATASection, CharacterData, DOMImplementation,

[issue9883] minidom: AttributeError: DocumentFragment instance has no attribute 'writexml'

2019-04-03 Thread James Socol
Change by James Socol : -- nosy: -jamessocol ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue9883] minidom: AttributeError: DocumentFragment instance has no attribute 'writexml'

2019-04-02 Thread Karthikeyan Singaravelan
Change by Karthikeyan Singaravelan : -- nosy: +scoder, serhiy.storchaka ___ Python tracker ___ ___ Python-bugs-list mailing list

[issue9883] minidom: AttributeError: DocumentFragment instance has no attribute 'writexml'

2019-04-02 Thread Fred L. Drake, Jr.
Fred L. Drake, Jr. added the comment: Updated target to Python 3.8, since this has aged a bit. -- versions: +Python 3.8 -Python 3.5 ___ Python tracker ___

[issue9883] minidom: AttributeError: DocumentFragment instance has no attribute 'writexml'

2017-05-22 Thread Fred L. Drake, Jr.
Fred L. Drake, Jr. added the comment: I agree that writexml should be available for document fragments. I doubt the additional level of indentation should be added, as you've included in point 2. -- nosy: +fdrake ___ Python tracker

[issue9883] minidom: AttributeError: DocumentFragment instance has no attribute 'writexml'

2017-05-22 Thread Alex Perry
Changes by Alex Perry : -- pull_requests: +1834 ___ Python tracker ___ ___

[issue9883] minidom: AttributeError: DocumentFragment instance has no attribute 'writexml'

2017-05-22 Thread Mark Lawrence
Changes by Mark Lawrence : -- nosy: -BreamoreBoy ___ Python tracker ___ ___

[issue9883] minidom: AttributeError: DocumentFragment instance has no attribute 'writexml'

2017-05-22 Thread Alex Perry
Changes by Alex Perry : -- pull_requests: +1814 ___ Python tracker ___ ___

[issue9883] minidom: AttributeError: DocumentFragment instance has no attribute 'writexml'

2014-10-02 Thread Mark Lawrence
Mark Lawrence added the comment: Can someone please confirm that my assessment of this as an enhancement is correct, thanks. -- nosy: +BreamoreBoy type: behavior - enhancement versions: +Python 3.5 -Python 2.6 ___ Python tracker

[issue9883] minidom: AttributeError: DocumentFragment instance has no attribute 'writexml'

2013-05-23 Thread James Socol
Changes by James Socol me+pyb...@jamessocol.com: -- nosy: +jamessocol ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue9883 ___ ___ Python-bugs-list

[issue9883] minidom: AttributeError: DocumentFragment instance has no attribute 'writexml'

2010-09-16 Thread Aubrey Barnard
New submission from Aubrey Barnard aubrey.f.barn...@gmail.com: Summary: Writing a document fragment doesn't work because the 'writexml' method is not implemented. Problem: I would like to be able to write out document fragments as XML text, but this functionality is not implemented. Here are