[issue27171] Fix various typos

2016-06-02 Thread Martin Panter
Changes by Martin Panter : -- resolution: -> fixed stage: patch review -> resolved status: open -> closed ___ Python tracker ___ ___

[issue27171] Fix various typos

2016-06-02 Thread Roundup Robot
Roundup Robot added the comment: New changeset ce31ee3b1e69 by Martin Panter in branch '3.5': Issue #27171: Fix typos in documentation, comments, and test function names https://hg.python.org/cpython/rev/ce31ee3b1e69 New changeset c67f1f4ebb32 by Martin Panter in branch 'default': Issue #27171:

[issue27171] Fix various typos

2016-06-01 Thread Martin Panter
Martin Panter added the comment: Thanks. The py2 version is partly a back port, but I have searched for the same kind of spelling mistakes and fixed them in different places, e.g. “overriden” in Lib/bsddb/test/test_all.py, which does not exist in Py 3. -- _

[issue27171] Fix various typos

2016-05-31 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: typos.py3.patch LGTM. I expect typos.py2.patch is just backported to 2.7. -- nosy: +serhiy.storchaka ___ Python tracker ___ __

[issue27171] Fix various typos

2016-05-31 Thread Martin Panter
Changes by Martin Panter : Added file: http://bugs.python.org/file43077/typos.py2.patch ___ Python tracker ___ ___ Python-bugs-list mailing li

[issue27171] Fix various typos

2016-05-31 Thread Martin Panter
New submission from Martin Panter: This fixes various spelling mistakes in documentation, code comments, and test function names. There is also a correction to an exception message in Modules/_ctypes/callproc.c, which I propose to fix only in 3.6. -- files: typos.py3.patch keywords: p