Windows XP、SP3でMINGW / BASHを使用しています。
(これを.pythonstartupに貼り付けます)
#私のctrl-lはすでに機能していますが、これは他の人を助けるかもしれません
#ウィンドウの下部にプロンプトを残します...
インポートreadline
readline.parse_and_bind( '\ Cl:clear-screen')
#これは.inputrcにもあるのでBASHで機能しますが、いくつかの
理由で#Python に入るとドロップされます
readline.parse_and_bind( '\ Cy:kill-whole-line')
私はもう 'exit()'と入力するのを我慢できず、マルティノー/トリプティクのトリックに大喜びしました:
私は少しそれを修正しました(.pythonstartupでスタック)
class exxxit():
"""Shortcut for exit() function, use 'x' now"""
quit_now = exit # original object
def __repr__(self):
self.quit_now() # call original
x = exxxit()
Py2.7.1>help(x)
Help on instance of exxxit in module __main__:
class exxxit
| Shortcut for exit() function, use 'x' now
|
| Methods defined here:
|
| __repr__(self)
|
| ----------------------------------------------------------------------
| Data and other attributes defined here:
|
| quit_now = Use exit() or Ctrl-Z plus Return to exit