From: R David Murray Date: Thu, 2 Jun 2016 19:14:30 +0000 (-0400) Subject: #13784: fix xml.sax.reader getColumn/LineNumber docs. X-Git-Tag: v3.5.2rc1~85 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=f86959d883af71856da9ba4de3f48104ec4d5770;p=thirdparty%2FPython%2Fcpython.git #13784: fix xml.sax.reader getColumn/LineNumber docs. verification and patch by Emily Morehouse. --- diff --git a/Doc/library/xml.sax.reader.rst b/Doc/library/xml.sax.reader.rst index b4acd4cdbb14..47d23d6b989a 100644 --- a/Doc/library/xml.sax.reader.rst +++ b/Doc/library/xml.sax.reader.rst @@ -228,12 +228,12 @@ Instances of :class:`Locator` provide these methods: .. method:: Locator.getColumnNumber() - Return the column number where the current event ends. + Return the column number where the current event begins. .. method:: Locator.getLineNumber() - Return the line number where the current event ends. + Return the line number where the current event begins. .. method:: Locator.getPublicId()