1. 91a3b9e Issue #1113244: Py_XINCREF, Py_DECREF, Py_XDECREF: Add `do { ... } while (0)' by Matthias Klose · 15 years ago
  2. a5d58c8 - Issue #2703: SimpleXMLRPCDispatcher.__init__: Provide default values for by Matthias Klose · 15 years ago
  3. 29c6a28 Normalize issue referencing style. by Georg Brandl · 15 years ago
  4. f2dfef1 Adding assertIs and assertIsNot methods to unittest.TestCase by Michael Foord · 15 years ago
  5. 7ab5eb9 #602893: add indicator for current line in cgitb that doesnt rely on styling alone. by Georg Brandl · 15 years ago
  6. 453d953 Fixed 5694: removed spurious test output in Distutils by Tarek Ziadé · 15 years ago
  7. 1ede0d6 #5298: clarify docs about GIL by using more consistent wording. by Georg Brandl · 15 years ago
  8. 4af280e #5444: adapt make.bat to new htmlhelp output file name. by Georg Brandl · 15 years ago
  9. d431519 #5432: make plistlib docstring a raw string, since it contains examples with backslash escapes. by Georg Brandl · 15 years ago
  10. 3f0ef20 #5471: fix expanduser() for $HOME set to "/". by Georg Brandl · 15 years ago
  11. a7ec072 #5370: doc update about unpickling objects with custom __getattr__ etc. methods. by Georg Brandl · 15 years ago
  12. 1956d5c Add NEWS entry for r71237. by Georg Brandl · 15 years ago
  13. dc4a771 #1326077: fix traceback formatting of SyntaxErrors. This fixes two differences with formatting coming from Python: a) the reproduction of location details in the error message if no line text is given, b) the prefixing of the last line by one space. by Georg Brandl · 15 years ago
  14. 517cfdc Whitespace normalization. by Georg Brandl · 15 years ago
  15. 0610e08 - Py_DECREF: Add `do { ... } while (0)' to avoid compiler warnings. by Matthias Klose · 15 years ago
  16. 6c59e72 #5580: no need to use parentheses when converterr() argument is actually a type description. by Georg Brandl · 15 years ago
  17. d3eaa74 #5615: make it possible to configure --without-threads again. by Georg Brandl · 15 years ago
  18. 1e566ce Issue #5695: Moved logging.captureWarnings() call inside with statement in WarningsTest.test_warnings. by Vinay Sajip · 15 years ago
  19. 50ba6e1 #1726172: dont raise an unexpected IndexError if a voidresp() call has an empty response. by Georg Brandl · 15 years ago
  20. 5d19610 #1718017: document the relation of os.path and the posixpath, ntpath etc. modules better. by Georg Brandl · 15 years ago
  21. 75f1107 Avoid sure signs of a diseased mind. by Georg Brandl · 15 years ago
  22. 89b1296 Normalize spelling of Mac OS X. by Georg Brandl · 15 years ago
  23. 9af0c56 #1742837: expand HTTP server docs, and fix SocketServer ones to document methods as methods, not functions. by Georg Brandl · 15 years ago
  24. 5d64c33 Include tkinter.h only after including tk.h (or the equivalent for another platform). by Guilherme Polo · 15 years ago
  25. 37d89a2 Change the way unittest.TestSuite use their tests to always access them through iteration. Non behavior changing, this allows you to create custom subclasses that override __iter__. by Michael Foord · 15 years ago
  26. 1d22d00 compare types with is by Benjamin Peterson · 15 years ago
  27. f9c8193 note how using iter* are unsafe while mutating and document iter(dict) by Benjamin Peterson · 15 years ago
  28. 91a1a07 Issue #5470: Package zipdir.zip. by Martin v. Löwis · 15 years ago
  29. 772033f No behavior change. by Hirokazu Yamamoto · 15 years ago
  30. ea0d744 revert r71159 since it broke the build by Benjamin Peterson · 15 years ago
  31. 8212a82 - Py_DECREF: Add `do { ... } while (0)' to avoid compiler warnings. by Matthias Klose · 15 years ago
  32. edb5e1e - Issue #3845: In PyRun_SimpleFileExFlags avoid invalid memory access with by Matthias Klose · 15 years ago
  33. 29b3630 #5601: clarify that webbrowser is not meant for file names. by Georg Brandl · 15 years ago
  34. 9d977b8 #5642: clarify map() compatibility to the builtin. by Georg Brandl · 15 years ago
  35. e3bc557 Replace the localized min/max calls with normal if/else by Raymond Hettinger · 15 years ago
  36. 013d6cc Allow multiple IDLE GUI/subprocess pairs to exist by Kurt B. Kaiser · 15 years ago
  37. 195374e Fix error in description of 'oct' (issue 5678). by R. David Murray · 15 years ago
  38. 64906bb Add helpful link. by Raymond Hettinger · 15 years ago
  39. 353a85f Clarified warning about logging use from asynchronous signal handlers. by Vinay Sajip · 15 years ago
  40. a178a69 Fix 'the the' duplication by Andrew M. Kuchling · 15 years ago
  41. aa34f5a Fix 'the the'; grammar fix by Andrew M. Kuchling · 15 years ago
  42. 9a4b94c Add some items by Andrew M. Kuchling · 15 years ago
  43. b0b1aa2 Added warning about logging use from asynchronous signal handlers. by Vinay Sajip · 15 years ago
  44. 957320a Fixed compile error on windows. by Hirokazu Yamamoto · 15 years ago
  45. 6ecb1a3 Localize the function lookup in timeit. by Raymond Hettinger · 15 years ago
  46. 6df48a3 Update docs for namedtuple's renaming change. by Raymond Hettinger · 15 years ago
  47. 756ab67 Have namedtuple's field renamer assign names that by Raymond Hettinger · 15 years ago
  48. 789be0c Issue #2396: backport the memoryview object. by Antoine Pitrou · 15 years ago
  49. 48e3fd2 sys.long_info attributes should be ints, not longs by Mark Dickinson · 15 years ago
  50. d3f03fa PyErr_NormalizeException may not set an error, so convert the PyErr_SetObject by Georg Brandl · 15 years ago
  51. dd98e04 Actually the displayhook should print the repr. by Georg Brandl · 15 years ago
  52. 52720c5 Add missing iteritems() call to the for loop in mailbox.MH.get_message(). by R. David Murray · 15 years ago
  53. e2942d0 Store the functions in the _type_equality_funcs as wrapped objects that are deep copyable. by Michael Foord · 15 years ago
  54. 7152f6d Add custom initializer argument to multiprocess.Manager*, courtesy of lekma by Jesse Noller · 15 years ago
  55. d56bab4 Clarify that datetime strftime does not produce leap seconds and datetime by R. David Murray · 15 years ago
  56. 5053fbb Issue 3551: Raise ValueError if the size causes ERROR_NO_SYSTEM_RESOURCES by Jesse Noller · 15 years ago
  57. 238cedc Fix two issues introduced by issue #71031 by changing the signature of by Brett Cannon · 15 years ago
  58. 345b2fe Better exception messages for unittest assert methods. by Michael Foord · 15 years ago
  59. c4f90eb PyImport_AppendInittab() took a char * as a first argument even though that by Brett Cannon · 15 years ago
  60. c730a6a Fixing the issue4860. Escaping embedded '"' character in js_output() method of Morsel. by Senthil Kumaran · 15 years ago
  61. 985951d fix error handling by Benjamin Peterson · 15 years ago
  62. 4b5c53a In PyErr_GivenExceptionMatches, temporarily bump the recursion by Georg Brandl · 15 years ago
  63. 4724f40 Remove port spec from run.py and fix bug where by Kurt B. Kaiser · 15 years ago
  64. b502bc7 Issue 3110: Additional protection for SEM_VALUE_MAX on platforms, thanks to Martin Loewis by Jesse Noller · 15 years ago
  65. 569fc96 Fix test_doctest, missed two assignments to curframe. by Georg Brandl · 15 years ago
  66. 3633c4f handle SEEK_ constants in test_io by Benjamin Peterson · 15 years ago
  67. 7b0f154 this should be :noindex: by Benjamin Peterson · 15 years ago
  68. 02ee888 fix markup by Benjamin Peterson · 15 years ago
  69. 355b126 issue5545: Switch to Autoconf for multiprocessing; special thanks to Martin Lowis for help by Jesse Noller · 15 years ago
  70. e9d35ef Typo fix by Andrew M. Kuchling · 15 years ago
  71. e361bcb Cache the f_locals dict of the current frame, since every access to frame.f_locals overrides its contents with the real locals which undoes modifications made by the debugging user. by Georg Brandl · 15 years ago
  72. 71095ae remove double underscores by Benjamin Peterson · 15 years ago
  73. 6471733 Add my initials to Misc/developers.txt. Names are now sorted by number of by Brett Cannon · 15 years ago
  74. 58b8b95 In Pdb, stop assigning values to __builtin__._ which interferes with the one commonly installed by gettext. by Georg Brandl · 15 years ago
  75. 3864459 Add tests checking the CSV module's ability to handle by R. David Murray · 15 years ago
  76. cafc225 add seek constants to __all__ by Benjamin Peterson · 15 years ago
  77. 00b6590 Revert accidental checkin. by Georg Brandl · 15 years ago
  78. 5942b91 Add NEWS item. by Georg Brandl · 15 years ago
  79. 88ed8f2 #4572: add SEEK_* values as constants in io.py. by Georg Brandl · 15 years ago
  80. fff2f4b Add link to an alternative generator with a long-period. by Raymond Hettinger · 15 years ago
  81. 20d114c Fix for issue5040. Adding test for Content-Length by Senthil Kumaran · 15 years ago
  82. 2ecd3c3 bounds check arguments to mmap.move(). All of them. Really. by Jack Diederich · 15 years ago
  83. ce3d221 test_warnings ironically had a single test that was not protecting the warnings by Brett Cannon · 15 years ago
  84. 2da4d62 test_logging was blindly clearing the warnings filter. This caused by Brett Cannon · 15 years ago
  85. 66c4a6b Issue #5647: MutableSet.__iand__() no longer mutates self during iteration. by Raymond Hettinger · 15 years ago
  86. 449b7d9 Adding Wing project file by Michael Foord · 15 years ago
  87. 15ba4da _warnings was importing itself to get an attribute. That's bad if warnings gets by Brett Cannon · 15 years ago
  88. 24565d2 Paul Kippes was given commit privileges to work on 3to2. by Brett Cannon · 15 years ago
  89. 3ade761 #5655: fix docstring oversight. by Georg Brandl · 15 years ago
  90. d5cc025 Ron DuPlain was given commit privileges at PyCon 2009 to work on 3to2. by Brett Cannon · 15 years ago
  91. b12e79d Issue 3270: document Listener address restrictions on windows by Jesse Noller · 15 years ago
  92. feab334 http://bugs.python.org/issue5623 by Kristján Valur Jónsson · 15 years ago
  93. ad078a0 The cgitb module had imports in its functions. This can cause deadlock with the by Brett Cannon · 15 years ago
  94. 61fce38 Fix test_xmlrpc and make the CGI handler work with no CONTENT_LENGTH. by Georg Brandl · 15 years ago
  95. c53306c Fixed compile error on windows. by Hirokazu Yamamoto · 15 years ago
  96. 6f0e835 Add Maksim, who worked on several issues at the sprint. by Georg Brandl · 15 years ago
  97. 63959bb #5631: add upload to list of possible commands, which is presented in --help-commands. by Georg Brandl · 15 years ago
  98. e92d4b6 The SimpleXMLRPCServer's CGI handler now runs like a pony. by Georg Brandl · 15 years ago
  99. 02cb0eb Fix multiprocessing.event to match the new threading.Event API by Jesse Noller · 15 years ago
  100. a83da35 Fix issue 2522. locale.format now checks that it is passed by R. David Murray · 15 years ago