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.

Author serhiy.storchaka
Recipients alex, gvanrossum, serhiy.storchaka, vstinner
Date 2014-07-26.15:47:29
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1476638.O9AXTMuFz8@raxxla>
In-reply-to <1406388771.89.0.611038987626.issue22081@psf.upfronthosting.co.za>
Content
See for example test_generators, test_genexps, test_xml_etree or 
ctypes.test.test_objects.

    >>> dict(a = (i for i in xrange(10))) #doctest: +ELLIPSIS
    {'a': <generator object <genexpr> at ...>}

    >>> repr(element)   # doctest: +ELLIPSIS
    "<Element 't\\xe4g' at 0x...>"

But unit tests can be broken too. When I enhanced reprs this week (issue22031, 
issue22032), I needed to correct failed tests. Due to this facts I applied 
patches only to 3.5.
History
Date User Action Args
2014-07-26 15:47:29serhiy.storchakasetrecipients: + serhiy.storchaka, gvanrossum, vstinner, alex
2014-07-26 15:47:29serhiy.storchakalinkissue22081 messages
2014-07-26 15:47:29serhiy.storchakacreate