This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author boompig
Recipients Catherine.Devlin, boompig, ngie, rhettinger
Date 2018-01-11.01:59:25
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1515635967.73.0.467229070634.issue13214@psf.upfronthosting.co.za>
In-reply-to
Content
If you write a handler for EOF like so:

from cmd import Cmd

class FooShell(Cmd):
	def do_EOF(self, args):
		# exit on EOF
		raise SystemExit()

shell = FooShell()
shell.cmdloop()

Then when running the shell, you can see "EOF" as an undocumented command in the help screen. You can see this when typing "?".

$ python fooshell.py
(Cmd) ?

Documented commands (type help <topic>):
========================================
help

Undocumented commands:
======================
EOF

I believe the correct behaviour should be (1) don't show it in the undocumented commands, since it's not really a command; and (2) maybe create a built-in command for this, since the literal string "EOF" is also caught by this handler.
History
Date User Action Args
2018-01-11 01:59:27boompigsetrecipients: + boompig, rhettinger, ngie, Catherine.Devlin
2018-01-11 01:59:27boompigsetmessageid: <1515635967.73.0.467229070634.issue13214@psf.upfronthosting.co.za>
2018-01-11 01:59:27boompiglinkissue13214 messages
2018-01-11 01:59:26boompigcreate