1. 447dc15 use floor division and add a test that exercises the tabsize codepath by Benjamin Peterson · 15 years ago
  2. e537adf pep8ify if blocks by Benjamin Peterson · 15 years ago
  3. 973f8b4 Make cPickle.Unpickler.noload() handle dict subclasses. noload() is by Neil Schemenauer · 15 years ago
  4. e6039f0 Add support to the ihooks module for relative imports. by Neil Schemenauer · 15 years ago
  5. 04437eb Fix py3k warnings in the uuid module by Antoine Pitrou · 15 years ago
  6. 92331d5 Fix py3k warnings in httplib by Antoine Pitrou · 15 years ago
  7. b844ef7 Silence py3k warning claiming to affect the random module by Antoine Pitrou · 15 years ago
  8. 9b4e582 #7116: str.join() takes an iterable. by Georg Brandl · 15 years ago
  9. bb86314 Fix failures in test_profilehooks when run with -3 by Antoine Pitrou · 15 years ago
  10. 79d923b Silence some py3k warnings claiming to affect _pyio by Antoine Pitrou · 15 years ago
  11. 8d6c9ee Fix a py3k warning in the sndhdr module (found with test_email) by Antoine Pitrou · 15 years ago
  12. daa524a Fix py3k warnings in the socket module by Antoine Pitrou · 15 years ago
  13. e08dd11 Fix a py3k warning in the StringIO module (exhibited in test_codecencodings_cn) by Antoine Pitrou · 15 years ago
  14. e22997e Silence a py3k warning claiming to affect Lib/calendar.py by Antoine Pitrou · 15 years ago
  15. 63b0cb2 Fix py3k warnings in bsddb by Antoine Pitrou · 15 years ago
  16. 868817e Fix a test_atexit failure when run with -3 by Antoine Pitrou · 15 years ago
  17. bca7b48 Fix py3k warnings in the aifc module by Antoine Pitrou · 15 years ago
  18. 7fdd1cb Issue #1754094: Improve the stack depth calculation in the compiler. by Neil Schemenauer · 15 years ago
  19. 647e9d2 #7126: os.environ changes *do* take effect in subprocesses started with os.system(). by Georg Brandl · 15 years ago
  20. e1254d7 #7125: fix typo. by Georg Brandl · 15 years ago
  21. 14dcd43 Enhanced Issue 7058 patch, which will not be backported. Refactors the by R. David Murray · 15 years ago
  22. 5c92d43 #7112: Fix compilation warning in unicodetype_db.h by Amaury Forgeot d'Arc · 15 years ago
  23. 5ffa146 Fix markup. by Georg Brandl · 15 years ago
  24. 5c4e6eb Various link, textual, and markup fixes by Andrew M. Kuchling · 15 years ago
  25. 7fe65a0 Link to PEP by Andrew M. Kuchling · 15 years ago
  26. 526bec2 platform we don't care about by Benjamin Peterson · 15 years ago
  27. 65e5055 Update Misc/README. by Georg Brandl · 15 years ago
  28. 0b74edd Add find_recursionlimit.py to README. by Georg Brandl · 15 years ago
  29. 2bd92a5 Move find_recursionlimit.py to Tools/scripts; it is out of place in Misc. by Georg Brandl · 15 years ago
  30. beaf6a0 Issue #7084: Fix a (very unlikely) crash when printing a list from one by Antoine Pitrou · 15 years ago
  31. a4314c2 Fix broken links found by "make linkcheck". scipy.org seems to be done right now, so I could not verify links going there. by Georg Brandl · 15 years ago
  32. 6728c5a Add the Python FAQ lists to the documentation. Copied from sandbox/faq. Many thanks to AMK for the preparation work. by Georg Brandl · 15 years ago
  33. 32855b6 Overhaul of Demo/xml. by Georg Brandl · 15 years ago
  34. b3f9d66 Remove ftpstats script, the daemon whose log files it reads is long gone. by Georg Brandl · 15 years ago
  35. 393c823 Update lpwatch script. by Georg Brandl · 15 years ago
  36. 8ec30e8 Fix variable. by Georg Brandl · 15 years ago
  37. ce662d0 Use getopt in script.py demo. by Georg Brandl · 15 years ago
  38. 9bb7965 Set missing executable property on scripts by Mark Dickinson · 15 years ago
  39. ab6d373 Fix 'primes 0 1' by Mark Dickinson · 15 years ago
  40. 4271eca Update primes script. by Georg Brandl · 15 years ago
  41. 6e62c56 Remove useless script "mkrcs" and update README. by Georg Brandl · 15 years ago
  42. 86d38e9 Update markov demo. by Georg Brandl · 15 years ago
  43. 30fd2bb Update morse script, avoid globals, use iterators. by Georg Brandl · 15 years ago
  44. 2746866 Fixed Issue6894, urllib2 doesn't respect "no_proxy" environment by Senthil Kumaran · 15 years ago
  45. 723fb3a Modernize all around (dont ask me how useful that script is nowadays...) by Georg Brandl · 15 years ago
  46. ffc87d5 Style fixes. by Georg Brandl · 15 years ago
  47. a0bcc27 Modernize factorisation demo (mostly augassign.) by Georg Brandl · 15 years ago
  48. 3d072c9 Show use of range() step argument nicely. by Georg Brandl · 15 years ago
  49. 0b798a9 Remove outdated comment and fix a few style issues. by Georg Brandl · 15 years ago
  50. 75b32c9 remove script which uses long gone module by Benjamin Peterson · 15 years ago
  51. 69f81a8 Remove unneeded "L" suffixes. by Georg Brandl · 15 years ago
  52. 18cb949 Bring old demo up-to-date. by Georg Brandl · 15 years ago
  53. 58d2f26 Issue #7055: test___all__ now greedily detects all modules which have an by Antoine Pitrou · 15 years ago
  54. 1c77b7f Issue #7086: Added TCP support to SysLogHandler and tidied up some anachronisms in the code. by Vinay Sajip · 15 years ago
  55. 6e3dbbd replace has_key with 'in' operator by Benjamin Peterson · 15 years ago
  56. de05599 replace callable() by Benjamin Peterson · 15 years ago
  57. 0c8bee6 Issue #7082: When falling back to the MIME 'name' parameter, the by R. David Murray · 15 years ago
  58. 9586cf8 fix some coding style by Benjamin Peterson · 15 years ago
  59. 49b8814 http://bugs.python.org/issue7029 by Kristján Valur Jónsson · 15 years ago
  60. 4502dcd death to old CVS keyword by Benjamin Peterson · 15 years ago
  61. d5a713e Issue #7051: Clarify behaviour of 'g' and 'G'-style formatting. by Mark Dickinson · 15 years ago
  62. 539bff4 Update decimal test data to the most recent set from Mike Cowlishaw. by Mark Dickinson · 15 years ago
  63. 3d83082 Issue #7078: _struct.__doc__ was being ignored. Import it into struct. by Mark Dickinson · 15 years ago
  64. a5b642c Ensure that _scproxy gets build even when --disable-toolbox-glue by Ronald Oussoren · 15 years ago
  65. 15ae41c Issue #7048: logb should round its result when that result doesn't fit by Mark Dickinson · 15 years ago
  66. 590ecf3 Add Anders Chrigstrom to Misc/ACKS for his work on unicodedata. by Amaury Forgeot d'Arc · 15 years ago
  67. d0052d1 #1571184: makeunicodedata.py now generates the functions _PyUnicode_ToNumeric, by Amaury Forgeot d'Arc · 15 years ago
  68. 85ea4bf Remove two notes by Andrew M. Kuchling · 15 years ago
  69. fa6a427 Backport r73983: Document the thousands separator. by Andrew M. Kuchling · 15 years ago
  70. b6f0128 Use standard comma punctuation; reword some sentences in the docs by Andrew M. Kuchling · 15 years ago
  71. 400054e Reword sentence by Andrew M. Kuchling · 15 years ago
  72. 5a9c40b Add various items by Andrew M. Kuchling · 15 years ago
  73. 915b120 Note side benefit of socket.create_connection() by Andrew M. Kuchling · 15 years ago
  74. f6e3d7d Document 'skip' parameter to constructor by Andrew M. Kuchling · 15 years ago
  75. f5852f5 Fix narkup by Andrew M. Kuchling · 15 years ago
  76. 3fab040 Wording fix by Andrew M. Kuchling · 15 years ago
  77. 3de4647 Fix compilation warning on Windows, where size_t is 32bit but file offsets are 64bit. by Amaury Forgeot d'Arc · 15 years ago
  78. abe3d3e Issue #7058: Added save/restore for argv and os.environ to runtest_inner by R. David Murray · 15 years ago
  79. 245d915 Issue #7042: Fix test_signal failure on OS X 10.6 64-bit builds by Mark Dickinson · 15 years ago
  80. 82d31e9 test logging by Benjamin Peterson · 15 years ago
  81. 7adbb5a #7050 fix a SystemError when using tuple unpacking and augmented assignment by Benjamin Peterson · 15 years ago
  82. 3b34dd8 now uses the right exception type by Tarek Ziadé · 15 years ago
  83. 530df33 Issue #7028: Add note to hex() builtin docs pointing to float.hex(). by Mark Dickinson · 15 years ago
  84. f638486 removing the last remaning apply() calls by Tarek Ziadé · 15 years ago
  85. 1b48671 #6516 added owner/group support for tarfiles in Distutils by Tarek Ziadé · 15 years ago
  86. 12fafe6 Add NEWS entry for r75180. by Georg Brandl · 15 years ago
  87. f895cf5 #7031: Add TestCase.assertIsInstance and negated method. by Georg Brandl · 15 years ago
  88. 46cc46a Fix some weird whitespace and two other overlong lines. by Georg Brandl · 15 years ago
  89. c9062ca Sync the 2.x `io` docs with py3k, with a small note as to the distinction by Antoine Pitrou · 15 years ago
  90. 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
  91. 5a43e86 using dict.unset(k) instead of del dict[k]. consistent with release26-maint by Senthil Kumaran · 15 years ago
  92. 91abd6e Fix for issue7026 test_urllib: unsetting missing 'env' variable. by Senthil Kumaran · 15 years ago
  93. 8ca7482 Fix buggy accuracy test by Mark Dickinson · 15 years ago
  94. 657024c Mention issue6972 in extractall docs about overwriting things outside of by Gregory P. Smith · 15 years ago
  95. 209d4c3 Fix for issue6957: ensure that the OSX installer by Ronald Oussoren · 15 years ago
  96. 8b90204 #5329: fix os.popen* regression from 2.5: don't execute commands as a sequence by Philip Jenvey · 15 years ago
  97. 7e7a3ec Issue #7019: Unmarshalling of bad long data could produce unnormalized by Mark Dickinson · 15 years ago
  98. 13305f6 Issue 7008: Better document str.title and show how to work around the apostrophe problem. by Raymond Hettinger · 15 years ago
  99. 7248178 Issue #6790: Make it possible again to pass an `array.array` to by Antoine Pitrou · 15 years ago
  100. 9ebd242 * Update the Mac/README file. Add the list of OSX-specific configure options by Ronald Oussoren · 15 years ago