1. efbbb1c Patch by Chad Netzer (with significant change): by Guido van Rossum · 21 years ago
  2. a1ce93f From http://mail.python.org/pipermail/i18n-sig/2003-April/001557.html by Barry Warsaw · 21 years ago
  3. de354b7 Added a note that the Mac OSA modules are documented. by Jack Jansen · 21 years ago
  4. 7f2588c SF patch #706707, time.tzset standards compliance update by Stuart Bishop by Neal Norwitz · 21 years ago
  5. bae5c96 Moved all the scripting stuff to a separate section, added all the by Jack Jansen · 21 years ago
  6. 126f2b7 Avoid creating one of the TestSuite objects. by Fred Drake · 21 years ago
  7. 4ec6824 Fix test_tarfile failure when gzip is not available by Neal Norwitz · 21 years ago
  8. ffe33b7 Attempt to make all the various string *strip methods the same. by Neal Norwitz · 21 years ago
  9. 5c16c7b Move declaration of enc to scope where it is used by Neal Norwitz · 21 years ago
  10. 4efd917 Add a space after expression to be consistent by Neal Norwitz · 21 years ago
  11. 6b3fffa PyErr_NormalizeException(): in the type==NULL test, we should simply by Guido van Rossum · 21 years ago
  12. 594adac hoist contents of csv submodule up to the package level by Skip Montanaro · 21 years ago
  13. 502168a SF patch #718867: Fix reference leak for time.strptime by Raymond Hettinger · 21 years ago
  14. 7b5ce7f Make Unpickler objects colletable. by Jeremy Hylton · 21 years ago
  15. 4cf6319 Make Picklers collectable. by Jeremy Hylton · 21 years ago
  16. d06483c Missing DECREF. by Jeremy Hylton · 21 years ago
  17. dcae0dc Patch #718551: cygwinccompiler.get_versions() patch by Jason Tishler · 21 years ago
  18. 11d204c Add test for MessageBeep() by Guido van Rossum · 21 years ago
  19. f405064 - New function winsound.MessageBeep() wraps the Win32 API MessageBeep(). by Guido van Rossum · 21 years ago
  20. e125268 Add MessageBeep() API. by Guido van Rossum · 21 years ago
  21. ed538d8 Detabified. Removed dead code. by Guido van Rossum · 21 years ago
  22. 2fb9fdc Make it possible to call instancemethod() with 2 arguments. by Guido van Rossum · 21 years ago
  23. a713218 Reformat a few docstrings that caused line wraps in help() output. by Guido van Rossum · 21 years ago
  24. 69c2b88 Fix two crashes on Windows: by Guido van Rossum · 21 years ago
  25. 21123ab Various improvements to the way the table is formatted, to deal with by Guido van Rossum · 21 years ago
  26. a12fe4e - New function sys.call_tracing() allows pdb to debug code by Guido van Rossum · 21 years ago
  27. 12dd7b1 Minor markup adjustments. by Fred Drake · 21 years ago
  28. 6db7718 Try to discourage use of PyObject_Type(). by Guido van Rossum · 21 years ago
  29. fc29646 Don't use (PyObject *)PyObject_Type(x). It is a leaky and verbose way by Guido van Rossum · 21 years ago
  30. a6b1c75 Re-indent example; fix typo by Andrew M. Kuchling · 21 years ago
  31. 00bf828 property_traverse() should also traverse into prop_doc -- there's no by Guido van Rossum · 21 years ago
  32. 70367d3 Patch #709178: remove -static option from cygwinccompiler by Jason Tishler · 21 years ago
  33. d5e0a5a Created a minimal MacOSX section. by Jack Jansen · 21 years ago
  34. 0ae3220 Detabbed. by Jack Jansen · 21 years ago
  35. 058a84f Remove the --verify option in favor of the standard -n/--dry-run option by Andrew M. Kuchling · 21 years ago
  36. fcd845a Lots of small markup adjustments. by Fred Drake · 21 years ago
  37. 61a0a73 Add dependency information for the hotshot package docs. by Fred Drake · 21 years ago
  38. fda5e27 extra punctuation removed by Anthony Baxter · 21 years ago
  39. 567b0a6 Add dependency information for the timeit module docs. by Fred Drake · 21 years ago
  40. d6e9fe3 + libtimeit by Skip Montanaro · 21 years ago
  41. ca65274 doc for timeit module/script - mostly just a recast of Tim's docstring by Skip Montanaro · 21 years ago
  42. 400d8ee Make staticmethods and classmethods participate in GC. by Jeremy Hylton · 21 years ago
  43. 547eb42 tentative fix for #712322: modification time stamp checking failed by Just van Rossum · 21 years ago
  44. f2f174f install timeit.py as a command line script by Skip Montanaro · 21 years ago
  45. cfd5550 add a #! line for unix weenies by Skip Montanaro · 21 years ago
  46. 8805e66 New tests identical to boom and boom2, except using new-style classes. by Tim Peters · 21 years ago
  47. fb2a6cc correct a couple docstring nits by Skip Montanaro · 21 years ago
  48. f995cce Typo repair. by Tim Peters · 21 years ago
  49. 2c2068c Added example of using positional and keyword args with atexit.register(). by Fred Drake · 21 years ago
  50. de7ad2c Markup fix. by Fred Drake · 21 years ago
  51. 730f553 s/referrents/referents/g. Gotta love that referrers remains rife with rs. by Tim Peters · 21 years ago
  52. 0f81ab6 Finished implementing gc.get_referrents(): dealt with error and end by Tim Peters · 21 years ago
  53. fb2ab4d Comment repair; no semantic changes. by Tim Peters · 21 years ago
  54. f6b8045 Reworked has_finalizer() to use the new _PyObject_Lookup() instead by Tim Peters · 21 years ago
  55. df875b9 New private API function _PyInstance_Lookup. gc will use this to figure by Tim Peters · 21 years ago
  56. cb8ed53 add note suggested by rhettinger about example. by Anthony Baxter · 21 years ago
  57. b3303ef patch [ 698505 ] docs for hotshot module by Anthony Baxter · 21 years ago
  58. 1155887 initgc(): Rewrote to use the PyModule_AddXYZ API; cuts code size. by Tim Peters · 21 years ago
  59. 259272b handle_finalizers(): Rewrote to call append_objects() and gc_list_merge() by Tim Peters · 21 years ago
  60. f394df4 SF bug #699934: Obscure error message by Raymond Hettinger · 21 years ago
  61. ff41c48 SF patch #701494: more apply removals by Raymond Hettinger · 21 years ago
  62. 50c61d5 Switched from METH_VARARGS to METH_NOARGS for the 7 module functions that by Tim Peters · 21 years ago
  63. bf384c2 Reworked move_finalizer_reachable() to create two distinct lists: by Tim Peters · 21 years ago
  64. f6ae7a4 move_finalizers(): Rewrote. It's not necessary for this routine by Tim Peters · 21 years ago
  65. 2f74fdd test_boom: More comments. Also check that len(gc.garbage) doesn't by Tim Peters · 21 years ago
  66. 86b993b New comments. Rewrote has_finalizer() as a sequence of ifs instead of by Tim Peters · 21 years ago
  67. 93ad66d Fixed new seemingly random segfaults, by moving the initialization of by Tim Peters · 21 years ago
  68. c377cbf SF bug #715145: unittest.py still uses != in failUnlessEqual by Raymond Hettinger · 21 years ago
  69. dee38ac Add Tim's gc boom test to the test suite. by Jeremy Hylton · 21 years ago
  70. ce136e9 Fix Tim's boom example. by Jeremy Hylton · 21 years ago
  71. 76ffb19 Use fcntl() to put the audio device *back* into blocking mode after by Greg Ward · 21 years ago
  72. 059b094 Add get_referrents() helper function. by Jeremy Hylton · 21 years ago
  73. 5bd378b Add get_referrents() helper function. by Jeremy Hylton · 21 years ago
  74. 7fb697b Revert Patch #670715: iconv support. by Martin v. Löwis · 21 years ago
  75. 1e469c5 Fix description: u"%c" % 0xffffffff returned a ValueError not a TypeError. by Walter Dörwald · 21 years ago
  76. 44f527f Change formatchar(), so that u"%c" % 0xffffffff now raises by Walter Dörwald · 21 years ago
  77. 7ba256f Fix a comment by Barry Warsaw · 21 years ago
  78. a02b7a8 Added a note about scripting support and the IDE builtin help. by Jack Jansen · 21 years ago
  79. b603529 The minimal scripting example now actually works. by Jack Jansen · 21 years ago
  80. 9dd7810 Sigh... The get() and set() commands are not declared in the aete for by Jack Jansen · 21 years ago
  81. 842273b Regenerated with property names with _Prop_ prepended. by Jack Jansen · 21 years ago
  82. bc95605 Properties (like enums) are not in the global namespace but only valid by Jack Jansen · 21 years ago
  83. 3279cb0 Turned the suite compiler into an object. by Jack Jansen · 21 years ago
  84. 18c9b13 - All messages are now dependent on the --verbose option. by Jack Jansen · 21 years ago
  85. 1baa982 init_bsddb(): Added a few symbols that Greg forgot. by Barry Warsaw · 21 years ago
  86. 56fbcb5 Remove duplicate test. by Walter Dörwald · 21 years ago
  87. 43440a6 Fix PyString_Format() so that '%c' % u'a' returns u'a' by Walter Dörwald · 21 years ago
  88. 2a04623 - add the "download_url" field to the pre-2.2.3 metadata compatibility note by Fred Drake · 21 years ago
  89. fa86bf5 Fix typo. by Walter Dörwald · 21 years ago
  90. 0b27ff9 SF patch #712367, get build working on AIX by Neal Norwitz · 21 years ago
  91. aca44e2 Added a File->Generate OSA Suite command. by Jack Jansen · 21 years ago
  92. 71ad9fb Added 1-page introductions to creating GUIs in Python and the OSA interface. by Jack Jansen · 21 years ago
  93. 007fadd Fix symbol in grammar; this should fix some hyperlinking in the HTML version. by Fred Drake · 21 years ago
  94. fc71026 Subclasses of ObjectSpecifier can now be packed and unpacked. This allows by Jack Jansen · 21 years ago
  95. 397e914 In TalkTo.send(), check that we have access to the window manager, by Jack Jansen · 21 years ago
  96. 1fff697 Lib/plat-mac/lib-scriptpackages/SystemEvents added. by Jack Jansen · 21 years ago
  97. 068a1e2 Regenerated again, now clases are sorted by code, and with synonyms after by Jack Jansen · 21 years ago
  98. 2dc16f2 Classes have to be sorted by code, not name, and synonyms have to by Jack Jansen · 21 years ago
  99. ddb4f62 SF patch #667548, Add some audio constants by Michael Pruett by Neal Norwitz · 21 years ago
  100. 1ac3e39 Get build working with pre-C99 compilers by Neal Norwitz · 21 years ago