1. 15ae41c Issue #7048: logb should round its result when that result doesn't fit by Mark Dickinson · 15 years ago
  2. 590ecf3 Add Anders Chrigstrom to Misc/ACKS for his work on unicodedata. by Amaury Forgeot d'Arc · 15 years ago
  3. d0052d1 #1571184: makeunicodedata.py now generates the functions _PyUnicode_ToNumeric, by Amaury Forgeot d'Arc · 15 years ago
  4. 85ea4bf Remove two notes by Andrew M. Kuchling · 15 years ago
  5. fa6a427 Backport r73983: Document the thousands separator. by Andrew M. Kuchling · 15 years ago
  6. b6f0128 Use standard comma punctuation; reword some sentences in the docs by Andrew M. Kuchling · 15 years ago
  7. 400054e Reword sentence by Andrew M. Kuchling · 15 years ago
  8. 5a9c40b Add various items by Andrew M. Kuchling · 15 years ago
  9. 915b120 Note side benefit of socket.create_connection() by Andrew M. Kuchling · 15 years ago
  10. f6e3d7d Document 'skip' parameter to constructor by Andrew M. Kuchling · 15 years ago
  11. f5852f5 Fix narkup by Andrew M. Kuchling · 15 years ago
  12. 3fab040 Wording fix by Andrew M. Kuchling · 15 years ago
  13. 3de4647 Fix compilation warning on Windows, where size_t is 32bit but file offsets are 64bit. by Amaury Forgeot d'Arc · 15 years ago
  14. abe3d3e Issue #7058: Added save/restore for argv and os.environ to runtest_inner by R. David Murray · 15 years ago
  15. 245d915 Issue #7042: Fix test_signal failure on OS X 10.6 64-bit builds by Mark Dickinson · 15 years ago
  16. 82d31e9 test logging by Benjamin Peterson · 15 years ago
  17. 7adbb5a #7050 fix a SystemError when using tuple unpacking and augmented assignment by Benjamin Peterson · 15 years ago
  18. 3b34dd8 now uses the right exception type by Tarek Ziadé · 15 years ago
  19. 530df33 Issue #7028: Add note to hex() builtin docs pointing to float.hex(). by Mark Dickinson · 15 years ago
  20. f638486 removing the last remaning apply() calls by Tarek Ziadé · 15 years ago
  21. 1b48671 #6516 added owner/group support for tarfiles in Distutils by Tarek Ziadé · 15 years ago
  22. 12fafe6 Add NEWS entry for r75180. by Georg Brandl · 15 years ago
  23. f895cf5 #7031: Add TestCase.assertIsInstance and negated method. by Georg Brandl · 15 years ago
  24. 46cc46a Fix some weird whitespace and two other overlong lines. by Georg Brandl · 15 years ago
  25. c9062ca Sync the 2.x `io` docs with py3k, with a small note as to the distinction by Antoine Pitrou · 15 years ago
  26. dc61ec3 That's self.env.unset(k) and not env.unset(k) I was heading back to the problem. by Senthil Kumaran · 15 years ago
  27. 5a43e86 using dict.unset(k) instead of del dict[k]. consistent with release26-maint by Senthil Kumaran · 15 years ago
  28. 91abd6e Fix for issue7026 test_urllib: unsetting missing 'env' variable. by Senthil Kumaran · 15 years ago
  29. 8ca7482 Fix buggy accuracy test by Mark Dickinson · 15 years ago
  30. 657024c Mention issue6972 in extractall docs about overwriting things outside of by Gregory P. Smith · 15 years ago
  31. 209d4c3 Fix for issue6957: ensure that the OSX installer by Ronald Oussoren · 15 years ago
  32. 8b90204 #5329: fix os.popen* regression from 2.5: don't execute commands as a sequence by Philip Jenvey · 15 years ago
  33. 7e7a3ec Issue #7019: Unmarshalling of bad long data could produce unnormalized by Mark Dickinson · 15 years ago
  34. 13305f6 Issue 7008: Better document str.title and show how to work around the apostrophe problem. by Raymond Hettinger · 15 years ago
  35. 7248178 Issue #6790: Make it possible again to pass an `array.array` to by Antoine Pitrou · 15 years ago
  36. 9ebd242 * Update the Mac/README file. Add the list of OSX-specific configure options by Ronald Oussoren · 15 years ago
  37. f70867a Issue #7014: logging: Improved IronPython 2.6 compatibility. by Vinay Sajip · 15 years ago
  38. dbf3b25 #6990: clear threading.local's key only after its thread state is removed: by Philip Jenvey · 15 years ago
  39. b93fff0 Issue #3366: Add gamma function to math module. by Mark Dickinson · 15 years ago
  40. ddfb6cd Applying patches backported from 3.1, by Gregor Lingl. by R. David Murray · 15 years ago
  41. 97f5ff3 Prevent test_bad_address failure when a domain in the dns search by R. David Murray · 15 years ago
  42. 71adc93 Style/consistency/nano-optimization nit: replace occurrences of by Mark Dickinson · 15 years ago
  43. b331802 http://bugs.python.org/issue6836 by Kristján Valur Jónsson · 15 years ago
  44. 02ca57c http://bugs.python.org/issue6836 by Kristján Valur Jónsson · 15 years ago
  45. d12f86c http://bugs.python.org/issue6836 by Kristján Valur Jónsson · 15 years ago
  46. b4fd4d3 Patch from Thomas Barr so that csv.Sniffer will set doublequote property. by Skip Montanaro · 15 years ago
  47. 17565e5 Documentation improvement for load_tests protocol in unittest. Issue 6515. by Michael Foord · 15 years ago
  48. d6aabcf Test creation moved from TestProgram.parseArgs to TestProgram.createTests exclusively. Issue 6956. by Michael Foord · 15 years ago
  49. 716a9cc Eliminate unnecessary get_wrapped_(u)long defines in struct module. by Mark Dickinson · 15 years ago
  50. 4b9d473 Issue #6713: Improve decimal int -> string conversions. Thanks Gawain by Mark Dickinson · 15 years ago
  51. 4780c9a Tidied up name of parameter in StreamHandler by Vinay Sajip · 15 years ago
  52. 9aac245 #7000: document "sep" in capwords. Add a few tests by Ezio Melotti · 15 years ago
  53. afdbe3d comment out ugly xxx by Benjamin Peterson · 15 years ago
  54. b49e53e #6243: fix segfault when keyname() returns a NULL pointer. by Andrew M. Kuchling · 15 years ago
  55. a9a7611 #6994: fix typo in enumerate docstring by Ezio Melotti · 15 years ago
  56. 2fcd03b http://bugs.python.org/issue6971 by Kristján Valur Jónsson · 15 years ago
  57. 143d433 Issue #6982: Add generated Lib/lib2to3/*.pickle files to 'make clean' target. by Mark Dickinson · 15 years ago
  58. 2fd3592 improved phrasing, markup and example by Ezio Melotti · 15 years ago
  59. ca66cb5 fix typos/rephrase by Benjamin Peterson · 15 years ago
  60. 2f75572 Fix a minor doc syntax typo. by Brett Cannon · 15 years ago
  61. 68776db Half of the fix for issue 6957: ensure that distutils by Ronald Oussoren · 15 years ago
  62. 6ef9fd7 Fix whitespace. by Brett Cannon · 15 years ago
  63. f778bec Fixed a typo, and added sections on optimization and using arbitrary objects as messages. by Vinay Sajip · 15 years ago
  64. e50a9fd The 'Navigation Toolbox' is not available at all for 64-bit by Ronald Oussoren · 15 years ago
  65. ac87077 Fix encoding name. by Georg Brandl · 15 years ago
  66. 4d94743 When range checking was added to time.strftime() a check was placed on tm_isdst by Brett Cannon · 15 years ago
  67. 2a46658 Issue #6236, #6348: Fix various failures in the io module under AIX by Antoine Pitrou · 15 years ago
  68. 40ee861 Silence MSVC compiler warnings. by Mark Dickinson · 15 years ago
  69. 0cfef2c forgot to commit a file in previous commit (r74994, issue #6954) by Tarek Ziadé · 15 years ago
  70. 9977335 #6954: Fixed crash when using DISTUTILS_DEBUG flag in Distutils. by Tarek Ziadé · 15 years ago
  71. ccaf380 improving distutils coverage by Tarek Ziadé · 15 years ago
  72. 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
  73. 1d18b5b Fix markup for external links. by Doug Hellmann · 15 years ago
  74. c66ced3 * Make it easier to build custom installers (such as a 3-way universal build) by Ronald Oussoren · 15 years ago
  75. a9cfbde Fix typo in error message by Ronald Oussoren · 15 years ago
  76. 16766d7 Merge a newer version of libffi_osx, based on the by Ronald Oussoren · 15 years ago
  77. 9f20d9d Issue 6877: this patch makes it possible to link the readline extension by Ronald Oussoren · 15 years ago
  78. 956f4b2 For for issue 6934: failures in postflight script in OSX installer by Ronald Oussoren · 15 years ago
  79. 809073b Followup for r74962 by Ronald Oussoren · 15 years ago
  80. 51f0633 Fix for issue 6851: urllib.urlopen crashes in a thread on OSX 10.6 by Ronald Oussoren · 15 years ago
  81. 4b017bb #6881 - fixed wrong return type; improved the formatting by Ezio Melotti · 15 years ago
  82. 14a2e2f Add Mark Summerfield. by Georg Brandl · 15 years ago
  83. c231d31 Add Doug. by Georg Brandl · 15 years ago
  84. f4da666 Fix references to threading.enumerate(). by Georg Brandl · 15 years ago
  85. 592c58d #6946: fix duplicate index entries for datetime classes. by Georg Brandl · 15 years ago
  86. d25fb2f Remove unused variable and static function to fix compiler warnings. by Thomas Heller · 15 years ago
  87. 52c1794 Update bug tracker reference. by Georg Brandl · 15 years ago
  88. 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
  89. 9db5540 typo by Benjamin Peterson · 15 years ago
  90. dc782b5 backport keyword argument support for bytearray.decode by Benjamin Peterson · 15 years ago
  91. 579a358 #6930: clarify description about byteorder handling in UTF decoder routines. by Georg Brandl · 15 years ago
  92. 54967d9 #6925: rewrite docs for locals() and vars() a bit. by Georg Brandl · 15 years ago
  93. 332d721 add keyword arguments support to str/unicode encode and decode #6300 by Benjamin Peterson · 15 years ago
  94. 2985dbb Use skipUnless to skip math module tests on non-IEEE 754 platforms. by Mark Dickinson · 15 years ago
  95. 6be522b Issue #4606: Passing 'None' if ctypes argtype is set to POINTER(...) by Thomas Heller · 15 years ago
  96. 7a352c0 Issue #5042: Structure sub-subclass does now initialize correctly with by Thomas Heller · 15 years ago
  97. db9925a Add Gawain Bolton to Misc/ACKS for his work on base 10 integer -> string optimizations. by Mark Dickinson · 15 years ago
  98. 195261f Optimize optimization and fix method name in docstring. by Georg Brandl · 15 years ago
  99. b019951 Use str.format() to fix beginner's mistake with %-style string formatting. by Georg Brandl · 15 years ago
  100. c40e60e #6938: "ident" is always a string, so use a format code which works. by Georg Brandl · 15 years ago