[issue19928] Implement cell repr test

2013-12-11 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: Thank you Zachary. -- ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https

[issue19928] Implement cell repr test

2013-12-10 Thread Zachary Ware
Zachary Ware added the comment: This was failing the Windows buildbots; the object addresses have capital letters instead of lower case. I'm sorry, I should have caught that at review. -- ___ Python tracker _

[issue19928] Implement cell repr test

2013-12-10 Thread Roundup Robot
Roundup Robot added the comment: New changeset 21a9abf6d428 by Zachary Ware in branch '2.7': Issue #19928: Fix test on Windows http://hg.python.org/cpython/rev/21a9abf6d428 New changeset a0f9f0778ce3 by Zachary Ware in branch '3.3': Issue #19928: Fix test on Windows http://hg.python.org/cpython/

[issue19928] Implement cell repr test

2013-12-10 Thread Serhiy Storchaka
Changes by Serhiy Storchaka : -- resolution: -> fixed stage: patch review -> committed/rejected status: open -> closed ___ Python tracker ___ ___

[issue19928] Implement cell repr test

2013-12-10 Thread Roundup Robot
Roundup Robot added the comment: New changeset d98c5806c33c by Serhiy Storchaka in branch '2.7': Issue #19928: Implemented a test for repr() of cell objects. http://hg.python.org/cpython/rev/d98c5806c33c New changeset 49eb895be796 by Serhiy Storchaka in branch '3.3': Issue #19928: Implemented a

[issue19928] Implement cell repr test

2013-12-09 Thread Zachary Ware
Zachary Ware added the comment: Left a comment on Rietveld; mostly LGTM. -- ___ Python tracker ___ ___ Python-bugs-list mailing list U

[issue19928] Implement cell repr test

2013-12-08 Thread Serhiy Storchaka
New submission from Serhiy Storchaka: Repr test for cell is empty. Proposed patch implements it. -- components: Tests files: test_cell_repr.patch keywords: patch messages: 205528 nosy: serhiy.storchaka, zach.ware priority: normal severity: normal stage: patch review status: open title: I