index
:
cpython.git
2.7
3.3
3.4
3.5
3.6
benjamin-clang
benjamin-iteration-torture
buildbot-custom
master
https://github.com/python/cpython.git
summary
refs
log
tree
commit
diff
stats
log msg
author
committer
range
path:
root
/
Lib
/
test
/
test_struct.py
Commit message (
Expand
)
Author
Age
Files
Lines
*
Issue #22113: struct.pack_into() now supports new buffer protocol (in
Serhiy Storchaka
2015-02-21
1
-5/+14
*
Issue #19099: The struct module now supports Unicode format strings.
Serhiy Storchaka
2013-12-08
1
-0/+12
*
fix issue reference
Benjamin Peterson
2013-03-20
1
-1/+1
*
this obviously is not going to raise any -3 warnings
Benjamin Peterson
2013-03-20
1
-9/+6
*
Issue #10212: Support new buffer interface for struct.unpack and
Kristján Valur Jónsson
2013-03-20
1
-0/+11
*
Issue #15467: Move helpers for __sizeof__ tests into test_support.
Martin v. Löwis
2012-07-29
1
-31/+11
*
Issue #15402: Simplify Struct.__sizeof__ and make tests more precise.
Meador Inge
2012-07-29
1
-10/+42
*
Better test for Issue #15402: Add a __sizeof__ method to struct.Struct
Jesus Cea
2012-07-23
1
-4/+4
*
Issue #15402: Add a __sizeof__ method to struct.Struct.
Meador Inge
2012-07-23
1
-0/+10
*
Merged revisions 82777 via svnmerge from
Benjamin Peterson
2010-07-10
1
-2/+2
*
this makes checking for warnings less error prone
Benjamin Peterson
2010-07-09
1
-3/+2
*
Merged revisions 82739,82741 via svnmerge from
Benjamin Peterson
2010-07-09
1
-3/+4
*
Merged revisions 82735 via svnmerge from
Benjamin Peterson
2010-07-09
1
-1/+2
*
Merged revisions 82637 via svnmerge from
Benjamin Peterson
2010-07-07
1
-4/+8
*
Merged revisions 82628,82630 via svnmerge from
Benjamin Peterson
2010-07-07
1
-2/+8
*
Fix possible undefined behaviour from signed overflow in struct module.
Mark Dickinson
2010-06-11
1
-0/+6
*
Issue #8300 (__index__ handling in struct.pack): Remove redundant check
Mark Dickinson
2010-04-04
1
-10/+27
*
Use more specific assert* methods in test_struct.
Ezio Melotti
2010-04-04
1
-8/+8
*
Issue #8300: Let struct.pack use __index__ to convert and pack non-integers.
Mark Dickinson
2010-04-03
1
-0/+18
*
Cleanup test_struct using check_warnings.
Florent Xicluna
2010-03-20
1
-68/+50
*
Issue #1530559: When packing a non-integer with any integer conversion
Mark Dickinson
2010-03-07
1
-22/+47
*
Fix incorrect stacklevel for DeprecationWarnings originating from the struct ...
Mark Dickinson
2010-03-05
1
-36/+15
*
Remove unused imports in test modules.
Georg Brandl
2010-02-07
1
-1/+1
*
Reverting the Revision: 77368. I committed Flox's big patch for tests by
Senthil Kumaran
2010-01-08
1
-6/+2
*
Fixing - Issue7026 - RuntimeError: dictionary changed size during iteration. ...
Senthil Kumaran
2010-01-08
1
-2/+6
*
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
[next]