| Commit message (Expand) | Author | Age | Files | Lines |
* | Issue #1523: Remove deprecated overflow masking in struct module, and | Mark Dickinson | 2009-07-07 | 1 | -19/+1 |
|
|
* | Expand test coverage for struct.pack with native integer packing; | Mark Dickinson | 2009-07-07 | 1 | -170/+107 |
|
|
* | Add skipping to struct test that only applies when overflow masking is in effect | Mark Dickinson | 2009-07-07 | 1 | -0/+2 |
|
|
* | Issues #1530559, #1741130: Fix various inconsistencies in struct.pack | Mark Dickinson | 2009-07-05 | 1 | -25/+26 |
|
|
* | convert usage of fail* to assert* | Benjamin Peterson | 2009-06-30 | 1 | -2/+2 |
|
|
* | The unittest.TestCase.assertEqual() now displays the differences in lists, | Gregory P. Smith | 2009-03-31 | 1 | -0/+1 |
|
|
* | #3694: add test for fix committed in r66693. | Georg Brandl | 2009-02-13 | 1 | -0/+4 |
|
|
* | Issue #5175: PyLong_AsUnsignedLongLong now raises OverflowError for | Mark Dickinson | 2009-02-10 | 1 | -2/+2 |
|
|
* | #4228: Pack negative values the same way as 2.4 | Georg Brandl | 2009-01-01 | 1 | -0/+7 |
|
|
* | warnings.catch_warnings() now returns a list or None instead of the custom | Brett Cannon | 2008-09-09 | 1 | -2/+2 |
|
|
* | Fix bug 3625: test issues on 64bit windows. r=pitrou | Mark Hammond | 2008-08-23 | 1 | -1/+1 |
|
|
* | Make test.test_support.catch_warnings more robust as discussed on python-dev.... | Nick Coghlan | 2008-07-13 | 1 | -7/+4 |
|
|
* | silence the test when it is skipped on some platforms. should fix a | Gregory P. Smith | 2008-06-14 | 1 | -4/+2 |
|
|
* | Merge in release25-maint r60793: | Gregory P. Smith | 2008-06-11 | 1 | -0/+8 |
|
|
* | convert test_struct to a unittest thanks to Giampaolo Rodola | Benjamin Peterson | 2008-06-11 | 1 | -624/+524 |
|
|
* | Issue 705836: Fix struct.pack(">f", 1e40) to behave consistently | Mark Dickinson | 2008-03-14 | 1 | -1/+1 |
|
|
* | Issue 1872: Changed the struct module typecode from 't' to '?', for | Thomas Heller | 2008-03-05 | 1 | -14/+14 |
|
|
* | Remove test.test_support.guard_warnings_filter. | Brett Cannon | 2007-08-14 | 1 | -1/+1 |
|
|
* | Bug #1563759: struct.unpack doens't support buffer protocol objects | Raymond Hettinger | 2007-04-05 | 1 | -0/+8 |
|
|
* | Whitespace normalization. | Tim Peters | 2007-01-30 | 1 | -49/+49 |
|
|
* | Patch #1610575: Add support for _Bool to struct. | Martin v. Löwis | 2007-01-21 | 1 | -7/+61 |
|
|
* | Add test.test_support.guard_warnings_filter . This function returns a context | Brett Cannon | 2006-12-13 | 1 | -15/+10 |
|
|
* | Fix #1530559, struct.pack raises TypeError where it used to convert. | Bob Ippolito | 2006-08-04 | 1 | -26/+69 |
|
|
* | Access _struct attributes directly instead of mucking with getattr. | Tim Peters | 2006-06-05 | 1 | -20/+18 |
|
|
* | Fixes in struct and socket from merge reviews. | Martin Blais | 2006-06-04 | 1 | -13/+13 |
|
|
* | Whitespace normalization. | Tim Peters | 2006-06-04 | 1 | -2/+1 |
|
|
* | Fixed struct test to not use unittest. | Martin Blais | 2006-06-02 | 1 | -78/+84 |
|
|
* | On 64-bit platforms running test_struct after test_tarfile would fail | Neal Norwitz | 2006-05-31 | 1 | -0/+6 |
|
|
* | Change wrapping terminology to overflow masking | Bob Ippolito | 2006-05-30 | 1 | -3/+3 |
|
|
* | deprecated_err(): Stop bizarre warning messages when the tests | Tim Peters | 2006-05-30 | 1 | -2/+6 |
|
|
* | struct: modulo math plus warning on all endian-explicit formats for compatibi... | Bob Ippolito | 2006-05-29 | 1 | -11/+36 |
|
|
* | Fix up struct docstrings, add struct.pack_to function for symmetry | Bob Ippolito | 2006-05-27 | 1 | -0/+22 |
|
|
* | enable all of the struct tests, use ssize_t, fix some whitespace | Bob Ippolito | 2006-05-26 | 1 | -1/+1 |
|
|
* | fix #1229380 No struct.pack exception for some out of range integers | Bob Ippolito | 2006-05-26 | 1 | -3/+5 |
|
|
* | Whitespace normalization. | Tim Peters | 2006-05-26 | 1 | -2/+1 |
|
|
* | Support for buffer protocol for socket and struct. | Martin Blais | 2006-05-26 | 1 | -25/+60 |
|
|
* | refactor unpack, add unpack_from | Bob Ippolito | 2006-05-24 | 1 | -0/+41 |
|
|
* | Patch #1011240: SystemError generated by struct.pack('P', 'foo'). | Armin Rigo | 2004-09-27 | 1 | -0/+1 |
|
|
* | Replace backticks with repr() or "%r" | Walter Dörwald | 2004-02-12 | 1 | -9/+9 |
|
|
* | SF bug 705836: struct.pack of floats in non-native endian order | Tim Peters | 2003-03-20 | 1 | -0/+46 |
|
|
* | Get rid of many apply() calls. | Guido van Rossum | 2003-02-27 | 1 | -5/+2 |
|
|
* | Get rid of relative imports in all unittests. Now anything that | Barry Warsaw | 2002-07-23 | 1 | -1/+1 |
|
|
* | The 'p' (Pascal string) pack code acts unreasonably when the string size | Tim Peters | 2001-09-15 | 1 | -0/+25 |
|
|
* | Added "i" and "l" to the list of std-mode struct codes that don't range- | Tim Peters | 2001-06-18 | 1 | -1/+4 |
|
|
* | Generalize the new qQ std-mode tests to all int codes (bBhHiIlLqQ). | Tim Peters | 2001-06-13 | 1 | -158/+202 |
|
|
* | The new {b,l}p_{u,}longlong() didn't check get_pylong()'s return for NULL. | Tim Peters | 2001-06-13 | 1 | -0/+6 |
|
|
* | Added q/Q standard (x-platform 8-byte ints) mode in struct module. | Tim Peters | 2001-06-12 | 1 | -6/+165 |
|
|
* | Renamed some stuff to tell the truth about what it does. | Tim Peters | 2001-06-10 | 1 | -4/+4 |
|
|
* | Initial support for 'q' and 'Q' struct format codes: for now, only in | Tim Peters | 2001-06-10 | 1 | -10/+47 |
|
|
* | Update the code to better reflect recommended style: | Fred Drake | 2000-12-12 | 1 | -4/+4 |
|
|