1. 4fa88fa merge the io-c branch: C implementation of the io module by Benjamin Peterson · 15 years ago
  2. b212157 Additional test for __reduce__. by Raymond Hettinger · 15 years ago
  3. 5b26fb5 Add another test. by Raymond Hettinger · 15 years ago
  4. b0d56af Give dict views a helpful __repr__. by Raymond Hettinger · 15 years ago
  5. f5b5224 ignore the coding cookie in compile(), exec(), and eval() if the source is a string #4626 by Benjamin Peterson · 15 years ago
  6. 6accb98 Merged revisions 70107 via svnmerge from by Benjamin Peterson · 15 years ago
  7. 2d32f63 PEP 372: OrderedDict() by Raymond Hettinger · 15 years ago
  8. 10c9937 Merged revisions 70056 via svnmerge from by Hirokazu Yamamoto · 15 years ago
  9. 39c6dea Merged revisions 70052 via svnmerge from by Hirokazu Yamamoto · 15 years ago
  10. efb06b0 Merged revisions 69811,69947 via svnmerge from by Benjamin Peterson · 15 years ago
  11. 9de7ec7 http://bugs.python.org/issue4715 by Jeffrey Yasskin · 15 years ago
  12. 9aa53c2 range() should have been registered as a Sequence. by Raymond Hettinger · 15 years ago
  13. eb13fdd Port r69837: Fix keyword arguments for itertools.count(). Step arg without a start arg was ignored. by Raymond Hettinger · 15 years ago
  14. 934896d Merged revisions 69846 via svnmerge from by Mark Dickinson · 15 years ago
  15. 247a9b8 Merged revisions 69415,69591,69593 via svnmerge from by Benjamin Peterson · 15 years ago
  16. 4b06819 fix None errno #5312 by Benjamin Peterson · 15 years ago
  17. 2fc224f #5306: Fix compilation on Windows by properly merging change 69495. by Amaury Forgeot d'Arc · 15 years ago
  18. 2d0c256 Inline coefficients in gamma(). Add reflection formula. Add comments. by Raymond Hettinger · 15 years ago
  19. cdf8ba3 Add some cross-references to the docs. Simplify the python code equivalent for zip(). Supply an optional argument for the nth() recipe. by Raymond Hettinger · 15 years ago
  20. d75fcb4 Merged revisions 69576,69579-69580,69589,69619-69620,69633,69703-69704,69728-69730 via svnmerge from by Benjamin Peterson · 15 years ago
  21. f4bb7f2 Add keyword arg support to itertools.repeat(). by Raymond Hettinger · 15 years ago
  22. 15a4950 Add keyword arg support to itertools.compress(). by Raymond Hettinger · 15 years ago
  23. 0654ccd Merged revisions 69714,69718 via svnmerge from by Hirokazu Yamamoto · 15 years ago
  24. d6280f4 Add GC support to count() objects. by Raymond Hettinger · 15 years ago
  25. 130786f Merged revisions 69617 via svnmerge from by Benjamin Peterson · 15 years ago
  26. 9e8dbbc Add keyword argument support to itertools.count(). by Raymond Hettinger · 15 years ago
  27. 75c3d6f #3694: fix an "XXX undetected error" leak in struct. by Georg Brandl · 15 years ago
  28. c8dcfb6 part of #3613: fix get_host_info() usage of base64.encodestring(). by Georg Brandl · 15 years ago
  29. f91df04 Merged revisions 69364-69365,69409-69410,69413,69417,69435,69442,69447,69495,69519-69521 via svnmerge from by Benjamin Peterson · 15 years ago
  30. c28ad27 Issue 4998: restore utility of __slots__ on Fraction. (forward merge of r68813). by Mark Dickinson · 15 years ago
  31. 3e264e1 This fixes issue5143 and includes a test. by Ronald Oussoren · 15 years ago
  32. de09acf One more test. by Raymond Hettinger · 15 years ago
  33. 8a882a7 Add an extra testcase. by Raymond Hettinger · 15 years ago
  34. 365a186 Fixes Issue #3745: Fix hashlib to always reject unicode and non by Gregory P. Smith · 15 years ago
  35. 3072921 Issue 5032: added a step argument to itertools.count() and allowed non-integer arguments. by Raymond Hettinger · 15 years ago
  36. b353c12 Issue #4631: Fix urlopen() result when an HTTP response uses chunked encoding. by Antoine Pitrou · 15 years ago
  37. 2177607 Merged revisions 69498 via svnmerge from by Mark Dickinson · 15 years ago
  38. a86f2c0 Merged revisions 69466,69480 via svnmerge from by Benjamin Peterson · 15 years ago
  39. befb14f Merged revisions 69481 via svnmerge from by Brett Cannon · 15 years ago
  40. a91790a Merged revisions 69460,69467,69470 via svnmerge from by Guilherme Polo · 15 years ago
  41. ee1ae7c fix len() when __len__() returns a non number type #5137 by Benjamin Peterson · 15 years ago
  42. 598c3a8 Fix broken socket.makefile emulation in test_urllib by Nick Coghlan · 15 years ago
  43. 9a1d6e3 Merged revisions 69425 via svnmerge from by Nick Coghlan · 15 years ago
  44. 3f48ae3 Merged revisions 69419-69420 via svnmerge from by Nick Coghlan · 15 years ago
  45. fa8fba9 Merged revisions 69404 via svnmerge from svn+ssh://pythondev/python/trunk by Guilherme Polo · 15 years ago
  46. 887b3f2 long -> int by Guilherme Polo · 15 years ago
  47. b41bc91 Fixing changes from the last merge. by Guilherme Polo · 15 years ago
  48. 5c6d787 Merged revisions 69129-69131,69139-69140,69143,69154-69159,69169,69288-69289,69293,69297-69301,69348 via svnmerge from by Benjamin Peterson · 15 years ago
  49. 0e5b562 Merged revisions 69331 via svnmerge from by Eric Smith · 15 years ago
  50. d04fa31 Minor doc fixes. by Raymond Hettinger · 15 years ago
  51. 3bbfba8 r69209 caused the fp of HTTPResponse objects to be a io.BufferedReader instead of a socket.SocketIO. This moves the underlying socket.socket object from r.fp._sock to r.fp.raw._sock. Since _sock is an internal object, this should be ok. The change is for the testsuite only, to assert socket state. by Kristján Valur Jónsson · 15 years ago
  52. 82417ca Register decimals as numbers.Number by Raymond Hettinger · 15 years ago
  53. 5d65412 Validate that __length_hint__ returns a usable result. by Raymond Hettinger · 15 years ago
  54. e836423 Issue 1242657: list(obj) can swallow KeyboardInterrupt. by Raymond Hettinger · 15 years ago
  55. f02e0aa Issue #1717: remove the cmp builtin function, the C-API functions by Mark Dickinson · 15 years ago
  56. 211c625 Issue #1717, stage 2: remove uses of tp_compare in Modules and most Objects. by Mark Dickinson · 15 years ago
  57. c4bbc8d Merged revisions 68884,68973,68978,69003,69083,69112-69113 via svnmerge from by Benjamin Peterson · 16 years ago
  58. 0dcc3cd Merged revisions 69100 via svnmerge from by Antoine Pitrou · 16 years ago
  59. ae65018 Beef-up tests for collections ABCs. by Raymond Hettinger · 16 years ago
  60. 1124e71 Issue #4707: round(x, n) now returns an integer when x is an integer. by Mark Dickinson · 16 years ago
  61. 9de29af Merged revisions 69060-69063 via svnmerge from svn+ssh://pythondev/python/trunk by Guilherme Polo · 16 years ago
  62. 5f23848 Merged revisions 69050 via svnmerge from svn+ssh://pythondev/python/trunk by Guilherme Polo · 16 years ago
  63. a56c467 Issue #1717: Remove cmp. Stage 1: remove all uses of cmp and __cmp__ from by Mark Dickinson · 16 years ago
  64. 191e850 Add more tests for the powerset() recipe. by Raymond Hettinger · 16 years ago
  65. 3471b1c Resurrect two buffer tests, converting irepeat() to imul(). Undoes part of r68962. by Raymond Hettinger · 16 years ago
  66. da6bc52 More exhaustive combinatoric checks. by Raymond Hettinger · 16 years ago
  67. d17ad8d Stronger tests for combinatoric relationships. by Raymond Hettinger · 16 years ago
  68. eb508ad Add tests to verify combinatoric relationships. by Raymond Hettinger · 16 years ago
  69. 883d276 Beautify grouper() recipe in docs. by Raymond Hettinger · 16 years ago
  70. d07d939 Forward port r69001: itertools.combinations_with_replacement(). by Raymond Hettinger · 16 years ago
  71. 39df610 Fix test so as to also pass in debug mode by Antoine Pitrou · 16 years ago
  72. 27fe9fc Followup of #4705: we can't skip the binary buffering layer for stdin because FileIO doesn't have a read1() method by Antoine Pitrou · 16 years ago
  73. 6b3b0fc Forward port r68941 adding itertools.compress(). by Raymond Hettinger · 16 years ago
  74. ace6733 Backport r68942: update powerset() recipe. by Raymond Hettinger · 16 years ago
  75. 89e1296 As discussed on python-dev, remove several operator functions by Raymond Hettinger · 16 years ago
  76. 3fe61d5 Merged revisions 68933 via svnmerge from by Tarek Ziadé · 16 years ago
  77. cddcf44 Merged revisions 68903,68906 via svnmerge from by Mark Dickinson · 16 years ago
  78. 3dfe55b Merged revisions 68897 via svnmerge from by Mark Dickinson · 16 years ago
  79. 59e4779 Merged revisions 68885 via svnmerge from by Martin v. Löwis · 16 years ago
  80. d9aab51 Add a test for UNC import paths, see issue 3677 by Kristján Valur Jónsson · 16 years ago
  81. 44bf631 Followup of #4874: also fix multibytecodec.c by Antoine Pitrou · 16 years ago
  82. 81fabdb Issue #4874: Most builtin decoders now reject unicode input. by Antoine Pitrou · 16 years ago
  83. 670eaec Tighten-up the docs for Counter(). by Raymond Hettinger · 16 years ago
  84. e0d1b9f Simplify explanation of multiset operations by removing restrictions on negative inputs. by Raymond Hettinger · 16 years ago
  85. 63b3a97 merge r68839 forward to py3k by Jesse Noller · 16 years ago
  86. 08838b6 Merged revisions 68835 via svnmerge from by Antoine Pitrou · 16 years ago
  87. 9ffc020 Issue 4842, patch 2/2: int('3L') should be invalid in Python 3.x. by Mark Dickinson · 16 years ago
  88. 8dd0514 Issue #4842, patch 1/2: fix pickle in Python 3.x so that pickling with the by Mark Dickinson · 16 years ago
  89. 4d2073a Forward port r68792 and r68789 putting Counter in __all__ and adding Counter buildouts. by Raymond Hettinger · 16 years ago
  90. 7522c74 Merged revisions 68779 via svnmerge from by Benjamin Peterson · 16 years ago
  91. 9053d75 Merged revisions 68763,68773 via svnmerge from by Benjamin Peterson · 16 years ago
  92. 6214edd merge r68768 to py3k by Jesse Noller · 16 years ago
  93. 05e782f reenable the invalid fd test for fdopen by Benjamin Peterson · 16 years ago
  94. 806d402 Merged revisions 68755 via svnmerge from by Benjamin Peterson · 16 years ago
  95. b58dda7 Merged revisions 68633,68648,68667,68706,68718,68720-68721,68724-68727,68739 via svnmerge from by Benjamin Peterson · 16 years ago
  96. e1cdfd7 Merged revisions 68547,68607,68610,68618,68621-68622,68649,68722 via svnmerge from by Benjamin Peterson · 16 years ago
  97. b0516a6 Merge r68708 to py3k, fixes 4449 by Jesse Noller · 16 years ago
  98. 23cbd8a Add initial implementation of importlib. See the NOTES files for what is by Brett Cannon · 16 years ago
  99. c465600 Merged revisions 68676 via svnmerge from by Benjamin Peterson · 16 years ago
  100. 9953a8d fix inspect.formatargspec on functions with keyword-only arguments without defaults #4959 by Benjamin Peterson · 16 years ago