COMMITS
/ Lib/cmd.py May 4, 2025
M
gh-133363: Fix Cmd completion for lines beginning with `! ` (#133364)
Matt Wozniski committed
February 17, 2025
D
gh-118761: Improve import time of `cmd` module (#130056)
donBarbos committed
May 22, 2024
G
Remove almost all unpaired backticks in docstrings (#119231)
Geoffrey Thomas committed
January 3, 2024
F
gh-52161: Enhance Cmd support for docstrings (#110987)
Filip Łapkiewicz committed
December 5, 2023
C
gh-102130: Support tab completion in cmd for Libedit. (GH-107748)
Constantin Hong committed
November 10, 2023
T
gh-80731: Avoid executing code in except block in cmd (GH-111740)
Tian Gao committed
May 4, 2022
S
gh-67248: cmd: Sort miscellaneous help topics (#92254)
Sam Denton committed
July 4, 2013
B
Issue #18200: Back out usage of ModuleNotFoundError (8d28d44f3a9a)
Brett Cannon committed
June 14, 2013
B
Issue #18200: Update the stdlib (except tests) to use
Brett Cannon committed
December 6, 2011
J
Close #13500: Hitting EOF gets cmd.py into a infinite EOF on return loop
Jesus Cea committed
September 9, 2010
R
Add docstring to cmd.Cmd.do_help()
Raymond Hettinger committed
August 1, 2010
R
#8620: Cmd no longer truncates last character if stdin ends without newline
R. David Murray committed
July 30, 2010
G
Remove redundant import.
Georg Brandl committed
January 9, 2010
B
Merged revisions 77185-77188,77262,77313,77317,77331-77333,77337-77338 via svnmerge from
Benjamin Peterson committed
October 16, 2007
G
Patch# 1258 by Christian Heimes: kill basestring.
Guido van Rossum committed
August 30, 2007
C
Raise statement normalization in Lib/.
Collin Winter committed
June 7, 2007
A
Fix pdb help command.
Alexandre Vassalotti committed
April 27, 2007
G
Merged revisions 53952-54987 via svnmerge from
Guido van Rossum committed
March 17, 2006
N
Get rid of a bunch more raw_input references
Neal Norwitz committed
July 7, 2004
T
Whitespace normalization.
Tim Peters committed
October 22, 2003
A
Add docstring
Andrew M. Kuchling committed
February 19, 2003
T
Whitespace normalization.
Tim Peters committed
February 6, 2003
A
Updated version of [ 558544 ] cmd.py: add instance-specific stdin/out
Anthony Baxter committed
January 13, 2003
G
Duh. cmdqueue should be an instance variable, not a class variable.
Guido van Rossum committed
December 2, 2002
G
Add a better columnizer to print_topics().
Guido van Rossum committed
June 30, 2002
R
Code modernization. Replace v=s[i]; del s[i] with single lookup v=s.pop(i)
Raymond Hettinger committed
June 1, 2002
R
SF 563203. Replaced 'has_key()' with 'in'.
Raymond Hettinger committed
May 29, 2002
R
Patch 560023 adding docstrings. 2.2 Candidate (after verifying modules were not updated after 2.2).
Raymond Hettinger committed
March 24, 2002
S
tighten up except - in this context, AttributeError is the only exception
Skip Montanaro committed
March 23, 2002
N
Flush stdout before reading next command. Closes SF bug 526357.
Neil Schemenauer committed
August 9, 2001
T
Whitespace normalization.
Tim Peters committed
July 28, 2001
M
Patch #416224: add readline completion to cmd.Cmd.
Martin v. Löwis committed
July 20, 2001
F
Use string.ascii_letters instead of string.letters (SF bug #226706).
Fred Drake committed
March 22, 2001
G
This is SF patch #405952, by Anthony Baxter:
Guido van Rossum committed
February 9, 2001
E
String method conversion.
Eric S. Raymond committed
January 26, 2001
J
unnecessary semicolon
Jeremy Hylton committed
January 20, 2001
S
added __all__ lists to a number of Python modules
Skip Montanaro committed
December 12, 2000
F
Update the code to better reflect recommended style:
Fred Drake committed
July 11, 2000
E
Bug fix: ? and ! were not full aliases for `help' and `shell' as implied in
Eric S. Raymond committed
February 2, 2000
G
Mass patch by Ka-Ping Yee:
Guido van Rossum committed
May 3, 1999
G
No need to import sys or linecache. (Andrew Dalke & kjpylint)
Guido van Rossum committed
March 12, 1999
G
Patch by Michael Scharf. He writes:
Guido van Rossum committed
September 11, 1998
G
Richard Wolff's changes:
Guido van Rossum committed
August 27, 1998
G
Changes by Richard Wolff:
Guido van Rossum committed
July 20, 1998
G
Fix another bug in ESR's changes. In order to work properly,
Guido van Rossum committed
July 1, 1998
G
Gotta have an __init__() method -- pdb.py calls it!
Guido van Rossum committed
June 29, 1998
G
Improved by Eric Raymond.
Guido van Rossum committed
May 22, 1998
G
Shouldn't use newdir.dir(), which no longer exists!
Guido van Rossum committed