Issue 19928: Implement cell repr test - Python tracker

This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

classification
process
Status: closed Resolution: fixed
Dependencies: Superseder:
Assigned To: Nosy List: python-dev, serhiy.storchaka, zach.ware
Priority: normal Keywords: patch

Created on 2013-12-08 08:48 by serhiy.storchaka, last changed 2022-04-11 14:57 by admin. This issue is now closed.

Files
File name Uploaded Description Edit
test_cell_repr.patch serhiy.storchaka, 2013-12-08 08:48 review
Messages (6)
msg205528 - (view) Author: Serhiy Storchaka (serhiy.storchaka) * (Python committer) Date: 2013-12-08 08:48
Repr test for cell is empty. Proposed patch implements it.
msg205752 - (view) Author: Zachary Ware (zach.ware) * (Python committer) Date: 2013-12-09 23:13
Left a comment on Rietveld; mostly LGTM.
msg205777 - (view) Author: Roundup Robot (python-dev) (Python triager) Date: 2013-12-10 08:25
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 test for repr() of cell objects.
http://hg.python.org/cpython/rev/49eb895be796

New changeset af9f3d737d4a by Serhiy Storchaka in branch 'default':
Issue #19928: Implemented a test for repr() of cell objects.
http://hg.python.org/cpython/rev/af9f3d737d4a
msg205852 - (view) Author: Roundup Robot (python-dev) (Python triager) Date: 2013-12-10 20:18
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/rev/a0f9f0778ce3

New changeset eb0622dc8376 by Zachary Ware in branch 'default':
Issue #19928: Fix test on Windows
http://hg.python.org/cpython/rev/eb0622dc8376
msg205853 - (view) Author: Zachary Ware (zach.ware) * (Python committer) Date: 2013-12-10 20:20
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.
msg205935 - (view) Author: Serhiy Storchaka (serhiy.storchaka) * (Python committer) Date: 2013-12-11 22:28
Thank you Zachary.