summaryrefslogtreecommitdiff
path: root/Lib/test/test_struct.py
Commit message (Expand)AuthorAgeFilesLines
* Remove test.test_support.guard_warnings_filter.Brett Cannon2007-08-141-1/+1
* Bug #1563759: struct.unpack doens't support buffer protocol objectsRaymond Hettinger2007-04-051-0/+8
* Whitespace normalization.Tim Peters2007-01-301-49/+49
* Patch #1610575: Add support for _Bool to struct.Martin v. Löwis2007-01-211-7/+61
* Add test.test_support.guard_warnings_filter . This function returns a contextBrett Cannon2006-12-131-15/+10
* Fix #1530559, struct.pack raises TypeError where it used to convert.Bob Ippolito2006-08-041-26/+69
* Access _struct attributes directly instead of mucking with getattr.Tim Peters2006-06-051-20/+18
* Fixes in struct and socket from merge reviews.Martin Blais2006-06-041-13/+13
* Whitespace normalization.Tim Peters2006-06-041-2/+1
* Fixed struct test to not use unittest.Martin Blais2006-06-021-78/+84
* On 64-bit platforms running test_struct after test_tarfile would failNeal Norwitz2006-05-311-0/+6
* Change wrapping terminology to overflow maskingBob Ippolito2006-05-301-3/+3
* deprecated_err(): Stop bizarre warning messages when the testsTim Peters2006-05-301-2/+6
* struct: modulo math plus warning on all endian-explicit formats for compatibi...Bob Ippolito2006-05-291-11/+36
* Fix up struct docstrings, add struct.pack_to function for symmetryBob Ippolito2006-05-271-0/+22
* enable all of the struct tests, use ssize_t, fix some whitespaceBob Ippolito2006-05-261-1/+1
* fix #1229380 No struct.pack exception for some out of range integersBob Ippolito2006-05-261-3/+5
* Whitespace normalization.Tim Peters2006-05-261-2/+1
* Support for buffer protocol for socket and struct.Martin Blais2006-05-261-25/+60
* refactor unpack, add unpack_fromBob Ippolito2006-05-241-0/+41
* Patch #1011240: SystemError generated by struct.pack('P', 'foo').Armin Rigo2004-09-271-0/+1
* Replace backticks with repr() or "%r"Walter Dörwald2004-02-121-9/+9
* SF bug 705836: struct.pack of floats in non-native endian orderTim Peters2003-03-201-0/+46
* Get rid of many apply() calls.Guido van Rossum2003-02-271-5/+2
* Get rid of relative imports in all unittests. Now anything thatBarry Warsaw2002-07-231-1/+1
* The 'p' (Pascal string) pack code acts unreasonably when the string sizeTim Peters2001-09-151-0/+25
* Added "i" and "l" to the list of std-mode struct codes that don't range-Tim Peters2001-06-181-1/+4
* Generalize the new qQ std-mode tests to all int codes (bBhHiIlLqQ).Tim Peters2001-06-131-158/+202
* The new {b,l}p_{u,}longlong() didn't check get_pylong()'s return for NULL.Tim Peters2001-06-131-0/+6
* Added q/Q standard (x-platform 8-byte ints) mode in struct module.Tim Peters2001-06-121-6/+165
* Renamed some stuff to tell the truth about what it does.Tim Peters2001-06-101-4/+4
* Initial support for 'q' and 'Q' struct format codes: for now, only inTim Peters2001-06-101-10/+47
* Update the code to better reflect recommended style:Fred Drake2000-12-121-4/+4
* Make reindent.py happy (convert everything to 4-space indents!).Fred Drake2000-10-231-1/+1
* Mass check-in after untabifying all files that need it.Guido van Rossum1998-03-261-31/+31
* Change the ``calcsize*3'' test to be portable to 64-bit machines.Guido van Rossum1997-01-031-3/+7
* Added f/d tests for specific byte orders.Guido van Rossum1997-01-031-9/+19
* Exercise the new feature set somewhat.Guido van Rossum1996-12-311-10/+73
* A test of the struct moduleBarry Warsaw1996-12-121-0/+44