[issue18743] References to non-existant StringIO module

2013-08-29 Thread Roundup Robot
Roundup Robot added the comment: New changeset 6c0f5af2f5a5 by Serhiy Storchaka in branch '3.3': Issue #18743: Fix references to non-existant StringIO module http://hg.python.org/cpython/rev/6c0f5af2f5a5 New changeset 676bbd5b0254 by Serhiy Storchaka in branch 'default': Issue #18743: Fix

[issue18743] References to non-existant StringIO module

2013-08-29 Thread Serhiy Storchaka
Changes by Serhiy Storchaka storch...@gmail.com: -- resolution: - fixed stage: patch review - committed/rejected status: open - closed ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue18743

[issue18743] References to non-existant StringIO module

2013-08-21 Thread Serhiy Storchaka
Changes by Serhiy Storchaka storch...@gmail.com: -- stage: commit review - patch review ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue18743 ___

[issue18743] References to non-existant StringIO module

2013-08-18 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: Here is a patch which fixes references to StringIO in docstrings and comments and removes redundant code. -- Added file: http://bugs.python.org/file31362/src_StringIO_refs.patch ___ Python tracker

[issue18743] References to non-existant StringIO module

2013-08-16 Thread Serhiy Storchaka
Changes by Serhiy Storchaka storch...@gmail.com: -- assignee: docs@python - serhiy.storchaka ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue18743 ___

[issue18743] References to non-existant StringIO module

2013-08-16 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: Here is a patch. Actually this is a small part of larger problem for which I will open several separated issues. -- keywords: +patch stage: needs patch - patch review Added file: http://bugs.python.org/file31315/doc_StringIO_refs.patch

[issue18743] References to non-existant StringIO module

2013-08-16 Thread Jesús Cea Avión
Jesús Cea Avión added the comment: Patch is incomplete. I found this error while reading unittest.mock, that you are not patching. -- ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue18743 ___

[issue18743] References to non-existant StringIO module

2013-08-16 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: I don't see StringIO in Doc/library/unittest.mock.rst. -- ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue18743 ___

[issue18743] References to non-existant StringIO module

2013-08-16 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: Ah, I missed it. Here is completed patch. -- Added file: http://bugs.python.org/file31321/doc_StringIO_refs_2.patch ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue18743

[issue18743] References to non-existant StringIO module

2013-08-16 Thread Terry J. Reedy
Terry J. Reedy added the comment: LGTM -- nosy: +terry.reedy stage: patch review - commit review type: - behavior ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue18743 ___

[issue18743] References to non-existant StringIO module

2013-08-16 Thread Roundup Robot
Roundup Robot added the comment: New changeset b23ad357c214 by Serhiy Storchaka in branch '3.3': Issue #18743: Fix references to non-existant StringIO module. http://hg.python.org/cpython/rev/b23ad357c214 New changeset 3acbd7aca856 by Serhiy Storchaka in branch 'default': Issue #18743: Fix

[issue18743] References to non-existant StringIO module

2013-08-15 Thread Serhiy Storchaka
Changes by Serhiy Storchaka storch...@gmail.com: -- nosy: +serhiy.storchaka stage: - needs patch ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue18743 ___

[issue18743] References to non-existant StringIO module

2013-08-14 Thread Jesús Cea Avión
New submission from Jesús Cea Avión: Doing a grep StringIO Doc/library/*.rst shows a handful of references to the old StringIO library. Notably: gzip.rst mailbox.rst tempfile.rst test.rst unittest.mock.rst xml.dom.minidom.rst -- assignee: docs@python components: Documentation