1. 64e9127 Merge 3.5 by Victor Stinner · 7 years ago
  2. a5917d1 Issue #29300: test_struct tests unpack_from() with keywords by Victor Stinner · 7 years ago
  3. ed4aa83 require a long long data type (closes #27961) by Benjamin Peterson · 8 years ago
  4. 7c4e409 Issue #11734: Add support for IEEE 754 half-precision floats to the struct module. Original patch by Eli Stevens. by Mark Dickinson · 8 years ago
  5. 38c707e Issue #21741: Update 147 test modules to use test discovery. by Zachary Ware · 9 years ago
  6. 46e1ce2 Issue #18783: Removed existing mentions of Python long type in docstrings, by Serhiy Storchaka · 11 years ago
  7. 9594942 Issue #18783: Removed existing mentions of Python long type in docstrings, by Serhiy Storchaka · 11 years ago
  8. fff61f2 Issue #14596: The struct.Struct() objects now use more compact implementation. by Serhiy Storchaka · 11 years ago
  9. 9f14681 Issue #17804: New function ``struct.iter_unpack`` allows for streaming struct unpacking. by Antoine Pitrou · 11 years ago
  10. f7a17b4 Replace IOError with OSError (#16715) by Andrew Svetlov · 11 years ago
  11. 2b16844 Issue #15467: Merge 3.2 by Martin v. Löwis · 12 years ago
  12. 33f7997 Issue #15467: Move helpers for __sizeof__ tests into test_support. by Martin v. Löwis · 12 years ago
  13. bb9b1c1 Issue #15402: Simplify Struct.__sizeof__ and make tests more precise. by Meador Inge · 12 years ago
  14. 90bc2dbc Issue #15402: Simplify Struct.__sizeof__ and make tests more precise. by Meador Inge · 12 years ago
  15. 653e4b3 MERGE: Better test for Issue #15402: Add a __sizeof__ method to struct.Struct by Jesus Cea · 12 years ago
  16. 189fdf1 Better test for Issue #15402: Add a __sizeof__ method to struct.Struct by Jesus Cea · 12 years ago
  17. 9f65899 Issue #15402: Add a __sizeof__ method to struct.Struct. by Meador Inge · 12 years ago
  18. b14d8c9 Issue #15402: Add a __sizeof__ method to struct.Struct. by Meador Inge · 12 years ago
  19. 45d9c91 Issue #3163: The struct module gets new format characters 'n' and 'N' by Antoine Pitrou · 13 years ago
  20. 3b3499b #11565: Merge with 3.1. by Ezio Melotti · 13 years ago
  21. 1392500 #11565: Fix several typos. Patch by Piotr Kasprzyk. by Ezio Melotti · 13 years ago
  22. da9ec99 Issue #10783: struct.pack() doesn't encode implicitly unicode to UTF-8 by Victor Stinner · 13 years ago
  23. 1ce3eb5 Issue #8990: array.fromstring() and array.tostring() get renamed to by Antoine Pitrou · 14 years ago
  24. 5b1d35b Add test for memory leak reported in issue 9422. by Mark Dickinson · 14 years ago
  25. f1046ca Issue #4770: Restrict binascii module to accept only bytes (as specified). by Florent Xicluna · 14 years ago
  26. 94628ee Yield more information on failure in test_struct boolean test. by Mark Dickinson · 14 years ago
  27. 0d62f5b ValueError is eventually what we want to move to, I suppose by Benjamin Peterson · 14 years ago
  28. 4b83af9 wrap by Benjamin Peterson · 14 years ago
  29. a04a32d allow more exceptions by Benjamin Peterson · 14 years ago
  30. ccbcf53 OverflowError is fine by Benjamin Peterson · 14 years ago
  31. 003f523 Merged revisions 82637 via svnmerge from by Benjamin Peterson · 14 years ago
  32. f092c7c Merged revisions 82628,82630 via svnmerge from by Benjamin Peterson · 14 years ago
  33. 6ef08a0 ValueError in this case is also acceptable by Benjamin Peterson · 14 years ago
  34. de73c45 don't ignore exceptions from PyObject_IsTrue by Benjamin Peterson · 14 years ago
  35. c937dc2 this needn't be in the loop by Benjamin Peterson · 14 years ago
  36. 4a3acca Merged revisions 81897-81898,81902 via svnmerge from by Mark Dickinson · 14 years ago
  37. b72e686 Fix more undefined-behaviour inducing overflow checks in struct module. by Mark Dickinson · 14 years ago
  38. ab4096f Avoid possible undefined behaviour from signed overflow. by Mark Dickinson · 14 years ago
  39. 177e853 Issue #3129: Trailing digits in format string are no longer ignored. by Alexander Belopolsky · 14 years ago
  40. e9493a1 Merged revisions 79745 via svnmerge from by Mark Dickinson · 14 years ago
  41. 4c28ddc Merged revisions 79740 via svnmerge from by Ezio Melotti · 14 years ago
  42. c593577 Merged revisions 79674 via svnmerge from by Mark Dickinson · 14 years ago
  43. b9f751a Clean up integer tests in test_struct, and bring them more in line with the trunk tests. by Mark Dickinson · 14 years ago
  44. 9482032 Merged revisions 78692 via svnmerge from by Mark Dickinson · 14 years ago
  45. 79d38ac Remove unused imports & clean up sys imports in test_struct. by Mark Dickinson · 14 years ago
  46. ab91fde Merged revisions 73715 via svnmerge from by Georg Brandl · 15 years ago
  47. c9c0f20 convert old fail* assertions to assert* by Benjamin Peterson · 15 years ago
  48. ea835e7 Issue #5463: Remove deprecated float coercion from struct module, along by Mark Dickinson · 15 years ago
  49. 7fe73a1 Merged revisions 70837,70864,70878,71004,71032,71043 via svnmerge from by Benjamin Peterson · 15 years ago
  50. b40b947 Issue #5463: Remove _PY_STRUCT_RANGE_CHECKING constant from struct by Mark Dickinson · 15 years ago
  51. ae681df - Issue #5463: In struct module, remove deprecated overflow wrapping by Mark Dickinson · 15 years ago
  52. 75c3d6f #3694: fix an "XXX undetected error" leak in struct. by Georg Brandl · 15 years ago
  53. 2177607 Merged revisions 69498 via svnmerge from by Mark Dickinson · 15 years ago
  54. b1441c7 Merged revisions 68112,68115,68120,68133,68141-68142,68145-68146,68148-68149 via svnmerge from by Georg Brandl · 15 years ago
  55. 1cd0247 Merged revisions 66321 via svnmerge from by Brett Cannon · 16 years ago
  56. b130493 Make test.test_support.catch_warnings more robust as discussed on python-dev. Also add explicit tests for it to test_warnings. (forward port of r64910 from trunk) by Nick Coghlan · 16 years ago
  57. f9f2982 Another merge error, seen on bigendian machines by Amaury Forgeot d'Arc · 16 years ago
  58. 35c8658 Merged revisions 64119,64147,64150,64165,64219-64221,64229-64230,64233,64235,64253,64278,64280,64301,64303,64320,64328,64338-64339 via svnmerge from by Amaury Forgeot d'Arc · 16 years ago
  59. fdfe62d Merged revisions 64089,64098,64100-64102,64113,64115-64116,64118,64120,64132,64342 via svnmerge from by Amaury Forgeot d'Arc · 16 years ago
  60. ee8712c #2621 rename test.test_support to test.support by Benjamin Peterson · 16 years ago
  61. 0eb6f69 Fix failing test test_bool following merge from trunk. by Mark Dickinson · 16 years ago
  62. dd15f6c Merged revisions 61239-61249,61252-61257,61260-61264,61269-61275,61278-61279,61285-61286,61288-61290,61298,61303-61305,61312-61314,61317,61329,61332,61344,61350-61351,61363-61376,61378-61379,61382-61383,61387-61388,61392,61395-61396,61402-61403 via svnmerge from by Christian Heimes · 16 years ago
  63. a37d4c6 Removed PyInt_GetMax and sys.maxint by Christian Heimes · 17 years ago
  64. 254348e Rename buffer -> bytearray. by Guido van Rossum · 17 years ago
  65. 98297ee Merging the py3k-pep3137 branch back into the py3k branch. by Guido van Rossum · 17 years ago
  66. bd1c68c Patch #1303: Adapt str8 constructor to bytes (now buffer) one. by Georg Brandl · 17 years ago
  67. 4043001 Make str/str8 comparisons return True/False for !=/==. by Brett Cannon · 17 years ago
  68. 75a902d Patch 1280, by Alexandre Vassalotti. by Guido van Rossum · 17 years ago
  69. bae07c9 Breaking ground for PEP 3137 implementation: by Guido van Rossum · 17 years ago
  70. 3add4d7 Raise statement normalization in Lib/test/. by Collin Winter · 17 years ago
  71. af554a0 First merge from the trunk straight into the py3k branch. I'm not by Guido van Rossum · 17 years ago
  72. 99c0c22 Fix test_struct. A bunch of array and bytes issues. by Guido van Rossum · 17 years ago
  73. e625fd5 Make struct tests pass. by Guido van Rossum · 17 years ago
  74. 805365e Merged revisions 55007-55179 via svnmerge from by Guido van Rossum · 17 years ago
  75. aa97f04 Fix various spots where int/long and str/unicode unification by Walter Dörwald · 17 years ago
  76. d8faa36 Merged revisions 53952-54987 via svnmerge from by Guido van Rossum · 17 years ago
  77. 221085d Change all the function attributes from func_* -> __*__. This gets rid by Neal Norwitz · 17 years ago
  78. be19ed7 Fix most trivially-findable print statements. by Guido van Rossum · 17 years ago
  79. 9fe394c Merged revisions 53538-53622 via svnmerge from by Thomas Wouters · 17 years ago
  80. b213704 Merged revisions 53451-53537 via svnmerge from by Thomas Wouters · 17 years ago
  81. e2a383d Rip out 'long' and 'L'-suffixed integer literals. (Rough first cut.) by Guido van Rossum · 17 years ago
  82. 902d6eb Merged revisions 53005-53303 via svnmerge from by Thomas Wouters · 17 years ago
  83. e2b70bc Get rid of dict.has_key(). Boy this has a lot of repercussions! by Guido van Rossum · 18 years ago
  84. 0e3f591 Merged revisions 46753-51188 via svnmerge from by Thomas Wouters · 18 years ago
  85. 73e5a5b Merge the rest of the trunk. by Thomas Wouters · 18 years ago
  86. 4d70c3d Partially merge trunk into p3yk. The removal of Mac/Tools is confusing svn by Thomas Wouters · 18 years ago
  87. 477c8d5 Much-needed merge (using svnmerge.py this time) of trunk changes into p3yk. by Thomas Wouters · 18 years ago
  88. 9f90439 Patch #1011240: SystemError generated by struct.pack('P', 'foo'). by Armin Rigo · 20 years ago
  89. 70a6b49 Replace backticks with repr() or "%r" by Walter Dörwald · 20 years ago
  90. d50ade6 SF bug 705836: struct.pack of floats in non-native endian order by Tim Peters · 21 years ago
  91. 68468eb Get rid of many apply() calls. by Guido van Rossum · 21 years ago
  92. 04f357c Get rid of relative imports in all unittests. Now anything that by Barry Warsaw · 22 years ago
  93. 0891ac0 The 'p' (Pascal string) pack code acts unreasonably when the string size by Tim Peters · 23 years ago
  94. 3eec38a Added "i" and "l" to the list of std-mode struct codes that don't range- by Tim Peters · 23 years ago
  95. 17e17d4 Generalize the new qQ std-mode tests to all int codes (bBhHiIlLqQ). by Tim Peters · 23 years ago
  96. da9c5b3 The new {b,l}p_{u,}longlong() didn't check get_pylong()'s return for NULL. by Tim Peters · 23 years ago
  97. 7a3bfc3 Added q/Q standard (x-platform 8-byte ints) mode in struct module. by Tim Peters · 23 years ago
  98. c533edc Renamed some stuff to tell the truth about what it does. by Tim Peters · 23 years ago
  99. 7b9542a Initial support for 'q' and 'Q' struct format codes: for now, only in by Tim Peters · 23 years ago
  100. 132dce2 Update the code to better reflect recommended style: by Fred Drake · 24 years ago