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 skrah
Recipients Arfrever, christian.heimes, georg.brandl, loewis, mark.dickinson, meador.inge, ncoghlan, pitrou, python-dev, skrah, vstinner
Date 2012-08-25.07:28:51
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1345879768.53.0.213581010812.issue15573@psf.upfronthosting.co.za>
In-reply-to
Content
The effect of the change is pretty minimal though: Previously
"not equal" was returned for unknown formats, now the struct
module figures it out.

memoryobject.c has 100% coverage except for a couple of lines
that are either impossible to reach or very hard to reach.

The new code is among the most heavily exercised lines, since
in test_buffer.py the verify() function always asserts equality.


You can look at the attached memoryobject.c.gcov: *All* failure paths
are taken since Python API functions are wrapped in macros that
set PyExc_FailAPIError and return failure at predefined points
the test suite.
History
Date User Action Args
2012-08-25 07:29:30skrahsetrecipients: + skrah, loewis, georg.brandl, mark.dickinson, ncoghlan, pitrou, vstinner, christian.heimes, Arfrever, meador.inge, python-dev
2012-08-25 07:29:28skrahsetmessageid: <1345879768.53.0.213581010812.issue15573@psf.upfronthosting.co.za>
2012-08-25 07:29:27skrahlinkissue15573 messages
2012-08-25 07:29:27skrahcreate