1. edfb302 Fix error in exception message. by Brett Cannon · 21 years ago
  2. 9da1efb Remove extra copy of test_key_with_exception that somehow appeared by Michael W. Hudson · 21 years ago
  3. 1df0f65 Fixes and tests for various "holding pointers when arbitrary Python code by Michael W. Hudson · 21 years ago
  4. c6c5ece Typo repair; added some comments and horizontal whitespace. by Tim Peters · 21 years ago
  5. da6081f Ported to Universal Headers 3.4.2. Qd and Qt remain to be done. by Jack Jansen · 21 years ago
  6. fe3fe4a Adding an interface to the high-level Open Scripting Architecture, by Jack Jansen · 21 years ago
  7. 8850c87 Fix link by Raymond Hettinger · 21 years ago
  8. 8772d4e Add a standard library tour by Raymond Hettinger · 21 years ago
  9. 2e8624c Fix test_unicode_file errors on platforms without Unicode file support, by Mark Hammond · 21 years ago
  10. 07f1dfa Blacklisting LSInit and LSTerm, which are deprecated. Partial fix for 853558. by Jack Jansen · 21 years ago
  11. c8de458 Add parameters indent, width and depth to pprint.pprint() and pprint.pformat() by Walter Dörwald · 21 years ago
  12. 7a7ede5 Patch #750542: pprint now will pretty print subclasses of list, tuple by Walter Dörwald · 21 years ago
  13. 291481b Reduce the size of Big String and Big Binary tests to 2**14 (minus one by Guido van Rossum · 21 years ago
  14. 7bafa9f Fix typo. (From SF bug #853064) by Walter Dörwald · 21 years ago
  15. 6d45972 Add test for bug "[ 846133 ] os.chmod/os.utime/shutil do not work with by Mark Hammond · 21 years ago
  16. b337dd9 Add TESTFN_UNICODE_UNENCODEABLE, a unicode filename that can not be by Mark Hammond · 21 years ago
  17. 817c929 Fix [ 846133 ] os.chmod/os.utime/shutil do not work with unicode filenames by Mark Hammond · 21 years ago
  18. 7d0a609 An interface to the LaunchServices API. by Jack Jansen · 21 years ago
  19. 148eb6a doc nit by Skip Montanaro · 21 years ago
  20. 89f9865 OS/2+EMX: make the link() emulation available as os.link() by Andrew MacIntyre · 21 years ago
  21. eb477f0 EMX lacks an implementation of link(). As Mailman wants os.link() to by Andrew MacIntyre · 21 years ago
  22. 2e8a6e0 To find the curses extension as a DLL (on OS/2), we need to adjust the by Andrew MacIntyre · 21 years ago
  23. c2138af - add notes about os.link() emulation; - various minor cleanups and updates. by Andrew MacIntyre · 21 years ago
  24. 51578ae - add build support for curses extension to be a normal DLL as well as by Andrew MacIntyre · 21 years ago
  25. 63ee110 use same compiler switches as core for extensions by Andrew MacIntyre · 21 years ago
  26. 70ef869 SF patch #852140: keyword.py - use __contains__ and bool by Raymond Hettinger · 21 years ago
  27. 2569528 Convert a 0/1 to False/True. by Raymond Hettinger · 21 years ago
  28. 1d7323e Py_Finalize(): disabled the second call of cyclic gc, and added extensive by Tim Peters · 21 years ago
  29. 85f48e3 Convert path objects to strings in askdirectory. Fixes #852314. by Martin v. Löwis · 21 years ago
  30. 3375fc5 Apply extract functions instead of lambda. by Raymond Hettinger · 21 years ago
  31. 0ad142a Revert previous change. MAL preferred the old version. by Raymond Hettinger · 21 years ago
  32. 166958b As discussed on python-dev, added two extractor functions to the by Raymond Hettinger · 21 years ago
  33. a455170 Simplifed the code. by Raymond Hettinger · 21 years ago
  34. 0a18552 Add testcases for _winreg segfault (SF 851056). by Guido van Rossum · 21 years ago
  35. fd25aca Add news item for _winreg fix (SF bug 851056). by Guido van Rossum · 21 years ago
  36. a6a38ad Remove all uses of alloca() from this module. The alloca() return value by Guido van Rossum · 21 years ago
  37. 457bf91 Fix a bug discovered by Kalle Svensson: comparing sys.maxint to by Guido van Rossum · 21 years ago
  38. 6c9e130 - Removed FutureWarnings related to hex/oct literals and conversions by Guido van Rossum · 21 years ago
  39. 37e1363 Make sure the list.sort's decorate step unwinds itself before returning by Raymond Hettinger · 21 years ago
  40. b310591 See SF #848614: distutils' msvccompiler now tries to detect that MSVC6 by Thomas Heller · 21 years ago
  41. ac5d667 Fix (workaround, actually) for bug #844676: deselecting "show hidden" can by Jack Jansen · 21 years ago
  42. 9cc4fcd Package Mnager error dialogs could refer to hidden packages, which was by Jack Jansen · 21 years ago
  43. b68947e 2.4a0 Package Manager shouldn't attempt to use the 2.3 database. by Jack Jansen · 21 years ago
  44. a775dd1 the "idle" script has moved from Lib/idlelib to Tools/scripts. by Jack Jansen · 21 years ago
  45. ccabed3 Patch #849350: Update to document bool return values. Backported to 2.3. by Martin v. Löwis · 21 years ago
  46. 94681fc Patch #849595: Add socket.shutdown() constants. by Martin v. Löwis · 21 years ago
  47. 04bf724 - clean up generated HTML - make the output more XHTML friendly by Fred Drake · 21 years ago
  48. 2ce1d47 Fix typo and mark-up; shorten text by Andrew M. Kuchling · 21 years ago
  49. 6708756 Fix typos by Andrew M. Kuchling · 21 years ago
  50. d446230 Nits from a review of the documentation update. by Raymond Hettinger · 21 years ago
  51. 7245265 Add version changed doc for addition of fillchar to ljust/rjust/center by Neal Norwitz · 21 years ago
  52. 4f8f976 Add optional fillchar argument to ljust(), rjust(), and center() string methods. by Raymond Hettinger · 21 years ago
  53. bd93b3e As discussed on python-dev, banish apply(), buffer(), coerce(), and by Raymond Hettinger · 21 years ago
  54. bc0f2ab Expose dict_contains() and PyDict_Contains() with is about 10% faster by Raymond Hettinger · 21 years ago
  55. 3972457 make the generated HTML more XHTML friendly by Fred Drake · 21 years ago
  56. 188e25f Fix a typo introduced at 1.21 by Kurt B. Kaiser · 21 years ago
  57. a38123e Factor out more duplicate code. by Raymond Hettinger · 21 years ago
  58. 7e0282f Note the addition of set() and frozenset(). by Raymond Hettinger · 21 years ago
  59. 2303b1c Keybindings with the Shift modifier now work correctly. So do bindings by Kurt B. Kaiser · 21 years ago
  60. 5f4e45d Stop GCC warning about int literal that's so long that it becomes an by Guido van Rossum · 21 years ago
  61. 0bba722 Silence GCC warning when asserts are turned off. by Guido van Rossum · 21 years ago
  62. c714d45 Update NEWS.txt to include some items missed earlier. Update the by Kurt B. Kaiser · 21 years ago
  63. f5f41bf * Checkin remaining documentation by Raymond Hettinger · 21 years ago
  64. ceca5d2 test_guess_all_types(): Use a more robust test for checking that by Barry Warsaw · 21 years ago
  65. 49ba4c3 * Simplify hash function and add test to show effectiveness of the hash by Raymond Hettinger · 21 years ago
  66. baf0f8f - When method objects have an attribute that can be satisfied either by Guido van Rossum · 21 years ago
  67. bfd334a Extend temporary hashability to remove() and discard(). by Raymond Hettinger · 21 years ago
  68. 5a5b243 More words: gave more motivation, and added cautions about the special by Tim Peters · 21 years ago
  69. 65367ca Add a missing import. Closes SF # 816344. by Barry Warsaw · 21 years ago
  70. 19c2d77 Allow temporary hashability for the __contains__ test. by Raymond Hettinger · 21 years ago
  71. 3fbec70 issubset() and issuperset() to work with general iterables by Raymond Hettinger · 21 years ago
  72. 82d73dd Three minor performance improvements: by Raymond Hettinger · 21 years ago
  73. dff9dbd Add two items by Andrew M. Kuchling · 21 years ago
  74. 944a6c3 test_applesingle is an expected skip almost anywhere. by Guido van Rossum · 21 years ago
  75. 403a203 SF bug 839548: Bug in type's GC handling causes segfaults. by Tim Peters · 21 years ago
  76. 901dc98 test_applesingle is an expected skip on Win32 by Raymond Hettinger · 21 years ago
  77. c09857a Added some help to OSX/Dist/README.txt, plus all the information by Jack Jansen · 21 years ago
  78. 4df3068 Fix typo fix. by Walter Dörwald · 21 years ago
  79. 6402357 Talk about old code: removed a reference to THINK_C. by Jack Jansen · 21 years ago
  80. 7107c1a Got rid of macglue.h, replacing it by pymactoolbox.h where relevant. by Jack Jansen · 21 years ago
  81. 3305d24 Got rid of macglue.h, moved the little bit that remains relevant by Jack Jansen · 21 years ago
  82. 8d902ab No longer used. by Jack Jansen · 21 years ago
  83. eddc144 Getting rid of all the code inside #ifdef macintosh too. by Jack Jansen · 21 years ago
  84. 4bae2d5 Getting rid of code dependent on GUSI or the MetroWerks compiler. by Jack Jansen · 21 years ago
  85. bc2fbc7 Getting rid of one more TARGET_API_MAC_OSX. by Jack Jansen · 21 years ago
  86. af7dc8d Patch #831747: Add skip_accept_encoding parameter to putrequest. by Martin v. Löwis · 21 years ago
  87. a53f4eb Getting rid of code conditional on TARGET_API_MAC_*. by Jack Jansen · 21 years ago
  88. 9588770 PyDoc_STR is always defined nowadays (and has been for quite some time:-) by Jack Jansen · 21 years ago
  89. e48cef7 Getting rid of WITHOUT_FRAMEWORKS and ACCESSOR_CALLS_ARE_FUNCTIONS: MacOS9isms. by Jack Jansen · 21 years ago
  90. 10d176f Get rid of MacOS9 support. Paths are still hard-coded, that'll be fixed later. by Jack Jansen · 21 years ago
  91. 70b9f49 Remove deprecation of sets.Set.update(). by Raymond Hettinger · 21 years ago
  92. 37249c5 WITHOUT_FRAMEWORKS conditional code bites the dust: this was for by Jack Jansen · 21 years ago
  93. f387e2d Gone: all this functionality is now in the Carbon.File and Folder modules. by Jack Jansen · 21 years ago
  94. fb27656 Getting rid of support for the ancient Apple MPW compiler. by Jack Jansen · 21 years ago
  95. 6196322 MacOS9 support is gone. by Jack Jansen · 21 years ago
  96. d338b6e Removing the obvious OS9-only documents§ by Jack Jansen · 21 years ago
  97. 28ecf70 Getting rid of support for MacOS9 and earlier. This is the first step, by Jack Jansen · 21 years ago
  98. 6045b9c Temporary fix for buildon on both Panther and Jaguar. by Jack Jansen · 21 years ago
  99. 652b28c Moved various files over from the release23-maint branch. by Jack Jansen · 21 years ago
  100. 42f3b9a Upped version by Jack Jansen · 21 years ago