1. 68776db Half of the fix for issue 6957: ensure that distutils by Ronald Oussoren · 15 years ago
  2. 4d94743 When range checking was added to time.strftime() a check was placed on tm_isdst by Brett Cannon · 15 years ago
  3. 0cfef2c forgot to commit a file in previous commit (r74994, issue #6954) by Tarek Ziadé · 15 years ago
  4. 9977335 #6954: Fixed crash when using DISTUTILS_DEBUG flag in Distutils. by Tarek Ziadé · 15 years ago
  5. ccaf380 improving distutils coverage by Tarek Ziadé · 15 years ago
  6. 6d2db37 improved distutils test coverage: now the DEBUG mode is covered too (will help fix the issue #6954 in py3k branch) by Tarek Ziadé · 15 years ago
  7. 9f20d9d Issue 6877: this patch makes it possible to link the readline extension by Ronald Oussoren · 15 years ago
  8. 809073b Followup for r74962 by Ronald Oussoren · 15 years ago
  9. 51f0633 Fix for issue 6851: urllib.urlopen crashes in a thread on OSX 10.6 by Ronald Oussoren · 15 years ago
  10. 52c1794 Update bug tracker reference. by Georg Brandl · 15 years ago
  11. ab84989 #6944: the argument to PyArg_ParseTuple should be a tuple, otherwise a SystemError is set. Also clean up another usage of PyArg_ParseTuple. by Georg Brandl · 15 years ago
  12. dc782b5 backport keyword argument support for bytearray.decode by Benjamin Peterson · 15 years ago
  13. 332d721 add keyword arguments support to str/unicode encode and decode #6300 by Benjamin Peterson · 15 years ago
  14. 2985dbb Use skipUnless to skip math module tests on non-IEEE 754 platforms. by Mark Dickinson · 15 years ago
  15. 6be522b Issue #4606: Passing 'None' if ctypes argtype is set to POINTER(...) by Thomas Heller · 15 years ago
  16. 7a352c0 Issue #5042: Structure sub-subclass does now initialize correctly with by Thomas Heller · 15 years ago
  17. 195261f Optimize optimization and fix method name in docstring. by Georg Brandl · 15 years ago
  18. b019951 Use str.format() to fix beginner's mistake with %-style string formatting. by Georg Brandl · 15 years ago
  19. c40e60e #6938: "ident" is always a string, so use a format code which works. by Georg Brandl · 15 years ago
  20. 097f708 #6905: use better exception messages in inspect when the argument is of the wrong type. by Georg Brandl · 15 years ago
  21. ebf3adc #6844 followup: the warning when setting Exception.message was removed, do not test for it. by Georg Brandl · 15 years ago
  22. e9741f3 Issue #6922: Fix an infinite loop when trying to decode an invalid by Georg Brandl · 15 years ago
  23. 4d714cb kill bare except by Benjamin Peterson · 15 years ago
  24. 0674d3f #6844: do not emit DeprecationWarnings on access if Exception.message has been set by the user. by Georg Brandl · 15 years ago
  25. c4dcb38 Fix issue #1590864, multiple threads and fork() can cause deadlocks, by by Thomas Wouters · 15 years ago
  26. 69dfe8d Make the pdb displayhook compatible with the standard displayhook: do not print Nones. Add a test for that. by Georg Brandl · 15 years ago
  27. 6c39f06 Remove some more boilerplate from the actual tests in test_pdb. by Georg Brandl · 15 years ago
  28. 0180565 Update distutils.util tests after my changes to --with-universal-archs by Ronald Oussoren · 15 years ago
  29. 5d90029 Finish support for --with-universal-archs=intel by Ronald Oussoren · 15 years ago
  30. e91ea56 Test discovery in unittest will only attempt to import modules that are importable; i.e. their names are valid Python identifiers. If an import fails during discovery this will be recorded as an error and test discovery will continue. Issue 6568. by Michael Foord · 15 years ago
  31. 5a9719d unittest.TestLoader.loadTestsFromName honors the loader suiteClass attribute. Issue 6866. by Michael Foord · 15 years ago
  32. c3f7937 Objects that compare equal automatically pass or fail assertAlmostEqual and assertNotAlmostEqual tests on unittest.TestCase. Issue 6567. by Michael Foord · 15 years ago
  33. 924eab6 Issue #6635: Fix profiler printing usage message. by Matthias Klose · 15 years ago
  34. 1036a7f #6026 - fix tests that failed without zlib by Ezio Melotti · 15 years ago
  35. 21121e6 Issue #6856: Add a filter keyword argument to TarFile.add(). by Lars Gustäbel · 15 years ago
  36. 93ed820 revert unintended changes by Benjamin Peterson · 15 years ago
  37. 8246968 tabbify by Benjamin Peterson · 15 years ago
  38. bed26a3 Issue #6163: Fixed HP-UX runtime library dir options in distutils.unixcompiler by Tarek Ziadé · 15 years ago
  39. 5cfa804 Issue #6857: Fix Decimal formatting to be consistent with existing float by Mark Dickinson · 15 years ago
  40. 968f169 #Issue 6795: Fix infinite recursion in long(Decimal('nan')); change int(Decimal('nan')) to raise ValueError instead of either returning NaN or raising InvalidContext. by Mark Dickinson · 15 years ago
  41. 491ea55 Issue #6850: Fix bug in Decimal._parse_format_specifier for formats by Mark Dickinson · 15 years ago
  42. 626faeb Fix for issue 4937 by Ronald Oussoren · 15 years ago
  43. c8a7c7c Issue #6846: bytearray.pop was returning ints in the range [-128, 128) by Mark Dickinson · 15 years ago
  44. 2596758 Fix build issues on OSX 10.6 (issue 6802) by Ronald Oussoren · 15 years ago
  45. 68c6e92 Fixes issue #6838: use a list to accumulate the value instead of repeatedly concatenating strings. by Chris Withers · 15 years ago
  46. ed4ca82 #5101: add back tests to test_funcattrs that were lost during unittest conversion, and make some PEP8 cleanups. by Georg Brandl · 15 years ago
  47. d22b951 Issue #5275: In Cookie's Cookie.load(), properly handle non-string arguments as documented. by Georg Brandl · 15 years ago
  48. 2e1308f Issue #2666: Handle BROWSER environment variable properly for unknown browser names in the webbrowser module. by Georg Brandl · 15 years ago
  49. e7e941e test_platform fails on OS X Snow Leopard because the UNIX command to get the by Brett Cannon · 15 years ago
  50. ffd0dc1 Sorry, sorry! Ignore my previous two commits. I mixed up the version by Armin Rigo · 15 years ago
  51. f866fbb Does not terminate: consume all memory without responding to Ctrl-C. by Armin Rigo · 15 years ago
  52. f416690 Found the next crasher by thinking about this logic in PyPy. by Armin Rigo · 15 years ago
  53. 6fcf9b5 remove the check that classmethod's argument is a callable by Benjamin Peterson · 15 years ago
  54. fff896b #6750: TextIOWrapped could duplicate output when several threads write to it. by Amaury Forgeot d'Arc · 15 years ago
  55. f7cda52 Issue #6054: Do not normalize stored pathnames. by Lars Gustäbel · 15 years ago
  56. cc54622 remove more code for restricted execution by Benjamin Peterson · 15 years ago
  57. f6348f4 restricted environments are no more by Benjamin Peterson · 15 years ago
  58. 7a7739d Issue #6794: Fix handling of NaNs in Decimal.compare_total and by Mark Dickinson · 15 years ago
  59. 429677e Issue 6654 by Kristján Valur Jónsson · 15 years ago
  60. e2a7798 issue 6275 by Kristján Valur Jónsson · 15 years ago
  61. 68b0731 issue 6769 fix a mistake in instantiatiating the HTTPSConnection class. by Kristján Valur Jónsson · 15 years ago
  62. 764fc23 #6693: New functions in site.py to get user/global site packages paths. by Tarek Ziadé · 15 years ago
  63. 77db016 comment typo fix by Gregory P. Smith · 15 years ago
  64. e2ae86a Revert the changes from r74463, they were causing test_xmlrpc to fail. by Gregory P. Smith · 15 years ago
  65. 6f1fa21 Added missing static option for OptionMenu. Issue #5961. by Guilherme Polo · 15 years ago
  66. 7b50c4f Issue #1356969: Add missing info methods in Tix.HList. by Guilherme Polo · 15 years ago
  67. 397bd1e Fixes for Tix.Grid from issue #1522587. by Guilherme Polo · 15 years ago
  68. 6b3c709 Issue #1522587: New constants and methods for the Tix.Grid widget. by Guilherme Polo · 15 years ago
  69. 57f9b72 Mark the "radio" option of Tix.CheckList as static. by Guilherme Polo · 15 years ago
  70. 6c823f8 Issue #1250469: Fix the return value of Tix.PanedWindow.panes. by Guilherme Polo · 15 years ago
  71. d3e6e4b Issue #1119673: Do not override Tkinter.Text methods when creating a ScrolledText. by Guilherme Polo · 15 years ago
  72. 9132916 fixed typo by Tarek Ziadé · 15 years ago
  73. 1c8c9d1 added more test coverage for distutils.filelist to prevent regressions when fnmatch or re are changed by Tarek Ziadé · 15 years ago
  74. e2f35c3 module cleanup by Tarek Ziadé · 15 years ago
  75. 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é · 15 years ago
  76. 99954c9 Clean up the C library import code (based on suggestions in issue6281). by Gregory P. Smith · 15 years ago
  77. df75677 Add test of file.write(array) extracted from Jython. by Frank Wierzbicki · 15 years ago
  78. b98d6b2 Issue 6665: Fix fnmatch to properly match filenames with newlines in them. by Gregory P. Smith · 15 years ago
  79. c0ba828 better col_offsets for "for" statements with tuple unpacking #6704 by Benjamin Peterson · 15 years ago
  80. 8cabfa3 Force the http connection to close after any request returned when by Gregory P. Smith · 15 years ago
  81. 4c6e808 #6707 fix a crash with dir() on an uninitialized module by Benjamin Peterson · 15 years ago
  82. 75e1f99 Clarifying Entry.selection_present's docstring. by Guilherme Polo · 15 years ago
  83. e45f017 Issue #1135: Add the XView and YView mix-ins to avoid duplicating by Guilherme Polo · 15 years ago
  84. f198ac2 Issue #3926: Fix the usage of the new showwarnings and formatwarning. by Guilherme Polo · 15 years ago
  85. 86b882f Issue #3344: Replace itertools.count by enumerate. by Guilherme Polo · 15 years ago
  86. 764465f Expat could crash if given the wrong kind of input by never stopping its by Brett Cannon · 15 years ago
  87. c4ad034 Fix issue1628205: Socket file objects returned by socket.socket.makefile() now by Gregory P. Smith · 15 years ago
  88. 20e1f93 Issue #6629: Fix a data corruption issue in the new `io` package, which could by Antoine Pitrou · 15 years ago
  89. 8497efe Fix issue 4660: spurious task_done errors in multiprocessing, remove doc note for from_address by Jesse Noller · 15 years ago
  90. 175e0bf Typo. by Guilherme Polo · 15 years ago
  91. 3d75555 Easier reference to find (at least while svn continues being used). by Guilherme Polo · 15 years ago
  92. 4b45673 Issue #6620: Slightly safer code for _grouping_intervals in the locale by Mark Dickinson · 15 years ago
  93. 8fdab95 Issue 6637: defaultdict.copy() failed with an empty factory. by Raymond Hettinger · 15 years ago
  94. 6c0f337 Adding tests derived from the Jython project. These are primarily tests of by Frank Wierzbicki · 15 years ago
  95. 9a6d6c9 Issue #6619: Remove duplicate 'isgenerator' function from inspect module. by Mark Dickinson · 15 years ago
  96. 4326ad8 Issue #6595: Allow Decimal constructor to accept non-European decimal by Mark Dickinson · 15 years ago
  97. 3e5b027 #6511: ZipFile will now raise BadZipfile when opening an empty or tiny file, by Amaury Forgeot d'Arc · 15 years ago
  98. e55df1f "Fix" for the refleak report: the ABC classes are now in the _pyio module by Amaury Forgeot d'Arc · 15 years ago
  99. fe67bd9 Issue #6561: '\d' regular expression should not match characters of by Mark Dickinson · 15 years ago
  100. c2b9e1a Issue 6573: Fix set.union() for cases where self is in the argument chain. by Raymond Hettinger · 15 years ago