[Python-checkins] cpython (2.7): #13784: fix xml.sax.reader getColumn/LineNumber docs.

r.david.murray python-checkins at python.org
Thu Jun 2 15:15:44 EDT 2016


https://hg.python.org/cpython/rev/97b76fe183f4
changeset:   101607:97b76fe183f4
branch:      2.7
parent:      101603:42356e44af23
user:        R David Murray <rdmurray at bitdance.com>
date:        Thu Jun 02 15:13:37 2016 -0400
summary:
  #13784: fix xml.sax.reader getColumn/LineNumber docs.

verification and patch by Emily Morehouse.

files:
  Doc/library/xml.sax.reader.rst |  4 ++--
  1 files changed, 2 insertions(+), 2 deletions(-)


diff --git a/Doc/library/xml.sax.reader.rst b/Doc/library/xml.sax.reader.rst
--- a/Doc/library/xml.sax.reader.rst
+++ b/Doc/library/xml.sax.reader.rst
@@ -229,12 +229,12 @@
 
 .. 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()

-- 
Repository URL: https://hg.python.org/cpython


More information about the Python-checkins mailing list