1. 6fcf9b5 remove the check that classmethod's argument is a callable by Benjamin Peterson · 16 years ago
  2. fff896b #6750: TextIOWrapped could duplicate output when several threads write to it. by Amaury Forgeot d'Arc · 16 years ago
  3. f7cda52 Issue #6054: Do not normalize stored pathnames. by Lars Gustäbel · 16 years ago
  4. cc54622 remove more code for restricted execution by Benjamin Peterson · 16 years ago
  5. f6348f4 restricted environments are no more by Benjamin Peterson · 16 years ago
  6. 7a7739d Issue #6794: Fix handling of NaNs in Decimal.compare_total and by Mark Dickinson · 16 years ago
  7. 429677e Issue 6654 by Kristján Valur Jónsson · 16 years ago
  8. e2a7798 issue 6275 by Kristján Valur Jónsson · 16 years ago
  9. 68b0731 issue 6769 fix a mistake in instantiatiating the HTTPSConnection class. by Kristján Valur Jónsson · 16 years ago
  10. 764fc23 #6693: New functions in site.py to get user/global site packages paths. by Tarek Ziadé · 16 years ago
  11. 77db016 comment typo fix by Gregory P. Smith · 16 years ago
  12. e2ae86a Revert the changes from r74463, they were causing test_xmlrpc to fail. by Gregory P. Smith · 16 years ago
  13. 6f1fa21 Added missing static option for OptionMenu. Issue #5961. by Guilherme Polo · 16 years ago
  14. 7b50c4f Issue #1356969: Add missing info methods in Tix.HList. by Guilherme Polo · 16 years ago
  15. 397bd1e Fixes for Tix.Grid from issue #1522587. by Guilherme Polo · 16 years ago
  16. 6b3c709 Issue #1522587: New constants and methods for the Tix.Grid widget. by Guilherme Polo · 16 years ago
  17. 57f9b72 Mark the "radio" option of Tix.CheckList as static. by Guilherme Polo · 16 years ago
  18. 6c823f8 Issue #1250469: Fix the return value of Tix.PanedWindow.panes. by Guilherme Polo · 16 years ago
  19. d3e6e4b Issue #1119673: Do not override Tkinter.Text methods when creating a ScrolledText. by Guilherme Polo · 16 years ago
  20. 9132916 fixed typo by Tarek Ziadé · 16 years ago
  21. 1c8c9d1 added more test coverage for distutils.filelist to prevent regressions when fnmatch or re are changed by Tarek Ziadé · 16 years ago
  22. e2f35c3 module cleanup by Tarek Ziadé · 16 years ago
  23. 98026f1 fixed how fnmatch.translate is used (since it has changed in r74475 for #6665). Now the code is not harcoding the usage of $ anymore by Tarek Ziadé · 16 years ago
  24. 99954c9 Clean up the C library import code (based on suggestions in issue6281). by Gregory P. Smith · 16 years ago
  25. df75677 Add test of file.write(array) extracted from Jython. by Frank Wierzbicki · 16 years ago
  26. b98d6b2 Issue 6665: Fix fnmatch to properly match filenames with newlines in them. by Gregory P. Smith · 16 years ago
  27. c0ba828 better col_offsets for "for" statements with tuple unpacking #6704 by Benjamin Peterson · 16 years ago
  28. 8cabfa3 Force the http connection to close after any request returned when by Gregory P. Smith · 16 years ago
  29. 4c6e808 #6707 fix a crash with dir() on an uninitialized module by Benjamin Peterson · 16 years ago
  30. 75e1f99 Clarifying Entry.selection_present's docstring. by Guilherme Polo · 16 years ago
  31. e45f017 Issue #1135: Add the XView and YView mix-ins to avoid duplicating by Guilherme Polo · 16 years ago
  32. f198ac2 Issue #3926: Fix the usage of the new showwarnings and formatwarning. by Guilherme Polo · 16 years ago
  33. 86b882f Issue #3344: Replace itertools.count by enumerate. by Guilherme Polo · 16 years ago
  34. 764465f Expat could crash if given the wrong kind of input by never stopping its by Brett Cannon · 16 years ago
  35. c4ad034 Fix issue1628205: Socket file objects returned by socket.socket.makefile() now by Gregory P. Smith · 16 years ago
  36. 20e1f93 Issue #6629: Fix a data corruption issue in the new `io` package, which could by Antoine Pitrou · 16 years ago
  37. 8497efe Fix issue 4660: spurious task_done errors in multiprocessing, remove doc note for from_address by Jesse Noller · 16 years ago
  38. 175e0bf Typo. by Guilherme Polo · 16 years ago
  39. 3d75555 Easier reference to find (at least while svn continues being used). by Guilherme Polo · 16 years ago
  40. 4b45673 Issue #6620: Slightly safer code for _grouping_intervals in the locale by Mark Dickinson · 16 years ago
  41. 8fdab95 Issue 6637: defaultdict.copy() failed with an empty factory. by Raymond Hettinger · 16 years ago
  42. 6c0f337 Adding tests derived from the Jython project. These are primarily tests of by Frank Wierzbicki · 16 years ago
  43. 9a6d6c9 Issue #6619: Remove duplicate 'isgenerator' function from inspect module. by Mark Dickinson · 16 years ago
  44. 4326ad8 Issue #6595: Allow Decimal constructor to accept non-European decimal by Mark Dickinson · 16 years ago
  45. 3e5b027 #6511: ZipFile will now raise BadZipfile when opening an empty or tiny file, by Amaury Forgeot d'Arc · 16 years ago
  46. e55df1f "Fix" for the refleak report: the ABC classes are now in the _pyio module by Amaury Forgeot d'Arc · 16 years ago
  47. fe67bd9 Issue #6561: '\d' regular expression should not match characters of by Mark Dickinson · 16 years ago
  48. c2b9e1a Issue 6573: Fix set.union() for cases where self is in the argument chain. by Raymond Hettinger · 16 years ago
  49. fb0e057 Issue 6581. Michael Foord by Michael Foord · 16 years ago
  50. 74b3016 #6553: crash in cPickle.load(), when given a StringIO with incomplete data. by Amaury Forgeot d'Arc · 16 years ago
  51. 39186bc use bools for autoraise by Benjamin Peterson · 16 years ago
  52. 46ca2f2 Backport of fix for issue 6542: make sure by R. David Murray · 16 years ago
  53. ec812ca Issue #6540: Fixed crash for bytearray.translate() with invalid parameters. by Georg Brandl · 16 years ago
  54. af2406f Issue #6545: Removed assert statements in distutils.Extension, so the behavior is similar when used with -O by Tarek Ziadé · 16 years ago
  55. d8431ae Revert rev 74134, as it does not completely fixx issue #6493. by Thomas Heller · 16 years ago
  56. 6adda96 Issue #6493: Fix a ctypes problem setting bitfields more than 31 bits wide. by Thomas Heller · 16 years ago
  57. 4d4b739 Merged revisions 74121-74122 via svnmerge from by Benjamin Peterson · 16 years ago
  58. 4879c90 the Slice in x[::] has to have step as None to help the interpreter by Benjamin Peterson · 16 years ago
  59. a2514f4 Merged revisions 74116 via svnmerge from by Benjamin Peterson · 16 years ago
  60. 840077c Merged revisions 73771,73811,73840,73842,73848-73849,73861,73957-73960,73964-73969,73972-73974,73977,73981,73984,74065,74113 via svnmerge from by Benjamin Peterson · 16 years ago
  61. c037943 http://bugs.python.org/issue6499 gzip.GzipFile may not exist as a parent class by Kristján Valur Jónsson · 16 years ago
  62. 6d75590 http://bugs.python.org/issue6499 by Kristján Valur Jónsson · 16 years ago
  63. d7b0eeb split unittest.py into a package by Benjamin Peterson · 16 years ago
  64. 5fee460 Fix for issue5102, timeout value propages between redirects, proxy, digest and by Senthil Kumaran · 16 years ago
  65. 88a0a2e Issue #6431: Fix Fraction comparisons with unknown types, and with by Mark Dickinson · 16 years ago
  66. e78e5d2 Issue #6415: Fixed warnings.warn sagfault on bad formatted string. by Hirokazu Yamamoto · 16 years ago
  67. 3e8b869 Revert r74028. by Georg Brandl · 16 years ago
  68. 3601a38 #6482: simplify "except: raise" to "finally:". by Georg Brandl · 16 years ago
  69. a99dedf #6466 refactored distutils duplicate get_versions() functions (used to get gcc/ld/dllwrap versions) by Tarek Ziadé · 16 years ago
  70. 7530e47 Issue 6433: multiprocessing.pool.map hangs on empty list by Jesse Noller · 16 years ago
  71. d77faaf #5910: fix kqueue for calls with more than one event. by Georg Brandl · 16 years ago
  72. b9ee881 #6076 Add a title to the IDLE Preferences window. by Amaury Forgeot d'Arc · 16 years ago
  73. d5a23e3 methods' names pep8ification by Ezio Melotti · 16 years ago
  74. 91dcd93 Move TestRunner initialisation into unittest.TestProgram.runTests. Fixes issue 6418. by Michael Foord · 16 years ago
  75. cecaa65 Use a different VER command output parser to address the localization by Marc-André Lemburg · 16 years ago
  76. 19e5b3f Use a new global DEV_NULL instead of hard-coding /dev/null into the system by Marc-André Lemburg · 16 years ago
  77. 70dda76 #1616979: Add the cp720 (Arabic DOS) encoding. by Amaury Forgeot d'Arc · 16 years ago
  78. cbb24b3 Issue #6314: logging: Extra checks on the "level" argument in more places. by Vinay Sajip · 16 years ago
  79. 0369ba2 http://bugs.python.org/issue6267 Add more tests for the xlmrpc.ServerProxy by Kristján Valur Jónsson · 16 years ago
  80. 6633a66 Fixed distutils test. by Hirokazu Yamamoto · 16 years ago
  81. 9bd39c1 put downloaded test support files in Lib/test/data instead of the cwd by Benjamin Peterson · 16 years ago
  82. 51f32c0 reverted changes for #6459 (doesn't apply on 2.x) by Tarek Ziadé · 16 years ago
  83. 74b8d33 #2622 Import errors in email.message, from a py2app standalone application. by Amaury Forgeot d'Arc · 16 years ago
  84. 23a3775 fixed #6459: distutils.command.build_ext.get_export_symbols now uses 'PyInit' by Tarek Ziadé · 16 years ago
  85. 51c045d cleaned up distutils.build_ext module by Tarek Ziadé · 16 years ago
  86. 9175742 Add basic tests for the return value of os.popen().close(). by Amaury Forgeot d'Arc · 16 years ago
  87. ef6007c http://bugs.python.org/issue6460 by Kristján Valur Jónsson · 16 years ago
  88. 6cbfc12 more cleanups and if zlib -> skipUnless(zlib) by Ezio Melotti · 16 years ago
  89. 8318afa #6447: typo in subprocess docstring by Amaury Forgeot d'Arc · 16 years ago
  90. 1c6ebc2 cleaned up distutils.command.build by Tarek Ziadé · 16 years ago
  91. 3f7cba1 Added test coverage for distutils.command.build by Tarek Ziadé · 16 years ago
  92. 8c40001 Fixed #6455 (the test shall use pyd files under win32, rather than so files) by Tarek Ziadé · 16 years ago
  93. ce32eb7 #6416: Fix compilation of the select module on Windows, as well as test_subprocess: by Amaury Forgeot d'Arc · 16 years ago
  94. b0c828a Try to fix Solaris buildbot rmtree failure in test_getcwd_long_pathnames by R. David Murray · 16 years ago
  95. 6fcf7ca Temporarily ignore rmtree errors in test_getcwd_long_pathnames to see by R. David Murray · 16 years ago
  96. 573399a Curdir needs to be in the path for the test to work on all buildbots. by R. David Murray · 16 years ago
  97. fbf2cc4 Specify umask in execute bit test to get consistent results by R. David Murray · 16 years ago
  98. 00490f2 PendingDeprecationWarning -> DeprecationWarning in build_ext by Tarek Ziadé · 16 years ago
  99. 00e1f63 Make test work with -O. by R. David Murray · 16 years ago
  100. 8a624a9 Conditionalize test cleanup code to eliminate traceback, which will by R. David Murray · 16 years ago