summaryrefslogtreecommitdiffstats
path: root/Doc/lib/libcmd.tex
Commit message (Collapse)AuthorAgeFilesLines
* - document the termination condition for cmd.Cmd.cmdloop()Fred Drake2004-07-301-1/+8
| | | | - document the use of the return value for cmd.Cmd.do_*() methods
* general markup improvementsFred Drake2003-12-311-5/+6
|
* Provide version changed infoNeal Norwitz2003-02-061-0/+1
|
* Updated version of [ 558544 ] cmd.py: add instance-specific stdin/outAnthony Baxter2003-02-061-5/+11
| | | | | | | | | | This patch adds stdin, stdout as optional arguments to the cmd.Cmd constructor (defaulting to sys.stdin, sys.stdout), and changes the Cmd methods throughout to use self.stdout.write() and self.stdin.foo for output and input. This allows much greater flexibility for using cmd - for instance, hooking it into a telnet server. Patch for library module and for documentation.
* Elaborate the descriptions for onecmd(), precmd(), and postcmd() so they areFred Drake2001-12-271-9/+20
| | | | useful.
* Make some adjustments to the markup, and fix up some style-guide issues.Fred Drake2001-07-291-17/+17
|
* Patch #416224: add readline completion to cmd.Cmd.Martin v. Löwis2001-07-281-1/+23
|
* Follow the recommended practices for keystroke representation; thisFred Drake2001-07-121-4/+4
| | | | improves internal consistency in the documentation.
* Correct erroneous description of precmd.Eric S. Raymond2001-06-231-2/+6
|
* Document use_rawinput. (Although now that I think more about it, aGuido van Rossum2001-03-241-1/+6
| | | | | better solution would have been to factor out the raw_input() call and make it into an overridable method. Oh well, maybe later...)
* Fixed lots of small nits caught by Ka-Ping Yee <ping@lfw.org>.Fred Drake2000-10-101-4/+3
|
* Resynchronize the TeX docs with (a) the module docstring, and (b) my recentEric S. Raymond2000-07-121-2/+2
| | | | fix to the code to make it behave like the module docstring.
* New section header style.Fred Drake1998-08-101-4/+5
| | | | Fix up a few synopses.
* Adjusted to use the new module synopsis support macros.Fred Drake1998-07-231-2/+5
|
* Normalize the markup.Fred Drake1998-07-021-38/+42
|
* Contributions by Eric Raymond: documentation for modulesGuido van Rossum1998-06-281-0/+134
cmd, multifile and smtplib.