1. a66cf5b Fixed issue #5122: Synchronize tk load failure check to prevent a by Guilherme Polo · 17 years ago
  2. d2ea033 Fixed issue #4890: Handle empty text search pattern in Tkinter.Text.search by Guilherme Polo · 17 years ago
  3. c97c909 Issue #4575: fix Py_IS_INFINITY macro to work correctly on x87 FPUs. by Mark Dickinson · 17 years ago
  4. 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
  5. 0194f5b Issue #4512 closeout: Make ZipImport.get_filename() a public method by Nick Coghlan · 17 years ago
  6. c3623b1 Mention patch submitter in NEWS entry for r69419 by Nick Coghlan · 17 years ago
  7. 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
  8. 92c3b21 Issue #999042: The Python compiler now handles explict global statements by Neil Schemenauer · 17 years ago
  9. 363161a Issue #1731706: Call Tcl_ConditionFinalize for Tcl_Conditions that will by Guilherme Polo · 17 years ago
  10. 14ff18d Partial fix to issue #1731706: memory leak in Tkapp_Call when calling by Guilherme Polo · 17 years ago
  11. 05adf07 fixed #1520877: now distutils reads Read from the environment/Makefile by Tarek Ziadé · 17 years ago
  12. 81fe093 Implement issue #4285, convert sys.version_info to a named by Eric Smith · 17 years ago
  13. d5eb985 Fixed #1276768: verbose option was not used in the code. by Tarek Ziadé · 17 years ago
  14. 0d4fd34 Fixed #5132: enable extensions to link on Solaris by Tarek Ziadé · 17 years ago
  15. b516370 Issue 1242657: list(obj) can swallow KeyboardInterrupt. by Raymond Hettinger · 17 years ago
  16. d7bb4d4 NEWS entry for issue #1581476 by Guilherme Polo · 17 years ago
  17. fee1c7f Issue #4494: Fix build with Py_NO_ENABLE_SHARED on Windows. by Martin v. Löwis · 17 years ago
  18. de1a8b7 - Issue #5104: The socket module now raises OverflowError when 16-bit port and by Gregory P. Smith · 17 years ago
  19. 707c593 Issue #2047: shutil.move() could believe that its destination path was by Antoine Pitrou · 17 years ago
  20. f779e6f Issue 4920: Fixed next() vs __next__() issues in the ABCs by Raymond Hettinger · 17 years ago
  21. b1a98de Issue #5083: New 'gui' resource for regrtest. by Guilherme Polo · 17 years ago
  22. 4eae078 Demos for ttk added. by Guilherme Polo · 17 years ago
  23. cda93aa Added the ttk module. See issue #2983: Ttk support for Tkinter. by Guilherme Polo · 17 years ago
  24. ecf252a Issue 5021: doctest.testfile should set __name__ by Raymond Hettinger · 17 years ago
  25. d081abc Promote combinations_with_replacement() from a recipe to a regular itertool. by Raymond Hettinger · 17 years ago
  26. 93881c6 Backport importlib in the form of providing importlib.import_module(). This has by Brett Cannon · 17 years ago
  27. aaedcef Fixed #1885: --formats=tar,gztar was not working properly in the sdist command by Tarek Ziadé · 17 years ago
  28. 2bcb8e9 Promote compress() from a recipe to being a regular itertool. by Raymond Hettinger · 17 years ago
  29. ef249b1 Fixed #4863: removed distutils.mwerkscompiler by Tarek Ziadé · 17 years ago
  30. b5a4b0a Properly document multiprocessing's logging support, resolve outstanding issues with the custom levels by Jesse Noller · 17 years ago
  31. a3ecd2c Issue #1672332: Fix unpickling of subnormal floats, which was raising by Mark Dickinson · 17 years ago
  32. f081e1c Issue #3881: Help Tcl to load even when started through the by Martin v. Löwis · 17 years ago
  33. 0dfcfc8 Issue #4710: Extract directories properly in the zipfile module; by Martin v. Löwis · 17 years ago
  34. f6da8d1 Issue 3807: multiprocessing fails to compile under --without-threads by Jesse Noller · 17 years ago
  35. e741cc6 Issue #5008: When a file is opened in append mode with the new IO library, by Antoine Pitrou · 17 years ago
  36. 5fb11b2 Issue 5013: Fixed bug in FileHandler when delay was set. by Vinay Sajip · 17 years ago
  37. 933d3a7 Issue 4998: __slots__ on Fractions was useless. by Raymond Hettinger · 17 years ago
  38. e18ef19 allow unicode keyword arguments for the ** syntax #4978 by Benjamin Peterson · 17 years ago
  39. 596d306 add a note about the ftruncate change by Benjamin Peterson · 17 years ago
  40. 9a5b2ad Resolve issue 3321: (segfault) _multiprocessing.Connection() doesn't check handle by Jesse Noller · 17 years ago
  41. 5848d1f raise an OSError for invalid fds #4991 by Benjamin Peterson · 17 years ago
  42. 438195f issue 4301: patch logging to add processName, remove the old _check_logger_class code by Jesse Noller · 17 years ago
  43. 6ab2215 Resolve issue 4449: AssertionError in mp_benchmarks.py by Jesse Noller · 17 years ago
  44. 5e5fbb6 fix inspect.isclass() on instances with a custom __getattr__ #1225107 by Benjamin Peterson · 17 years ago
  45. d25f87a #3997: zipfiles generated with more than 65536 files could not be opened by Amaury Forgeot d'Arc · 17 years ago
  46. a200dd5 Another typo fix. by Mark Dickinson · 17 years ago
  47. e82cdae Issue #4397. Fix occasional test_socket failure on OS X. by Mark Dickinson · 17 years ago
  48. b54447f #1162154: inspect.getmembers() now skips attributes that raise AttributeError, by Amaury Forgeot d'Arc · 17 years ago
  49. a18392a #4807: Remove a wrong usage of wsprintf in the winreg module by Amaury Forgeot d'Arc · 17 years ago
  50. c2f0221 Issue #4935: The overflow checking code in the expandtabs() method common by Antoine Pitrou · 17 years ago
  51. a40d573 #3720: Interpreter crashes when an evil iterator removes its own next function. by Amaury Forgeot d'Arc · 17 years ago
  52. f94d7fa Issue 1696199: Add collections.Counter(). by Raymond Hettinger · 17 years ago
  53. c22ab18 Misc/NEWS for issue 4293 by Kristján Valur Jónsson · 17 years ago
  54. 6220e41 Update Misc/NEWS for issue 3582 by Kristján Valur Jónsson · 17 years ago
  55. e3422fa Issue #4893: Use NT threading on CE. by Martin v. Löwis · 17 years ago
  56. 1b3bef2 Issue #4915: Port sysmodule to Windows CE. by Martin v. Löwis · 17 years ago
  57. eefda27 Issue #4895: Use _strdup on Windows CE. by Martin v. Löwis · 17 years ago
  58. b3b7d85 Issue #4279: Fix build of parsermodule under Cygwin. by Martin v. Löwis · 17 years ago
  59. e7231cc Add ACKS entries for some of the patches I've been committing. by Antoine Pitrou · 17 years ago
  60. 43723e2 - Issue #4861: ctypes.util.find_library(): Robustify. Fix library detection on by Matthias Klose · 17 years ago
  61. bd4b5f2 Add NEWS entry for r68484. by Antoine Pitrou · 17 years ago
  62. 4c5ecb7 Issue #4074: Change the criteria for doing a full garbage collection (i.e. by Antoine Pitrou · 17 years ago
  63. b117852 remove temporary code now by Benjamin Peterson · 17 years ago
  64. c4431ee add -3 to manpage by Benjamin Peterson · 17 years ago
  65. b90304a Issue #4850: Change COUNT_ALLOCS variables to Py_ssize_t. by Martin v. Löwis · 17 years ago
  66. e96d4ea Issue #1180193: When importing a module from a .pyc (or .pyo) file with by Antoine Pitrou · 17 years ago
  67. f99b011 Make sure to checkout any new packages by Neal Norwitz · 17 years ago
  68. f0d2c3f Issue #4272: Add an optional argument to the GzipFile constructor to override the timestamp in the gzip stream. by Antoine Pitrou · 17 years ago
  69. 514d483 Misc/NEWS entry for r68317 by Mark Dickinson · 17 years ago
  70. 85d6fb5 fixed #1702551: distutils sdist was not pruning VCS directories under win32 by Tarek Ziadé · 17 years ago
  71. e54aea7 Add temporary code to fix the automatic doc build failure. by Georg Brandl · 17 years ago
  72. fe42789 Manually merge r68095,68186,68187,68188,68190 from 2.6 branch. by Georg Brandl · 17 years ago
  73. e7f1403 The _tkinter module functions "createfilehandler", "deletefilehandler", by Guilherme Polo · 17 years ago
  74. f4d8597 Issue 4796: Add from_float methods to the decimal module. by Raymond Hettinger · 17 years ago
  75. 0fa10b3 Issue #4817: Remove unused function PyOS_GetLastModificationTime. by Martin v. Löwis · 17 years ago
  76. c5de096 Issue #4812: add missing underscore prefix to some internal-use-only by Mark Dickinson · 17 years ago
  77. 9ac4927 Issue #4051: Prevent conflict of UNICODE macros in cPickle. by Martin v. Löwis · 17 years ago
  78. 5344c99 Issue #4075: Use OutputDebugStringW in Py_FatalError. by Martin v. Löwis · 17 years ago
  79. 072bb40 Fix for issues #841800 and #900506 by Ronald Oussoren · 17 years ago
  80. abcc168 Fix for issue 1149804 by Ronald Oussoren · 17 years ago
  81. 919697c Fix for issue r1737832 by Ronald Oussoren · 17 years ago
  82. 7f8cbf0 Fix for issue 1627952 by Ronald Oussoren · 17 years ago
  83. 63b74fe Fix for issue 900949 by Ronald Oussoren · 17 years ago
  84. 0238497e Fix for issue1594 by Ronald Oussoren · 17 years ago
  85. f7d5405 Forgot to add a NEWS item in my previous checkin by Ronald Oussoren · 17 years ago
  86. 99a1b20 Issue #4797: IOError.filename was not set when _fileio.FileIO failed to open by Hirokazu Yamamoto · 17 years ago
  87. aa68790 Issue #3680: Reference cycles created through a dict, set or deque iterator did not get collected. by Antoine Pitrou · 17 years ago
  88. 6269fec #4228: Pack negative values the same way as 2.4 in struct's L format. by Georg Brandl · 17 years ago
  89. 8ad09a4 #4795 inspect.isgeneratorfunction() should return False instead of None by Benjamin Peterson · 17 years ago
  90. b1a8541 Fixed #4702: Throwing DistutilsPlatformError instead of IOError under win32 if MSVC is not found by Tarek Ziadé · 17 years ago
  91. 180e400 Issue #4701: implicitly call PyType_Ready from PyObject_Hash by Nick Coghlan · 17 years ago
  92. c13acb1 fixed #4646 : distutils was choking on empty options arg in the setup function. by Tarek Ziadé · 17 years ago
  93. 03824e4 Issue #1040026: Fix os.times result on systems where HZ is incorrect. by Martin v. Löwis · 17 years ago
  94. 7af6556 #4764 in io.open, set IOError.filename when trying to open a directory on POSIX platforms by Benjamin Peterson · 17 years ago
  95. fe231b0 #4764 set IOError.filename when trying to open a directory on POSIX platforms by Benjamin Peterson · 17 years ago
  96. 732479f Issue #3767: Convert Tk object to string in tkColorChooser. by Martin v. Löwis · 17 years ago
  97. e2eb2b4 Issue #3248: Allow placing ScrolledText in a PanedWindow. by Martin v. Löwis · 17 years ago
  98. fd9633e fix WORD_BIGEDIAN declaration in Universal builds; fixes #4060 and #4728 by Benjamin Peterson · 17 years ago
  99. 697ca3d Issue #4444: Allow assertRaises() to be used as a context handler. by Antoine Pitrou · 17 years ago
  100. 6425a2f Backport r67974: by Georg Brandl · 17 years ago