| Commit message (Expand) | Author | Age | Files | Lines |
* | Issue #10131: Fixed deep copying of minidom documents. Based on patch | Serhiy Storchaka | 2015-11-26 | 1 | -44/+53 |
|
|
* | Issue #22777: Test pickling with all protocols. | Serhiy Storchaka | 2014-12-15 | 1 | -37/+38 |
|
|
* | Issue #19683: Removed empty tests from test_minidom. | Zachary Ware | 2013-12-19 | 1 | -69/+0 |
|
|
* | Issue #16714: use 'raise' exceptions, don't 'throw'. | Andrew Svetlov | 2012-12-18 | 1 | -1/+1 |
|
|
* | #4147: minidom's toprettyxml no longer adds whitespace around a text node whe... | Ezio Melotti | 2011-11-18 | 1 | -5/+32 |
|
|
* | Fix typo and case in a recently added test | Éric Araujo | 2011-10-05 | 1 | -1/+1 |
|
|
* | #4147: minidom's toprettyxml no longer adds whitespace to text nodes. | R David Murray | 2011-10-01 | 1 | -0/+7 |
|
|
* | Issue 11164: Remove obsolete allnodes test from minidom test. | Martin v. Löwis | 2011-05-09 | 1 | -20/+0 |
|
|
* | Merged revisions 85546-85547 via svnmerge from | Georg Brandl | 2010-11-26 | 1 | -0/+7 |
|
|
* | Merged revisions 86596 via svnmerge from | Ezio Melotti | 2010-11-21 | 1 | -3/+3 |
|
|
* | Merged revisions 83152 via svnmerge from | Andrew M. Kuchling | 2010-07-25 | 1 | -0/+8 |
|
|
* | Various tests cleanup: check_warnings/check_py3k_warnings, unittest.assert* a... | Florent Xicluna | 2010-03-19 | 1 | -1/+1 |
|
|
* | Use "x in y" instead of y.find(x) != -1. | Ezio Melotti | 2010-03-17 | 1 | -1/+1 |
|
|
* | Do not chdir when running test_xml_etree, and enhance the findfile helper. | Florent Xicluna | 2010-03-13 | 1 | -9/+3 |
|
|
* | Move the xml test data to their own directory. | Florent Xicluna | 2010-03-13 | 1 | -1/+1 |
|
|
* | Fix more unbound locals in code paths that do not seem to be used. | Georg Brandl | 2010-02-06 | 1 | -1/+2 |
|
|
* | convert usage of fail* to assert* | Benjamin Peterson | 2009-06-30 | 1 | -1/+1 |
|
|
* | Issue #2170: refactored xml.dom.minidom.normalize, increasing both | R. David Murray | 2009-04-09 | 1 | -0/+161 |
|
|
* | fix incorrect auto-translation of TestSkipped -> unittest.SkipTest | Benjamin Peterson | 2009-03-26 | 1 | -1/+1 |
|
|
* | remove test_support.TestSkipped and just use unittest.SkipTest | Benjamin Peterson | 2009-03-26 | 1 | -1/+1 |
|
|
* | Issue #1390: Raise ValueError in toxml when an invalid comment would | Martin v. Löwis | 2008-05-23 | 1 | -0/+5 |
|
|
* | Patch #2167 from calvin: Remove unused imports | Christian Heimes | 2008-02-23 | 1 | -1/+0 |
|
|
* | #1433694: minidom's .normalize() failed to set .nextSibling for last element. | Andrew M. Kuchling | 2008-02-23 | 1 | -0/+8 |
|
|
* | Whitespace normalization. Ugh, we really need to do this more often. | Neal Norwitz | 2007-04-25 | 1 | -159/+159 |
|
|
* | Consolidate patches #1690164, 1683397, and 1690169, all of which refactor XML... | Collin Winter | 2007-03-28 | 1 | -1342/+1259 |
|
|
* | expunge the xmlcore changes: | Fred Drake | 2006-07-29 | 1 | -47/+45 |
|
|
* | Whitespace normalization. | Tim Peters | 2005-12-25 | 1 | -3/+3 |
|
|
* | move the xml package implementation to xmlcore, and adjust the tests to | Fred Drake | 2005-12-14 | 1 | -45/+47 |
|
|
* | [Patch #1094164] replaceChild(x,x) ends up removing x of the tree. Add fix f... | Andrew M. Kuchling | 2005-11-22 | 1 | -0/+11 |
|
|
* | Patch #1309009, Fix segfault in pyexpat when the XML document is | Neal Norwitz | 2005-09-30 | 1 | -0/+9 |
|
|
* | bug [ 1262320 ] minidom.py alternate newl support is broken | Georg Brandl | 2005-08-25 | 1 | -4/+11 |
|
|
* | Fix all wrong instances of "it's". | Georg Brandl | 2005-07-22 | 1 | -3/+3 |
|
|
* | Replace backticks with repr() or "%r" | Walter Dörwald | 2004-02-12 | 1 | -1/+1 |
|
|
* | Synchronize with PyXML's 1.33: Import missing modules. | Martin v. Löwis | 2003-01-25 | 1 | -3/+6 |
|
|
* | Merge PyXML 1.11-1.26: | Martin v. Löwis | 2003-01-25 | 1 | -24/+732 |
|
|
* | If PyXML is installed, there is no Node.allnodes, so that portion of | Fred Drake | 2002-09-12 | 1 | -11/+22 |
|
|
* | Remove duplicate checks of the Node.allnodes variable. | Fred Drake | 2002-07-25 | 1 | -3/+0 |
|
|
* | Get rid of relative imports in all unittests. Now anything that | Barry Warsaw | 2002-07-23 | 1 | -1/+1 |
|
|
* | Follow PyXML: Remove all prints from successful tests. This means we can | Fred Drake | 2002-07-19 | 1 | -21/+14 |
|
|
* | Implement the encoding argument for toxml and toprettyxml. | Martin v. Löwis | 2002-06-30 | 1 | -0/+8 |
|
|
* | Attribute nodes did not always get their ownerDocument and ownerElement | Fred Drake | 2001-12-06 | 1 | -0/+22 |
|
|
* | Fix appendChild() and insertBefore() (and replaceChild() indirectly) when | Fred Drake | 2001-12-06 | 1 | -0/+45 |
|
|
* | SF patch #474590 -- RISC OS support | Guido van Rossum | 2001-10-24 | 1 | -2/+2 |
|
|
* | Update the xml.dom.minidom tests to cover the DOM-compliant parts of the | Fred Drake | 2001-09-28 | 1 | -2/+28 |
|
|
* | Implement testGetElementsByTagNameNS. | Martin v. Löwis | 2001-06-03 | 1 | -1/+8 |
|
|
* | Whitespace normalization. | Tim Peters | 2001-02-21 | 1 | -1/+1 |
|
|
* | Patch #103854: raises an exception if a non-Attr node is passed to | Andrew M. Kuchling | 2001-02-21 | 1 | -0/+11 |
|
|
* | Add xml declaration into toxml testcase. | Martin v. Löwis | 2001-02-06 | 1 | -1/+1 |
|
|
* | Revise the driver code to be more informative in the final report. | Fred Drake | 2001-02-01 | 1 | -7/+10 |
|
|
* | Except HierarchyRequestErr instead of TypeError. | Martin v. Löwis | 2001-01-27 | 1 | -1/+1 |
|
|