1. 3b3499b #11565: Merge with 3.1. by Ezio Melotti · 13 years ago
  2. 1392500 #11565: Fix several typos. Patch by Piotr Kasprzyk. by Ezio Melotti · 13 years ago
  3. da9ec99 Issue #10783: struct.pack() doesn't encode implicitly unicode to UTF-8 by Victor Stinner · 14 years ago
  4. 1ce3eb5 Issue #8990: array.fromstring() and array.tostring() get renamed to by Antoine Pitrou · 14 years ago
  5. 5b1d35b Add test for memory leak reported in issue 9422. by Mark Dickinson · 14 years ago
  6. f1046ca Issue #4770: Restrict binascii module to accept only bytes (as specified). by Florent Xicluna · 14 years ago
  7. 94628ee Yield more information on failure in test_struct boolean test. by Mark Dickinson · 14 years ago
  8. 0d62f5b ValueError is eventually what we want to move to, I suppose by Benjamin Peterson · 14 years ago
  9. 4b83af9 wrap by Benjamin Peterson · 14 years ago
  10. a04a32d allow more exceptions by Benjamin Peterson · 14 years ago
  11. ccbcf53 OverflowError is fine by Benjamin Peterson · 14 years ago
  12. 003f523 Merged revisions 82637 via svnmerge from by Benjamin Peterson · 14 years ago
  13. f092c7c Merged revisions 82628,82630 via svnmerge from by Benjamin Peterson · 14 years ago
  14. 6ef08a0 ValueError in this case is also acceptable by Benjamin Peterson · 14 years ago
  15. de73c45 don't ignore exceptions from PyObject_IsTrue by Benjamin Peterson · 14 years ago
  16. c937dc2 this needn't be in the loop by Benjamin Peterson · 14 years ago
  17. 4a3acca Merged revisions 81897-81898,81902 via svnmerge from by Mark Dickinson · 14 years ago
  18. b72e686 Fix more undefined-behaviour inducing overflow checks in struct module. by Mark Dickinson · 14 years ago
  19. ab4096f Avoid possible undefined behaviour from signed overflow. by Mark Dickinson · 14 years ago
  20. 177e853 Issue #3129: Trailing digits in format string are no longer ignored. by Alexander Belopolsky · 14 years ago
  21. e9493a1 Merged revisions 79745 via svnmerge from by Mark Dickinson · 14 years ago
  22. 4c28ddc Merged revisions 79740 via svnmerge from by Ezio Melotti · 14 years ago
  23. c593577 Merged revisions 79674 via svnmerge from by Mark Dickinson · 14 years ago
  24. b9f751a Clean up integer tests in test_struct, and bring them more in line with the trunk tests. by Mark Dickinson · 14 years ago
  25. 9482032 Merged revisions 78692 via svnmerge from by Mark Dickinson · 14 years ago
  26. 79d38ac Remove unused imports & clean up sys imports in test_struct. by Mark Dickinson · 14 years ago
  27. ab91fde Merged revisions 73715 via svnmerge from by Georg Brandl · 15 years ago
  28. c9c0f20 convert old fail* assertions to assert* by Benjamin Peterson · 15 years ago
  29. ea835e7 Issue #5463: Remove deprecated float coercion from struct module, along by Mark Dickinson · 15 years ago
  30. 7fe73a1 Merged revisions 70837,70864,70878,71004,71032,71043 via svnmerge from by Benjamin Peterson · 15 years ago
  31. b40b947 Issue #5463: Remove _PY_STRUCT_RANGE_CHECKING constant from struct by Mark Dickinson · 15 years ago
  32. ae681df - Issue #5463: In struct module, remove deprecated overflow wrapping by Mark Dickinson · 15 years ago
  33. 75c3d6f #3694: fix an "XXX undetected error" leak in struct. by Georg Brandl · 15 years ago
  34. 2177607 Merged revisions 69498 via svnmerge from by Mark Dickinson · 15 years ago
  35. b1441c7 Merged revisions 68112,68115,68120,68133,68141-68142,68145-68146,68148-68149 via svnmerge from by Georg Brandl · 16 years ago
  36. 1cd0247 Merged revisions 66321 via svnmerge from by Brett Cannon · 16 years ago
  37. 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
  38. f9f2982 Another merge error, seen on bigendian machines by Amaury Forgeot d'Arc · 16 years ago
  39. 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
  40. 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
  41. ee8712c #2621 rename test.test_support to test.support by Benjamin Peterson · 16 years ago
  42. 0eb6f69 Fix failing test test_bool following merge from trunk. by Mark Dickinson · 16 years ago
  43. 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
  44. a37d4c6 Removed PyInt_GetMax and sys.maxint by Christian Heimes · 17 years ago
  45. 254348e Rename buffer -> bytearray. by Guido van Rossum · 17 years ago
  46. 98297ee Merging the py3k-pep3137 branch back into the py3k branch. by Guido van Rossum · 17 years ago
  47. bd1c68c Patch #1303: Adapt str8 constructor to bytes (now buffer) one. by Georg Brandl · 17 years ago
  48. 4043001 Make str/str8 comparisons return True/False for !=/==. by Brett Cannon · 17 years ago
  49. 75a902d Patch 1280, by Alexandre Vassalotti. by Guido van Rossum · 17 years ago
  50. bae07c9 Breaking ground for PEP 3137 implementation: by Guido van Rossum · 17 years ago
  51. 3add4d7 Raise statement normalization in Lib/test/. by Collin Winter · 17 years ago
  52. af554a0 First merge from the trunk straight into the py3k branch. I'm not by Guido van Rossum · 17 years ago
  53. 99c0c22 Fix test_struct. A bunch of array and bytes issues. by Guido van Rossum · 17 years ago
  54. e625fd5 Make struct tests pass. by Guido van Rossum · 17 years ago
  55. 805365e Merged revisions 55007-55179 via svnmerge from by Guido van Rossum · 17 years ago
  56. aa97f04 Fix various spots where int/long and str/unicode unification by Walter Dörwald · 17 years ago
  57. d8faa36 Merged revisions 53952-54987 via svnmerge from by Guido van Rossum · 17 years ago
  58. 221085d Change all the function attributes from func_* -> __*__. This gets rid by Neal Norwitz · 17 years ago
  59. be19ed7 Fix most trivially-findable print statements. by Guido van Rossum · 17 years ago
  60. 9fe394c Merged revisions 53538-53622 via svnmerge from by Thomas Wouters · 17 years ago
  61. b213704 Merged revisions 53451-53537 via svnmerge from by Thomas Wouters · 17 years ago
  62. e2a383d Rip out 'long' and 'L'-suffixed integer literals. (Rough first cut.) by Guido van Rossum · 17 years ago
  63. 902d6eb Merged revisions 53005-53303 via svnmerge from by Thomas Wouters · 18 years ago
  64. e2b70bc Get rid of dict.has_key(). Boy this has a lot of repercussions! by Guido van Rossum · 18 years ago
  65. 0e3f591 Merged revisions 46753-51188 via svnmerge from by Thomas Wouters · 18 years ago
  66. 73e5a5b Merge the rest of the trunk. by Thomas Wouters · 18 years ago
  67. 4d70c3d Partially merge trunk into p3yk. The removal of Mac/Tools is confusing svn by Thomas Wouters · 18 years ago
  68. 477c8d5 Much-needed merge (using svnmerge.py this time) of trunk changes into p3yk. by Thomas Wouters · 18 years ago
  69. 9f90439 Patch #1011240: SystemError generated by struct.pack('P', 'foo'). by Armin Rigo · 20 years ago
  70. 70a6b49 Replace backticks with repr() or "%r" by Walter Dörwald · 20 years ago
  71. d50ade6 SF bug 705836: struct.pack of floats in non-native endian order by Tim Peters · 21 years ago
  72. 68468eb Get rid of many apply() calls. by Guido van Rossum · 21 years ago
  73. 04f357c Get rid of relative imports in all unittests. Now anything that by Barry Warsaw · 22 years ago
  74. 0891ac0 The 'p' (Pascal string) pack code acts unreasonably when the string size by Tim Peters · 23 years ago
  75. 3eec38a Added "i" and "l" to the list of std-mode struct codes that don't range- by Tim Peters · 23 years ago
  76. 17e17d4 Generalize the new qQ std-mode tests to all int codes (bBhHiIlLqQ). by Tim Peters · 23 years ago
  77. da9c5b3 The new {b,l}p_{u,}longlong() didn't check get_pylong()'s return for NULL. by Tim Peters · 23 years ago
  78. 7a3bfc3 Added q/Q standard (x-platform 8-byte ints) mode in struct module. by Tim Peters · 23 years ago
  79. c533edc Renamed some stuff to tell the truth about what it does. by Tim Peters · 23 years ago
  80. 7b9542a Initial support for 'q' and 'Q' struct format codes: for now, only in by Tim Peters · 23 years ago
  81. 132dce2 Update the code to better reflect recommended style: by Fred Drake · 24 years ago
  82. 004d5e6 Make reindent.py happy (convert everything to 4-space indents!). by Fred Drake · 24 years ago
  83. 41360a4 Mass check-in after untabifying all files that need it. by Guido van Rossum · 26 years ago
  84. 04ebf5c Change the ``calcsize*3'' test to be portable to 64-bit machines. by Guido van Rossum · 28 years ago
  85. 420c11c Added f/d tests for specific byte orders. by Guido van Rossum · 28 years ago
  86. 2a37850 Exercise the new feature set somewhat. by Guido van Rossum · 28 years ago
  87. 07a0eec A test of the struct module by Barry Warsaw · 28 years ago