1. 68d486c (py-parse-state): Teach python-mode how to scan code which follows by Barry Warsaw · 24 years ago
  2. 1e54211 Shuffle premature decref; nuke unreachable code block. by Tim Peters · 24 years ago
  3. 5dd7362 Hide the ProgressBar before raising KeyboardInterrupt. Not doing so resulted in a hang on Carbon. by Jack Jansen · 24 years ago
  4. be1e569 Turn on the "multifinder aware" bit. This should always have been on, but was was never a problem that it was off until CarbonLib 1.1 (which requires it, for some reason). by Jack Jansen · 24 years ago
  5. 6fd08ba Do not hide a failure to create a temporary file; if it fails the work by Fred Drake · 24 years ago
  6. 07e6c50 Minor adjustments, including markup corrections. by Fred Drake · 24 years ago
  7. 447f545 Fix extra backslash in example. by Fred Drake · 24 years ago
  8. 3538c93 Another name. by Fred Drake · 24 years ago
  9. afdc8fc Fix up the markup in some recently-added portions of the text. by Fred Drake · 24 years ago
  10. 22e4182 Describe -s a little more generically. by Barry Warsaw · 24 years ago
  11. 0372af7 symtable_update_free_vars(), symtable_undo_free(), by Barry Warsaw · 24 years ago
  12. 74b3bc4 Fix for bug 133489: compiler leaks memory by Jeremy Hylton · 24 years ago
  13. 3e13b1e Py_Main(): When compiled by Insure (i.e. __INSURE__ is defined), call by Barry Warsaw · 24 years ago
  14. a903ad98 _Py_ReleaseInternedStrings(): Private API function to decref and by Barry Warsaw · 24 years ago
  15. 8d7f086 Patch #103899: Don't compile modules configured in Setup. This seems much by Andrew M. Kuchling · 24 years ago
  16. e06337a Patch #103937: Attempt to get the BSDDB autodetection right (or at least by Andrew M. Kuchling · 24 years ago
  17. 5edc627 Checkin updated version of patch #103933 . As Thomas says, fixes the bugs #131064, #129584, #127722. See the discussion in bug #131064 by Mark Hammond · 24 years ago
  18. af44963 Patch 103928: Correct zlib freeze settings for Win32. by Tim Peters · 24 years ago
  19. 19f3c52 Work around the broken formatting of sys.ps1 prompts in running text. by Fred Drake · 24 years ago
  20. 2f55b11 cd to the html/ directory to generate the global module index so the links by Fred Drake · 24 years ago
  21. d27ed85 The ACKS file is in the current directory when converted to HTML; this was by Fred Drake · 24 years ago
  22. cb45bfd Remove entry for soundex module! by Fred Drake · 24 years ago
  23. eefb107 _PyObject_Dump(): If argument is NULL, print "NULL" instead of crashing. by Barry Warsaw · 24 years ago
  24. 2da0ea8 In try_3way_to_rich_compare(), swap the call to default_3way_compare() by Guido van Rossum · 24 years ago
  25. 230d17d Sequence indexes are non-negative, not natural (0 is not a natural number). by Fred Drake · 24 years ago
  26. 7c30de6 Remove documentation for the soundex module; the module is no longer by Fred Drake · 24 years ago
  27. 1c8e1f0 asin micro-optimization suggested in email. by Tim Peters · 24 years ago
  28. 15d7270 Windows: Remove soundex from pythoncore subproject. by Tim Peters · 24 years ago
  29. debc352 Mention the removal of soundex.c by Andrew M. Kuchling · 24 years ago
  30. a1a690f Patch #103926: fix two warnings from Tru64's compiler by Andrew M. Kuchling · 24 years ago
  31. b995509 Remove soundex module, as stated by GvR. by Andrew M. Kuchling · 24 years ago
  32. 7edbd4f Patch #103885: Add dynamic registration and lookup of DOM implementations. by Martin v. Löwis · 24 years ago
  33. f5d3ea0 Fix previous checkin, hopelessly broken as it was; reported by Detlef Lannert. by Jeremy Hylton · 24 years ago
  34. 793de09 Add a line to "python -h" output about PYTHONCASEOK. by Tim Peters · 24 years ago
  35. f55204b Rip out various module-enabling switches, made obsolete by setup.py by Andrew M. Kuchling · 24 years ago
  36. 39c4ed6 Move the signal module back into Setup.config.in so it can be enabled by Andrew M. Kuchling · 24 years ago
  37. 3a9a96c replace exec with simple assignments by Jeremy Hylton · 24 years ago
  38. add8b24 Release a PYC resource after reading it. No need to keep it incore. by Jack Jansen · 24 years ago
  39. 316a010 Waste 2.0 has many more options for the undo label. by Jack Jansen · 24 years ago
  40. 9ad2752 Use re in stead of regex, so we get rid of the annoying warning during startup. by Jack Jansen · 24 years ago
  41. 2d0589b The code to write timestamps couldn't handle negative times (and time by Jack Jansen · 24 years ago
  42. 0009c4e Whitespace normalization. by Tim Peters · 24 years ago
  43. edf2210 Bug #133297: cmath.asin is the same as cmath.asinh. by Tim Peters · 24 years ago
  44. cf393f3 Patch #103544: always compile the dl and nis modules on Unix; let's see by Andrew M. Kuchling · 24 years ago
  45. c503219 Add Donovan Baarda for fixing a tortuous zlibmodule bug (but aren't they all?) by Andrew M. Kuchling · 24 years ago
  46. 9a0f98e Add test case from bug #124981: zlib decompress of sync-flushed data fails by Andrew M. Kuchling · 24 years ago
  47. 9aff4a2 Patch #103373 from Donovan Baarda: This patch: by Andrew M. Kuchling · 24 years ago
  48. bc8f72c Patch #103854: raises an exception if a non-Attr node is passed to by Andrew M. Kuchling · 24 years ago
  49. 8b94b1c Added test for patch #103473: test an unquoted cookie value containing '=' by Andrew M. Kuchling · 24 years ago
  50. 7153460 (py-execute-region): This one's easy... kill the temporary file's by Barry Warsaw · 24 years ago
  51. 599ce9c On OSX passing NULL to NewUniversalFilterProc() does not return NULL but a crashing UPP. This made ModalDialog (and, hence EditPythonPrefs and EasyDialogs and many others) crash. Fixed. by Jack Jansen · 24 years ago
  52. c05abb3 Patch #103473 from dougfort: Some sites (amazon.com for one) drop by Andrew M. Kuchling · 24 years ago
  53. 85cd1d6 The code in PyImport_Import() tried to save itself a bit of work and by Guido van Rossum · 24 years ago
  54. 8b41116 import.c -> importexc.c by Barry Warsaw · 24 years ago
  55. a18e7ea import -> importexc by Barry Warsaw · 24 years ago
  56. d5221a3 import.c -> importexc.c by Barry Warsaw · 24 years ago
  57. 8cb82bd Rename some constants for easier readability. by Tim Peters · 24 years ago
  58. 14e2640 Mechanical edits just so I can read it. by Tim Peters · 24 years ago
  59. 273ad45 Updated to use new Python features Reindented by Moshe Zadka · 24 years ago
  60. 8b6f989 Fixed to use new Python features and use more commonly accepted style Reindented by Moshe Zadka · 24 years ago
  61. 38e083b Changed to use the fact that str(long) doesn't produce a trailing L Reindented by Moshe Zadka · 24 years ago
  62. 754ba58 Improve accuracy. In the .tex file, note the new "% BUG:" comments: an by Tim Peters · 24 years ago
  63. f0768c8 Added missing \item. See also bug 133213, about damaged HTML generated by Tim Peters · 24 years ago
  64. e79af27 Flesh out PlaySound() docs enough so that SND_ALIAS isn't hopelessly confusing. by Tim Peters · 24 years ago
  65. 121b6eb SF patch #103749: implicit tuple + default arg by Jeremy Hylton · 24 years ago
  66. 2b3f0ca Fix for implicit tuple + default arguments, courtesy of Michael Hudson. by Jeremy Hylton · 24 years ago
  67. 5b0705d ConfigParser.optionxform(): Document this since it is available for by Fred Drake · 24 years ago
  68. ffd9328 Clean up the "docs". by Tim Peters · 24 years ago
  69. c9f7c26 Wrap a bunch of long lines. by Fred Drake · 24 years ago
  70. f1da628 Fix a few small typos in the docstrings. by Fred Drake · 24 years ago
  71. f6a9617 Michael Hudson <mwh21@cam.ac.uk>: by Fred Drake · 24 years ago
  72. 842ab38 No longer needed since the main Makefile is "flat". by Fred Drake · 24 years ago
  73. f6bfe8e Convert to a "flat" Makefile. by Fred Drake · 24 years ago
  74. 50d1fcf Add an option allowing the user to determine where the output HTML is built. by Fred Drake · 24 years ago
  75. f2502ad Fix markup so this document will format. by Fred Drake · 24 years ago
  76. c070123 This never saw much use, so remove it. by Fred Drake · 24 years ago
  77. b68c245 SF Patch # 103839 byt dougfort: Allow ';' in attributes by Guido van Rossum · 24 years ago
  78. 8ba9445 Revert SF patch #103655 by Neil Schemenauer · 24 years ago
  79. 9505272 Revert SF patch #103655. Martin Löwis says: by Neil Schemenauer · 24 years ago
  80. 653809c Make the top-level index.html depend on the individual document index.html by Fred Drake · 24 years ago
  81. 5f52f72 Checked in with Andrew's blessing, I leave the comments with which by Thomas Heller · 24 years ago
  82. 15bc404 Added entries for difflib documentation. by Fred Drake · 24 years ago
  83. baf7142 Documentation for the difflib module, converted from the module docstrings. by Fred Drake · 24 years ago
  84. f828e2d Add simple section for assert, including assert w/ lambdas by Jeremy Hylton · 24 years ago
  85. 384639f When running python -O, do not include blocks defined in asserts in by Jeremy Hylton · 24 years ago
  86. 4779399 Add test for syntax error on "x = 1 + 1". by Jeremy Hylton · 24 years ago
  87. c348cd7 fix long line by Jeremy Hylton · 24 years ago
  88. 17820c4 Tolerate ill-formed trees in symtable_assign(). Fixes SF bug 132510. by Jeremy Hylton · 24 years ago
  89. b6a4425 DOMException._get_code(): by Fred Drake · 24 years ago
  90. e09f639 Enhancements to the bdist_wininst command: by Thomas Heller · 24 years ago
  91. 636b906 This patch makes the default compiler determination more flexible by Marc-André Lemburg · 24 years ago
  92. 373d151 More typos. libwinsound.tex typo noted by Peter Funk (thanks!). by Tim Peters · 24 years ago
  93. 3e50242 Repair tab/space screwup. by Tim Peters · 24 years ago
  94. 25a9ce3 Take a tour of hell's seedier neighborhoods to try to make winsound.Beep() by Tim Peters · 24 years ago
  95. c761fc8 The usual. by Neil Schemenauer · 24 years ago
  96. 6625216 Use -G option for linking shared libraries on Solaris (SF patch #103656). by Neil Schemenauer · 24 years ago
  97. c5cfcb4 Fix bug in clean target (closes SF patch 103864 and bug 132879). The clobber by Neil Schemenauer · 24 years ago
  98. ccc7473 reorganized PyUnicode_DecodeUnicodeEscape a bit (in order to make it by Fredrik Lundh · 24 years ago
  99. b95896b renamed internal functions to avoid name clashes under OpenVMS by Fredrik Lundh · 24 years ago
  100. c0c7ee3 detect attempts to repeat anchors (fixes bug #130748) by Fredrik Lundh · 24 years ago