summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Logical markup & other small nits.Fred Drake1999-04-211-16/+15
|
* Explain *why* the copytree() implementation is presented as theFred Drake1999-04-211-1/+2
| | | | example!
* Textual references to the glob module can be hyperlinks.Fred Drake1999-04-211-2/+2
|
* FreeBSD/[34]* change, Dom Mitchell.Guido van Rossum1999-04-212-5/+5
|
* Markup nit to fixed dropped space in HTML output.Fred Drake1999-04-211-4/+4
|
* Patch by Per Cederqvist, seemingly approved by The Dragon:Guido van Rossum1999-04-211-3/+6
| | | | | | | Two problems: The SMTPRecipientsRefused class should not inherit SMTPResponseException, since it doesn't provide the smtp_code and smtp_error attributes. My patch for not adding an extra CRLF was apparently forgotten. The enclosed patch fixes these two problems.
* Markup nits.Fred Drake1999-04-211-3/+2
|
* Added "See also" reference to xdrlib.Fred Drake1999-04-211-10/+11
| | | | Markup nits.
* Markup nits.Fred Drake1999-04-211-8/+5
|
* Mark the references to module names use \module or \refmodule (theFred Drake1999-04-211-8/+6
| | | | closing paragraph used \code).
* Important fix mentioned by The Dragon De Monsyne: the sendmail()Guido van Rossum1999-04-211-2/+1
| | | | | method does _not_ disconnect the connection when it throws a SMTPHeloError!
* Correct spelling of length, discovered by Christian Tismer.Guido van Rossum1999-04-211-2/+2
|
* Oops; minor nit in example: none of the other interactive examplesFred Drake1999-04-211-1/+0
| | | | show the "trailing" prompt, so don't show it here!
* do_cmd_funcline(): Remove some bogus generated stuff from the outputFred Drake1999-04-211-4/+5
| | | | (some text was only intended for the index).
* Added link to xdrlib module in "See also" section.Fred Drake1999-04-211-1/+2
|
* Patch by Tim Peters to speed up colorizing of big multiline strings.Guido van Rossum1999-04-211-4/+4
|
* Patch by Christian Tismer for Win32, to use FormatMessage() instead ofGuido van Rossum1999-04-211-2/+29
| | | | strerror(). This improves the quality of the error messages.
* Fix some remaining index & consistency nits. (Many data memberFred Drake1999-04-211-8/+8
| | | | references were being omitted from the general index.)
* Added index entry for "file objects"; this is appearantly referencedFred Drake1999-04-211-4/+5
| | | | | | somewhere in the Reference Manual, and someone tried to locate it via the index. Report on the omission by Stefan Franke <sfranke@cdc-group.com>.
* improved scrollbar delay behavior -- jvrJust van Rossum1999-04-211-2/+5
|
* Added doc for the "module" attribute on the class descriptor objects;Fred Drake1999-04-201-2/+7
| | | | omission repoorted by Glyn Webster <glyn@ninz.org.nz>.
* For an event 'foo-bar', the corresponding method must be calledGuido van Rossum1999-04-201-2/+2
| | | | | foo_bar_event(). Therefore, fix the references to zoom_height() in the example.
* Restored the original IDLE color scheme.Guido van Rossum1999-04-201-61/+15
|
* Color preferences code by Loren Luke (massaged by me somewhat)Guido van Rossum1999-04-204-17/+106
|
* Patch by Mark Favas: it fixes the search engine behaviour where anGuido van Rossum1999-04-201-3/+10
| | | | | | | unsuccessful search wraps around and re-searches that part of the file between the start of the search and the end of the file - only really an issue for very large files, but... (also removes a redundant m.span() call).
* Added example use of pack_list() to help explain the pack_itemFred Drake1999-04-201-0/+9
| | | | | parameter. Lack of clarity reported by Matthew Gallagher <hew@hons.cs.usyd.edu.au>.
* Calling _cleanup() does not guarantee that all processes haveGuido van Rossum1999-04-201-1/+2
| | | | | | terminated; this makes the final assert in the self-test code fail if the parent runs faster than the children. Fix this by calling wait() on the remaining children instead.
* Updated to reflect additions.Fred Drake1999-04-193-7/+4
|
* colorsys docs from David Ascher.Fred Drake1999-04-191-0/+54
|
* bsddb docs from Skip Montanaro; added interesting links.Fred Drake1999-04-193-2/+146
|
* Utility function that yields a properly formatted time string.Guido van Rossum1999-04-191-0/+10
| | | | | (Idea by Jeff Bauer, code by Jeremy, renamed and "Date:" constant stripped from return value by GvR.)
* Relocating file to Lib/lib-tk.Fred Drake1999-04-191-343/+0
|
* Jim Fulton writes:Guido van Rossum1999-04-191-13/+41
| | | | | | | | | | | | | | I have attached a new cPickle that adds a new control attribute to unpicklers: Added new Unpickler attribute, find_global. If set to None, then global and instance pickles are disabled. Otherwise, it should be set to a callable object that takes two arguments, a module name and an object name, and returns an object. If the attribute is unset, then the default mechanism is used. This feature provides an additional mechanism for controlling which classes can be used for unpickling.
* Patch from Tim Peters to repare a the problem that tracebacks are offGuido van Rossum1999-04-191-2/+9
| | | | by a line when Python is run with -x.
* Improve text of some error messages, as suggested by Sean Reifschneider.Guido van Rossum1999-04-191-2/+3
|
* Daniel Neri: OpenBSD is just as BSD'ish as the other BSD's ;-)Guido van Rossum1999-04-191-1/+2
|
* Patch by Drew Csillag for FreeBSD's sh, which doesn't automaticallyGuido van Rossum1999-04-191-0/+8
| | | | join \-terminated lines.
* Avoid triggering Alpha OSF/1 specific code on Alpha NT or Linux.Guido van Rossum1999-04-191-1/+1
|
* A few wishes are now fulfilled.Guido van Rossum1999-04-191-4/+0
|
* Tim Peters implements some of my wishes:Guido van Rossum1999-04-191-11/+60
| | | | | | | | | | | | | | | | | | | o Makes the tab key intelligently insert spaces when appropriate (see Help list banter twixt David Ascher and me; idea stolen from every other editor on earth <wink>). o newline_and_indent_event trims trailing whitespace on the old line (pymode and Codewright). o newline_and_indent_event no longer fooled by trailing whitespace or comment after ":" (pymode, PTUI). o newline_and_indent_event now reduces the new line's indentation after return, break, continue, raise and pass stmts (pymode). The last two are easy to fool in the presence of strings & continuations, but pymode requires Emacs's high-powered C parsing functions to avoid that in finite time.
* Remove superfluous index entry for posix.popen(); no longerFred Drake1999-04-161-1/+0
| | | | appropriate since popen() is only documented in os.
* Added link to Fredrik Lundh's online Tkinter reference material.Fred Drake1999-04-161-1/+4
|
* Minor nits, include author info.Fred Drake1999-04-161-2/+2
|
* In list of sequence comparison examples, "=" should be "==". ReportedFred Drake1999-04-161-1/+1
| | | | by Mirko Liss <n89553@hrz.uni-paderborn.de>.
* 'warn()' method now takes an optional line number.Greg Ward1999-04-151-4/+6
|
* Removed dbhash from the undocumented list.Fred Drake1999-04-151-4/+1
|
* Add libdbhash.tex.Fred Drake1999-04-151-0/+1
|
* Document the dbhash module, and link to it from appropriate places.Fred Drake1999-04-154-3/+94
|
* Correct documentation for <file>.read(); Python makes a seriousFred Drake1999-04-141-6/+8
| | | | | | best-effort to return 'size' bytes. Point out that this may mean multiple fread() calls. Reported by Anders Hammarquist <iko@iko.pp.se> via the Debian crew.
* Use the standard stylesheet here as well.Fred Drake1999-04-141-0/+1
|