1. e099b37 #5391 make mmap work exclusively with bytes by Benjamin Peterson · 15 years ago
  2. a921fb0 Py_BuildValue's 'c' code should use byte strings #5666 by Benjamin Peterson · 15 years ago
  3. 0e7aa8c Update a comment about why the __module__ can sometime be NULL. by Alexandre Vassalotti · 15 years ago
  4. 944820b Issue #5640: Fix _multibytecodec so that CJK codecs don't repeat by Hye-Shik Chang · 15 years ago
  5. 4b413d3 Merged revisions 70953 via svnmerge from by Jesse Noller · 15 years ago
  6. e0cbd69 Merged revisions 70931 via svnmerge from by Jack Diederich · 15 years ago
  7. a1b4901 fix TextIOWrapper.read() when the buffer is not readable #5628 by Benjamin Peterson · 15 years ago
  8. a931404 Merged revisions 70908 via svnmerge from by Jesse Noller · 15 years ago
  9. 2ca1501 Merged revisions 70879 via svnmerge from by Hirokazu Yamamoto · 15 years ago
  10. 32d68c2 Merged revisions 70849,70852 via svnmerge from by Jesse Noller · 15 years ago
  11. 16caab0 Merged revisions 70800 via svnmerge from by Hirokazu Yamamoto · 15 years ago
  12. f8d0085 merge 70783 to py3k by Jesse Noller · 15 years ago
  13. 5879d41 Merged revisions 70578,70599,70641-70642,70650,70660-70661,70674,70691,70697-70698,70700,70704 via svnmerge from by Benjamin Peterson · 15 years ago
  14. 00a9b73 Rewrite IOBase.readall to avoid costly string resizes, and plug a leak by Antoine Pitrou · 15 years ago
  15. 7d037a7 Plug another leak, and finally add a test for #1174606 (read() from /dev/zero). by Antoine Pitrou · 15 years ago
  16. 8e21fb2 Fix leak in _fileio.c (patch by Hirokazu Yamamoto) by Antoine Pitrou · 15 years ago
  17. b40b947 Issue #5463: Remove _PY_STRUCT_RANGE_CHECKING constant from struct by Mark Dickinson · 15 years ago
  18. 9041daa Restore a conditional I removed by mistake. by Antoine Pitrou · 15 years ago
  19. 66994e1 Issue #1174606: Calling read() without arguments of an unbounded file by Antoine Pitrou · 15 years ago
  20. 24f3629 Issue #5592: make the encodefuncs symbol static by Antoine Pitrou · 15 years ago
  21. 59406a9 officially deprecated max_buffer_size by Benjamin Peterson · 15 years ago
  22. a8abe86 http://bugs.python.org/issue5544 by Kristján Valur Jónsson · 15 years ago
  23. 649170b http://bugs.python.org/issue5552 by Kristján Valur Jónsson · 15 years ago
  24. 8915e0e http://bugs.python.org/issue5544 by Kristján Valur Jónsson · 15 years ago
  25. dc7c128 http://bugs.python.org/issue5544 by Kristján Valur Jónsson · 15 years ago
  26. 3a652b1 Merged revisions 70546 via svnmerge from by Antoine Pitrou · 15 years ago
  27. 21e5fcd - Modules/Setup.dist: Readd the _functools extension, lost in the io-c merge. by Matthias Klose · 15 years ago
  28. f07d002 Merged revisions 70342,70385-70387,70389-70390,70392-70393,70395,70400,70405-70406,70418,70438,70464,70468 via svnmerge from by Benjamin Peterson · 15 years ago
  29. ae681df - Issue #5463: In struct module, remove deprecated overflow wrapping by Mark Dickinson · 15 years ago
  30. b487e63 stringio doesn't have an encoding by Benjamin Peterson · 15 years ago
  31. 081dfee Issue 4474: On platforms with sizeof(wchar_t) == 4 and by Mark Dickinson · 15 years ago
  32. a28fcfd Issue #5016: FileIO.seekable() could return False if the file position by Antoine Pitrou · 15 years ago
  33. 0ae29cf The error detection code in FileIO.close() could fail to reflect the `errno` value, and report it as -1 instead. by Antoine Pitrou · 15 years ago
  34. 5bb0f0e For collections.deque() objects, expose the maxlen parameter as a read-only attribute. by Raymond Hettinger · 15 years ago
  35. 060c7f6 Small optimization for corner case where maxlen==0. by Raymond Hettinger · 15 years ago
  36. c4c0eae give TextIOWrapper a repr that tells you the encoding by Benjamin Peterson · 15 years ago
  37. 56f5be5 Merged revisions 70218-70219 via svnmerge from svn+ssh://pythondev/python/trunk by Guilherme Polo · 15 years ago
  38. 0e94189 Remove double negative by Antoine Pitrou · 15 years ago
  39. 66913e2 Issue #5433: Excessive newline detection optimization in IncrementalNewlineDecoder by Antoine Pitrou · 15 years ago
  40. 2db74c2 Issue #5429: unaligned access in TextIOWrapper cookie parsing (segfaults on SPARC CPUs, and possibly others) by Antoine Pitrou · 15 years ago
  41. 54d0df6 Issue #5334: array.fromfile() failed to insert values when EOFError was raised. by Hirokazu Yamamoto · 15 years ago
  42. 36a30ce properly export PyExc_BlockingIOError by Benjamin Peterson · 15 years ago
  43. 8e722bc Merged revisions 70189 via svnmerge from by Hirokazu Yamamoto · 15 years ago
  44. 9a8082f FileIO.readinto() isn't going anywhere by Benjamin Peterson · 15 years ago
  45. 1fcadce Fix failures introduced by buggy merge (2) by Antoine Pitrou · 15 years ago
  46. 7fb111b Fix failures introduced by buggy merge (1) by Antoine Pitrou · 15 years ago
  47. 4fa88fa merge the io-c branch: C implementation of the io module by Benjamin Peterson · 15 years ago
  48. 8404749 Fixed memory leak on failure. This is related to issue5403 but won't crash on py3k. by Hirokazu Yamamoto · 15 years ago
  49. 45ed72d Issue5407 Broken Py3.1 release build in Visual Studio 2005 by Kristján Valur Jónsson · 15 years ago
  50. b5be6d4 re-merge r69268 (issue4804) from trunk: by Amaury Forgeot d'Arc · 15 years ago
  51. 56420b4 #4967 fix buggy read() by Benjamin Peterson · 15 years ago
  52. 1bd2e29 Merged revisions 70062 via svnmerge from by Mark Dickinson · 15 years ago
  53. 10c9937 Merged revisions 70056 via svnmerge from by Hirokazu Yamamoto · 15 years ago
  54. 39c6dea Merged revisions 70052 via svnmerge from by Hirokazu Yamamoto · 15 years ago
  55. 26338d1 another instance of #804543: use strdup() when saving the result of setlocale() because it could be overwritten by subsequent setlocale()s. by Georg Brandl · 15 years ago
  56. 131733a - Modules/Setup.dist: Mention _heapq by Matthias Klose · 15 years ago
  57. 912fbca Merged revisions 69855 via svnmerge from by Benjamin Peterson · 15 years ago
  58. eb13fdd Port r69837: Fix keyword arguments for itertools.count(). Step arg without a start arg was ignored. by Raymond Hettinger · 15 years ago
  59. 934896d Merged revisions 69846 via svnmerge from by Mark Dickinson · 15 years ago
  60. 2fc224f #5306: Fix compilation on Windows by properly merging change 69495. by Amaury Forgeot d'Arc · 15 years ago
  61. d75fcb4 Merged revisions 69576,69579-69580,69589,69619-69620,69633,69703-69704,69728-69730 via svnmerge from by Benjamin Peterson · 15 years ago
  62. f4bb7f2 Add keyword arg support to itertools.repeat(). by Raymond Hettinger · 15 years ago
  63. 15a4950 Add keyword arg support to itertools.compress(). by Raymond Hettinger · 15 years ago
  64. 0654ccd Merged revisions 69714,69718 via svnmerge from by Hirokazu Yamamoto · 15 years ago
  65. 25e26a0 Merged revisions 69688,69690 via svnmerge from by Benjamin Peterson · 15 years ago
  66. d6280f4 Add GC support to count() objects. by Raymond Hettinger · 15 years ago
  67. 575d133 Issue #5249: time.strftime returned malformed string when format string by Hirokazu Yamamoto · 15 years ago
  68. 9e8dbbc Add keyword argument support to itertools.count(). by Raymond Hettinger · 16 years ago
  69. 75c3d6f #3694: fix an "XXX undetected error" leak in struct. by Georg Brandl · 16 years ago
  70. f91df04 Merged revisions 69364-69365,69409-69410,69413,69417,69435,69442,69447,69495,69519-69521 via svnmerge from by Benjamin Peterson · 16 years ago
  71. 3e264e1 This fixes issue5143 and includes a test. by Ronald Oussoren · 16 years ago
  72. 6dfff19 Fix spaces/tabs in example. by Raymond Hettinger · 16 years ago
  73. 365a186 Fixes Issue #3745: Fix hashlib to always reject unicode and non by Gregory P. Smith · 16 years ago
  74. 3072921 Issue 5032: added a step argument to itertools.count() and allowed non-integer arguments. by Raymond Hettinger · 16 years ago
  75. 465c802 (The fix has been slightly adjusted.) by Thomas Heller · 16 years ago
  76. 2177607 Merged revisions 69498 via svnmerge from by Mark Dickinson · 16 years ago
  77. a86f2c0 Merged revisions 69466,69480 via svnmerge from by Benjamin Peterson · 16 years ago
  78. 3a409e9 This header was supposed to be committed in r69476 by Guilherme Polo · 16 years ago
  79. 6691772 Merged revisions 69474 via svnmerge from svn+ssh://pythondev/python/trunk by Guilherme Polo · 16 years ago
  80. b681df4 Merged revisions 69473 via svnmerge from svn+ssh://pythondev/python/trunk by Guilherme Polo · 16 years ago
  81. 9a1d6e3 Merged revisions 69425 via svnmerge from by Nick Coghlan · 16 years ago
  82. 491aee2 Merged revisions 69376-69377 via svnmerge from svn+ssh://pythondev/python/trunk by Guilherme Polo · 16 years ago
  83. 5c6d787 Merged revisions 69129-69131,69139-69140,69143,69154-69159,69169,69288-69289,69293,69297-69301,69348 via svnmerge from by Benjamin Peterson · 16 years ago
  84. d943262 Merged revisions 69260 via svnmerge from by Thomas Heller · 16 years ago
  85. 7f42395 Merged revisions 69217,69219 via svnmerge from svn+ssh://pythondev/python/trunk by Guilherme Polo · 16 years ago
  86. e94c679 Issue #1717: rename tp_compare to tp_reserved. I'll change the by Mark Dickinson · 16 years ago
  87. 211c625 Issue #1717, stage 2: remove uses of tp_compare in Modules and most Objects. by Mark Dickinson · 16 years ago
  88. c4bbc8d Merged revisions 68884,68973,68978,69003,69083,69112-69113 via svnmerge from by Benjamin Peterson · 16 years ago
  89. 811f3dc Fix typo. by Raymond Hettinger · 16 years ago
  90. 3522a58 Update itertools.__doc__ to include all tools. by Raymond Hettinger · 16 years ago
  91. d07d939 Forward port r69001: itertools.combinations_with_replacement(). by Raymond Hettinger · 16 years ago
  92. 26dd760 Fix signed/unsigned mismatch. by Raymond Hettinger · 16 years ago
  93. 6b3b0fc Forward port r68941 adding itertools.compress(). by Raymond Hettinger · 16 years ago
  94. 89e1296 As discussed on python-dev, remove several operator functions by Raymond Hettinger · 16 years ago
  95. cddcf44 Merged revisions 68903,68906 via svnmerge from by Mark Dickinson · 16 years ago
  96. e4bccb7 Factor common branch in load_long(). by Alexandre Vassalotti · 16 years ago
  97. 446f7ff Remove unnecessary copying in load_long(). by Alexandre Vassalotti · 16 years ago
  98. 44bf631 Followup of #4874: also fix multibytecodec.c by Antoine Pitrou · 16 years ago
  99. 81fabdb Issue #4874: Most builtin decoders now reject unicode input. by Antoine Pitrou · 16 years ago
  100. 08838b6 Merged revisions 68835 via svnmerge from by Antoine Pitrou · 16 years ago