1. 5a0ca4e do_cmd_methodline(): Fixed reference to method name when generating by Fred Drake · 26 years ago
  2. 4856d01 Removed a lot of unnecessary comment markers which cause unexplained by Fred Drake · 26 years ago
  3. 8e2c945 output_body(): For <address> elements, just skip, since they're by Fred Drake · 26 years ago
  4. bb3b002 Patches describing the statvfs() and fstatvfs() functions. Additional by Fred Drake · 26 years ago
  5. 583b019 Addition to previous note -- comfigure --without-gcc also works. by Guido van Rossum · 26 years ago
  6. f5ade40 Add note about gcc-2.8.1 setting sys.maxint to -1 on 64-bit IRIX. by Guido van Rossum · 26 years ago
  7. 6a1b53c get_config_h_filename(): Fix to work with current Python by Fred Drake · 26 years ago
  8. c66e860 Some requests have been fulfilled. by Guido van Rossum · 26 years ago
  9. 245ddc4 Set the cursor to a watch when opening the class browser (which may by Guido van Rossum · 26 years ago
  10. b287b3a Got rid of debug print statement in goto_line_event(). by Guido van Rossum · 26 years ago
  11. d5c8497 I think I like it better if it prints the traceback even when it displays by Guido van Rossum · 26 years ago
  12. 9016fcf Bind ESC to close-window. by Guido van Rossum · 26 years ago
  13. dc5066e Use a HSeparator between the classes and the items. by Guido van Rossum · 26 years ago
  14. d5f0380 Separator classes (draggable divider between two panes). by Guido van Rossum · 26 years ago
  15. 031d0e5 Patch by Charles Waldman -- remove unneeded and even harmful test for by Guido van Rossum · 26 years ago
  16. 0bdbe6c Added some more comments. by Guido van Rossum · 26 years ago
  17. 2403b0c Don't traceback when wakeup() is called when the window has been destroyed. by Guido van Rossum · 26 years ago
  18. f52cca9 Allow tearing off of the Windows menu. by Guido van Rossum · 26 years ago
  19. 0291d1d Close on ESC. by Guido van Rossum · 26 years ago
  20. dd0d335 Updated a bunch of things (it was mostly still 0.1!) by Guido van Rossum · 26 years ago
  21. 5dadf7e Use 'xrange', not 'range', in error messages. Reported by Nathan Sullivan. by Guido van Rossum · 26 years ago
  22. 1a1c6bb (py-outdent-p): Short circuit infloop for illegal construct by Barry Warsaw · 26 years ago
  23. 83c74d4 Added ScriptBinding to standard bindings. by Guido van Rossum · 26 years ago
  24. 9f42584 This now actually works. See doc string. It can run a module (i.e. by Guido van Rossum · 26 years ago
  25. 5d00b6d Need extern decl. for fdatasync() in case it exists but isn't declared by Guido van Rossum · 26 years ago
  26. e6c2cf1 Now using autoconf 2.13 by Guido van Rossum · 26 years ago
  27. 21142a0 Added fsync() and fdatasync(). Patches by Scott Cotton. Requires by Guido van Rossum · 26 years ago
  28. 302331a FieldStorage.__init__(): if there is no content-type header, use by Barry Warsaw · 26 years ago
  29. b33f612 What's new in this release. by Guido van Rossum · 26 years ago
  30. 2c1f6be Hack for Windows so that if (1) the exit status is nonzero and (2) we by Guido van Rossum · 26 years ago
  31. b6584ca Remove the "lib-" prefix from the name of the info archive. by Fred Drake · 26 years ago
  32. ed94dde No longer useful. by Fred Drake · 26 years ago
  33. dd21c32 It's finally gone! by Fred Drake · 26 years ago
  34. f2b5374 Remove obsolete files. by Fred Drake · 26 years ago
  35. 78104a9 Replace most everything but the comment at the top. by Fred Drake · 26 years ago
  36. c4e9263 Add a few comments. by Fred Drake · 26 years ago
  37. 38df3c3 Paul Prescod's patches to allow the stack viewer to pop up when a by Guido van Rossum · 26 years ago
  38. c58f346 New support scripts for HTML->info conversion that use Michael Ernst's new by Fred Drake · 26 years ago
  39. 3fe1d32 New conversion tools for HTML->info from Michael Ernst by Fred Drake · 26 years ago
  40. 4149843 Need to include <sys/types.h> for off_t. by Guido van Rossum · 26 years ago
  41. df69365 Ty Sarna writes: by Guido van Rossum · 26 years ago
  42. 257fd51 Changes for long file support. by Guido van Rossum · 26 years ago
  43. 637ad47 convert(): Make sure no line has trailing whitespace. (docfixer.py by Fred Drake · 26 years ago
  44. 446ccfe The doc string for strptime had the arguments reversed -- the string by Guido van Rossum · 26 years ago
  45. c7dd3e1 Markup nit. by Fred Drake · 26 years ago
  46. 629082e Change paragraph width limit to 70 (like Emacs M-Q). by Guido van Rossum · 26 years ago
  47. 2927e78 Separating TODO from README. Slight reformulation of features. No by Guido van Rossum · 26 years ago
  48. 6ba219e Separating TODO from README. by Guido van Rossum · 26 years ago
  49. cf3ce92 Explain how come that pickle and cPickle, while using the same data by Guido van Rossum · 26 years ago
  50. e51aa5b Minor clarifications by Sean Reifschneider: by Guido van Rossum · 26 years ago
  51. 87e611e Replace the docs for reduce with an adaptation of its docstring, which by Guido van Rossum · 26 years ago
  52. 74429ea Add doc for access() and ttyname(). Patch by Sean Reifschneider. by Guido van Rossum · 26 years ago
  53. 6892aa3 fix bug in PyZlib_flush. patch from Grzegorz Makarewicz & Rafal Smotrzyk. by Jeremy Hylton · 26 years ago
  54. 015f22a Change the access() code to return 1 if granted, 0 if not granted. by Guido van Rossum · 26 years ago
  55. fcc5910 Preliminary code to mark paragraphs. Seems to work, but very slow. by Fred Drake · 26 years ago
  56. 5c35520 Fixed bug in the common-case code for HTTP URLs; it would lose the query, by Andrew M. Kuchling · 26 years ago
  57. 2386d73 Constants for [f]statvfs() (new in posixmodule.c) by Steve Clift. by Guido van Rossum · 26 years ago
  58. f98e2a7 Changes for long file support by Steve Clift. by Guido van Rossum · 26 years ago
  59. 00f0f6e Changes for long file support by Steve Clift. by Guido van Rossum · 26 years ago
  60. 3c9fe0c Changes for long file support by Steve Clift. by Guido van Rossum · 26 years ago
  61. cdd9ae0 Changes for long file support by Steve Clift. by Guido van Rossum · 26 years ago
  62. 763737b Changes for long file support by Steve Clift. by Guido van Rossum · 26 years ago
  63. 056bad9 Changes for long file support by Steve Clift. by Guido van Rossum · 26 years ago
  64. 94f6f72 Changes for long file support by Steve Clift. by Guido van Rossum · 26 years ago
  65. 2e6e7d4 Changes for long file support by Steve Clift. by Guido van Rossum · 26 years ago
  66. 522af3a Update and add docstrings. by Fred Drake · 26 years ago
  67. c553358 Remove documentation for whatraw() since it's gone now. by Fred Drake · 26 years ago
  68. dc1aedf Move brief descriptions of what() and whathdr() to docstrings in the by Fred Drake · 26 years ago
  69. 9ddaaa1 Another patch from Fred: factored _init_posix into by Greg Ward · 26 years ago
  70. f4bf044 Got rid of whatraw(). by Guido van Rossum · 26 years ago
  71. 638d7f1 Add extend() method. A small New Year's present from Jean-Claude Wippler. by Guido van Rossum · 26 years ago
  72. 60adb36 Document the sndhdr module. by Fred Drake · 26 years ago
  73. a2e4017 Shorten the synopsis that gets into the table of contents. by Fred Drake · 26 years ago
  74. ccc6272 write_idxfile(): New function. Isolate format of the external index by Fred Drake · 26 years ago
  75. 02e18b4 Added missing "from" in IOError description. by Fred Drake · 26 years ago
  76. 26f0f65 Remove obsolete comment. by Fred Drake · 26 years ago
  77. 4494101 Incorporate fix suggested by /Fredrik Lundh in the newsgroup to cope by Guido van Rossum · 26 years ago
  78. 716a89c Patch by Charles Waldman to implement an optional nlines argument to by Guido van Rossum · 26 years ago
  79. 5d56d36 Make the documents that have indexes dependent on the buildindex.py script. by Fred Drake · 26 years ago
  80. 7d45f6d do_cmd_methodline(): New function, implements indexing version of \methodline. by Fred Drake · 26 years ago
  81. caa0606 Upgraded to WISE 5.0g; bumped to 1.5.2b2; added dialog for Tcl. by Guido van Rossum · 26 years ago
  82. 3b07480 trim_ignored_letters(): Simplify a little. by Fred Drake · 26 years ago
  83. 1e899cd Hm. There was a boundary condition error at the end of the file too. by Guido van Rossum · 26 years ago
  84. 4eac47c Hm. Add Unix binding for replace, too. by Guido van Rossum · 26 years ago
  85. 8d7e11a Update information on the version of latex2html to use, including by Fred Drake · 26 years ago
  86. f8d579c This hopefully fixes the problem of having to set PATH by Guido van Rossum · 26 years ago
  87. 8830319 Fix two places (seek and truncate) where a cascade of PyArg_Parse by Guido van Rossum · 26 years ago
  88. e89d450 Chris Herborth writes: by Guido van Rossum · 26 years ago
  89. cad3d47 Chris Herborth writes: by Guido van Rossum · 26 years ago
  90. d3b0921 Chris Herborth writes: by Guido van Rossum · 26 years ago
  91. 906572a Ran eventparse.py again. by Guido van Rossum · 26 years ago
  92. e911c3e Added Unix Meta-q key binding; fix find_paragraph when at start of file. by Guido van Rossum · 26 years ago
  93. 16b91f8 Added Meta-/ binding for Unix as alt for Alt-/. by Guido van Rossum · 26 years ago
  94. 5bfffbd Add unix binding for grep (otherwise the menu entry doesn't work!) by Guido van Rossum · 26 years ago
  95. 1ae3f89 Adjusted Unix height to work with fvwm96. :=( by Guido van Rossum · 26 years ago
  96. b75d021 Typo: "TWELV" --> "TWELVE" by Fred Drake · 26 years ago
  97. d53869e Need to import sys! by Guido van Rossum · 26 years ago
  98. f903898 Formatted some paragraphs by Guido van Rossum · 26 years ago
  99. 94e82ce Add new extension to reformat a (text) paragraph. by Guido van Rossum · 26 years ago
  100. 46facd1 Typo in Win specific height setting. by Guido van Rossum · 26 years ago