aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/Lib/cmd.py
Commit message (Expand)AuthorAge
* Merged revisions 83380 via svnmerge fromR. David Murray2010-08-01
* Patch# 1258 by Christian Heimes: kill basestring.Guido van Rossum2007-10-16
* Raise statement normalization in Lib/.Collin Winter2007-08-30
* Fix pdb help command.Alexandre Vassalotti2007-06-07
* Merged revisions 53952-54987 via svnmerge fromGuido van Rossum2007-04-27
* Get rid of a bunch more raw_input referencesNeal Norwitz2006-03-17
* Whitespace normalization.Tim Peters2004-07-07
* FixMichael W. Hudson2004-07-01
* Add docstringAndrew M. Kuchling2003-10-22
* Whitespace normalization.Tim Peters2003-02-19
* Updated version of [ 558544 ] cmd.py: add instance-specific stdin/outAnthony Baxter2003-02-06
* Fix bugMichael W. Hudson2003-02-03
* Duh. cmdqueue should be an instance variable, not a class variable.Guido van Rossum2003-01-13
* Add a better columnizer to print_topics().Guido van Rossum2002-12-02
* Code modernization. Replace v=s[i]; del s[i] with single lookup v=s.pop(i)Raymond Hettinger2002-06-30
* SF 563203. Replaced 'has_key()' with 'in'.Raymond Hettinger2002-06-01
* Patch 560023 adding docstrings. 2.2 Candidate (after verifying modules were ...Raymond Hettinger2002-05-29
* tighten up except - in this context, AttributeError is the only exceptionSkip Montanaro2002-03-24
* Flush stdout before reading next command. Closes SF bug 526357.Neil Schemenauer2002-03-23
* Whitespace normalization.Tim Peters2001-08-09
* Patch #416224: add readline completion to cmd.Cmd.Martin v. Löwis2001-07-28
* Use string.ascii_letters instead of string.letters (SF bug #226706).Fred Drake2001-07-20
* This is SF patch #405952, by Anthony Baxter:Guido van Rossum2001-03-22
* String method conversion.Eric S. Raymond2001-02-09
* unnecessary semicolonJeremy Hylton2001-01-26
* added __all__ lists to a number of Python modulesSkip Montanaro2001-01-20
* Update the code to better reflect recommended style:Fred Drake2000-12-12
* Bug fix: ? and ! were not full aliases for `help' and `shell' as implied inEric S. Raymond2000-07-11
* Mass patch by Ka-Ping Yee:Guido van Rossum2000-02-02
* No need to import sys or linecache. (Andrew Dalke & kjpylint)Guido van Rossum1999-05-03
* Patch by Michael Scharf. He writes:Guido van Rossum1999-03-12
* Richard Wolff's changes:Guido van Rossum1998-09-11
* Changes by Richard Wolff:Guido van Rossum1998-08-27
* Fix another bug in ESR's changes. In order to work properly,Guido van Rossum1998-07-20
* Gotta have an __init__() method -- pdb.py calls it!Guido van Rossum1998-07-01
* Improved by Eric Raymond.Guido van Rossum1998-06-29
* Shouldn't use newdir.dir(), which no longer exists!Guido van Rossum1998-05-22
* Merge alpha100 branch back to main trunkGuido van Rossum1994-08-01
* * Mass change: get rid of all init() methods, in favor of __init__()Guido van Rossum1993-12-17
* pdb.py, bdb.py, cmd.py: use __init__() instead of init()Guido van Rossum1993-06-23
* * aifc.py: don't die on invalid MARK chunkGuido van Rossum1993-06-20
* * change default line numbers for 'list' in pdb.pyGuido van Rossum1992-11-05
* Module getattr doesn't exist any more, it's now called newdir.Guido van Rossum1992-08-19
* Don't print repeated commands.Guido van Rossum1992-01-27
* Initial revisionGuido van Rossum1992-01-24