[issue6025] documentation of xml.dom.minidom.parse signature is wrong

2009-05-16 Thread Georg Brandl
Georg Brandl added the comment: No, you shouldn't :) It will be merged automatically. -- status: open -> closed ___ Python tracker ___ ___

[issue6025] documentation of xml.dom.minidom.parse signature is wrong

2009-05-16 Thread Philipp Hagemeister
Philipp Hagemeister added the comment: The patch has been applied to trunk, but not branches/py3k. Sorry for that, I should really get into the habit of providing patches for both branches. -- status: closed -> open ___ Python tracker

[issue6025] documentation of xml.dom.minidom.parse signature is wrong

2009-05-16 Thread Georg Brandl
Georg Brandl added the comment: Thanks, fixed in r72676. -- resolution: -> fixed status: open -> closed ___ Python tracker ___ ___ Py

[issue6025] documentation of xml.dom.minidom.parse signature is wrong

2009-05-14 Thread Philipp Hagemeister
New submission from Philipp Hagemeister : In the documentation, the signature is given as parse(filename_or_file, parser), although the next paragraph reads "(...) *parser*, if given, (...)". The latter is correct, and there is a new bufsize parameter, too. -- assignee: georg.brandl com