1. cb2b0e4 comply with the evilJavaNamingScheme for attribute names by Benjamin Peterson · 16 years ago
  2. 692428e implement test skipping and expected failures by Benjamin Peterson · 16 years ago
  3. f8387af Issue #4688: Add a heuristic so that tuples and dicts containing only by Antoine Pitrou · 16 years ago
  4. 704dc26 AttributeError can be thrown during recursion errors by Benjamin Peterson · 16 years ago
  5. 2020a59 Issue #5068: Fixed the tarfile._BZ2Proxy.read() method that would loop by Lars Gustäbel · 16 years ago
  6. efc82f7 Issue #4258: Use 30-bit digits for Python longs, on 64-bit platforms. by Mark Dickinson · 16 years ago
  7. 2412299 * Add clearer comment to initialization code. by Raymond Hettinger · 16 years ago
  8. 6ffe852 fix strange errors when setting attributes on tracebacks #4034 by Benjamin Peterson · 16 years ago
  9. b14514a Fix bug in _insert_thousands_sep: too much zero padding could be by Mark Dickinson · 16 years ago
  10. 277859d Issue #2110: Add support for thousands separator and 'n' format specifier by Mark Dickinson · 16 years ago
  11. b065e52 Fix bug in Decimal __format__ method that swapped left and right alignment. by Mark Dickinson · 16 years ago
  12. 2ace4cf Unicode format tests weren't actually testing unicode. This was probably due to the original backport from py3k. by Eric Smith · 16 years ago
  13. 6f42edb Issue 5237, Allow auto-numbered replacement fields in str.format() strings. by Eric Smith · 16 years ago
  14. feeafff Issue #1222: locale.format() bug when the thousands separator is a space character. by Antoine Pitrou · 16 years ago
  15. 6c4cff0 Require implementations for warnings.showwarning() support the 'line' argument. by Brett Cannon · 16 years ago
  16. 56411aa For collections.deque() objects, expose the maxlen parameter as a read-only attribute. by Raymond Hettinger · 16 years ago
  17. bac769b Small optimization for corner case where maxlen==0. by Raymond Hettinger · 16 years ago
  18. 0903306 mmap.resize for anonymous map is not working yet, so changed to real file mapping... by Hirokazu Yamamoto · 16 years ago
  19. 264fc12 Issue #5385: Fixed mmap crash after resize failure on windows. by Hirokazu Yamamoto · 16 years ago
  20. 4179377 Fix some more bugs caused by the backport from 3.x for importlib. by Brett Cannon · 16 years ago
  21. 131af65 Backport 70140, 70141, 70143, and 70144. by Raymond Hettinger · 16 years ago
  22. f17f81d Beef-up tests. by Raymond Hettinger · 16 years ago
  23. bc512d3 Backport PEP 372: OrderedDict() by Raymond Hettinger · 16 years ago
  24. 7d49bba give httplib.IncompleteRead a more sane repr #4308 by Benjamin Peterson · 16 years ago
  25. 68d6852 Backport r69961 to trunk, replacing JUMP_IF_{TRUE,FALSE} with by Jeffrey Yasskin · 16 years ago
  26. b0e10c7 Issue #1733986: Fixed mmap crash in accessing elements of second map object by Hirokazu Yamamoto · 16 years ago
  27. f2dc885 Issue #5386: mmap.write_byte didn't check map size, so it could cause buffer by Hirokazu Yamamoto · 16 years ago
  28. ac10be3 Fix a bug where code was trying to index an int. Left over from the situation by Brett Cannon · 16 years ago
  29. b3dd548 remove deprecated symtable.Symbol methods by Benjamin Peterson · 16 years ago
  30. b7019d8 Expand upon test_site.test_s_option to try to debug its failure. by Brett Cannon · 16 years ago
  31. 8c56f88 Backport 69934: Register xrange() as a Sequence. by Raymond Hettinger · 16 years ago
  32. b03f532 Revert debugging statements, culprit is possibly test_distutils (see #5316) by Antoine Pitrou · 16 years ago
  33. 13d1690 Try to make sense of the test_site buildbot failures by Antoine Pitrou · 16 years ago
  34. 3e4caeb Issue #5341: Fix a variety of spelling errors. by Mark Dickinson · 16 years ago
  35. aa681c7 Fix keyword arguments for itertools.count(). by Raymond Hettinger · 16 years ago
  36. 8725dce Issue 5176: special-case string formatting in BINARY_MODULO implementation. This shows a modest (1-3%) speed-up in templating systems, for example. by Collin Winter · 16 years ago
  37. 8f9a1ee Inline coefficients in gamma(). Add reflection formula. Add comments. by Raymond Hettinger · 16 years ago
  38. f9bce83 Add some cross-references to the docs. Simplify the python code equivalent for izip(). Supply an optional argument for the nth() recipe. by Raymond Hettinger · 16 years ago
  39. 182edae Add keyword arg support to itertools.repeat(). by Raymond Hettinger · 16 years ago
  40. 2e2909f Add keyword arg support to itertools.compress(). by Raymond Hettinger · 16 years ago
  41. 17a837e Issue #5282: Fixed mmap resize on 32bit windows and unix. When offset > 0, by Hirokazu Yamamoto · 16 years ago
  42. f6bbd0e Issue #5292: Fixed mmap crash on its boundary access m[len(m)]. by Hirokazu Yamamoto · 16 years ago
  43. b21d810 Add GC support to count() objects. Backport candidate. by Raymond Hettinger · 16 years ago
  44. 2ffb26f Issue #5260: Various portability and standards compliance fixes, optimizations by Mark Dickinson · 16 years ago
  45. f3715d2 #5179: don't leak PIPE fds when child execution fails. by Georg Brandl · 16 years ago
  46. 95777bb this needn't be a shebang line by Benjamin Peterson · 16 years ago
  47. 76afd3b we're no longer using CVS, so this doesn't have to be binary by Benjamin Peterson · 16 years ago
  48. a403803 Add keyword argument support to itertools.count(). by Raymond Hettinger · 17 years ago
  49. 0638a08 #3694: add test for fix committed in r66693. by Georg Brandl · 17 years ago
  50. ea38826 - Issue #3745: Fix hashlib to always reject unicode and non buffer-api by Gregory P. Smith · 17 years ago
  51. dbe3bfb One more test. by Raymond Hettinger · 17 years ago
  52. aa04461 Add an extra testcase. by Raymond Hettinger · 17 years ago
  53. 31c769c Issue 5032: added a step argument to itertools.count() and allowed non-integer arguments. by Raymond Hettinger · 17 years ago
  54. 3605b5c Issue #1008086: Fixes socket.inet_aton() to always return 4 bytes even by Gregory P. Smith · 17 years ago
  55. 4015f62 Issue #5175: PyLong_AsUnsignedLongLong now raises OverflowError for by Mark Dickinson · 17 years ago
  56. 28d1088 compileall used the ctime of bytecode and source to determine if the bytecode by Brett Cannon · 17 years ago
  57. 322daea Issue 1818: collections.namedtuple() to support automatic renaming of invalid fieldnames. by Raymond Hettinger · 17 years ago
  58. 55bdb8e Checking for tk availability before continuing (basically the same that is done in test_ttk_guionly) by Guilherme Polo · 17 years ago
  59. bbb7efd Some tests for Tkinter.Text.search by Guilherme Polo · 17 years ago
  60. b20af94 Issue #5170: Fixed Unicode output bug in logging and added test case. This is a regression which did not occur in 2.5. by Vinay Sajip · 17 years ago
  61. 0194f5b Issue #4512 closeout: Make ZipImport.get_filename() a public method by Nick Coghlan · 17 years ago
  62. d39600e Issue 4195: Restore the ability to execute packages with the -m switch (but this time in a way that leaves the import machinery in a valid state). (Original patch by Andi Vajda) by Nick Coghlan · 17 years ago
  63. 096c3ad make destinsrc private by Benjamin Peterson · 17 years ago
  64. f8741ea Add test for issue #999042, explict global statement works. by Neil Schemenauer · 17 years ago
  65. 8573d62 Fix broken test in test_hotshot. Treating the current directory as an by Neil Schemenauer · 17 years ago
  66. 8e5e438 Eliminated the need to use ttk.__loadtk__ and the problems related it. by Guilherme Polo · 17 years ago
  67. 5561986 Ivan on IRC in #twisted reported this crasher. by Armin Rigo · 17 years ago
  68. e20f54f Fix a number of Win32ErrorTests error cases. chmod wasn't being tested. 'access' never raises an error. by Kristján Valur Jónsson · 17 years ago
  69. 81fe093 Implement issue #4285, convert sys.version_info to a named by Eric Smith · 17 years ago
  70. d507afd Minor doc fixups. by Raymond Hettinger · 17 years ago
  71. fd4c872 issue 4804: Provide checks for the format string of strftime, and for the "mode" string of fopen on Windows. These strings are user provided from python and so we can avoid invoking the C runtime invalid parameter handler by first checking that they are valid. by Kristján Valur Jónsson · 17 years ago
  72. 2c8585b Register decimals as numbers.Number by Raymond Hettinger · 17 years ago
  73. d6fc262 Validate that __length_hint__ returns a usable result. by Raymond Hettinger · 17 years ago
  74. b516370 Issue 1242657: list(obj) can swallow KeyboardInterrupt. by Raymond Hettinger · 17 years ago
  75. 3b331dd Restore Tkinter.Tk._loadtk so this test doesn't fail for problems by Guilherme Polo · 17 years ago
  76. de1a8b7 - Issue #5104: The socket module now raises OverflowError when 16-bit port and by Gregory P. Smith · 17 years ago
  77. f709ab8 Add an extra test for long <-> float hash equivalence. by Mark Dickinson · 17 years ago
  78. 1de05e9 check the errno in bad fd cases by Benjamin Peterson · 17 years ago
  79. b3619be make _tkinter._flatten check the result of PySequence_Size for errors #3880 by Benjamin Peterson · 17 years ago
  80. 707c593 Issue #2047: shutil.move() could believe that its destination path was by Antoine Pitrou · 17 years ago
  81. f779e6f Issue 4920: Fixed next() vs __next__() issues in the ABCs by Raymond Hettinger · 17 years ago
  82. b1a98de Issue #5083: New 'gui' resource for regrtest. by Guilherme Polo · 17 years ago
  83. 7a77ee8 * Renaming test_tk_* to test_ttk_* since that is what they are testing. by Guilherme Polo · 17 years ago
  84. cda93aa Added the ttk module. See issue #2983: Ttk support for Tkinter. by Guilherme Polo · 17 years ago
  85. 560f9a8 Add more tests for the powerset() recipe. by Raymond Hettinger · 17 years ago
  86. 2f6c2e0 More exhaustive combinatoric checks. by Raymond Hettinger · 17 years ago
  87. f93f303 Stronger tests for combinatoric relationships. by Raymond Hettinger · 17 years ago
  88. 2976aaa Add tests to verify combinatoric relationships. by Raymond Hettinger · 17 years ago
  89. d081abc Promote combinations_with_replacement() from a recipe to a regular itertool. by Raymond Hettinger · 17 years ago
  90. 93881c6 Backport importlib in the form of providing importlib.import_module(). This has by Brett Cannon · 17 years ago
  91. 68d919e Improved itertools recipe for generating powerset(). by Raymond Hettinger · 17 years ago
  92. 2bcb8e9 Promote compress() from a recipe to being a regular itertool. by Raymond Hettinger · 17 years ago
  93. 1af3b5a Issue #4863, removing remaining bits by Tarek Ziadé · 17 years ago
  94. 78821dd fix building the core with --disable-unicode by Benjamin Peterson · 17 years ago
  95. a3ecd2c Issue #1672332: Fix unpickling of subnormal floats, which was raising by Mark Dickinson · 17 years ago
  96. c187d11 Issue #5025: Fix occasional test_kqueue failure on OS X. by Mark Dickinson · 17 years ago
  97. 0dfcfc8 Issue #4710: Extract directories properly in the zipfile module; by Martin v. Löwis · 17 years ago
  98. 89e759d Add a test for UNC import paths, see issue 3677 by Kristján Valur Jónsson · 17 years ago
  99. 0a1f7b8 Tighten-up the docs for Counter(). by Raymond Hettinger · 17 years ago
  100. 4571f34 Simplify explanation of multiset operations by removing restrictions on negative inputs. by Raymond Hettinger · 17 years ago