class ManholeLoopbackMixin:
Known subclasses: twisted.conch.test.test_manhole.ManholeLoopbackSSHTests
, twisted.conch.test.test_manhole.ManholeLoopbackStdioTests
, twisted.conch.test.test_manhole.ManholeLoopbackTelnetTests
Undocumented
Method | test_ |
Evaluate class definition. |
Method | test_control |
CTRL-A can be used as HOME - returning cursor to beginning of current line buffer. |
Method | test_ |
Evaluate cancelling with CTRL-\. |
Method | test_ |
Evaluate interrupting with CTRL-C. |
Method | test_control |
A CTRL+D in the middle of a line doesn't close a connection, but at the beginning of a line it does. |
Method | test_control |
CTRL-E can be used as END - setting cursor to end of current line buffer. |
Method | test_ |
CTRL+L is generally used as a redraw-screen command in terminal applications. Manhole doesn't currently respect this usage of it, but it should at least do something reasonable in response to this event (rather than, say, eating your face). |
Method | test |
When a deferred is returned to the manhole REPL, it is displayed with a sequence number, and when the deferred fires, the result is printed. |
Method | test_ |
Evaluate raising an exception. |
Method | test_ |
Raised exceptions are handled the same way even if sys.excepthook has been modified from its original value. |
Method | test_ |
Evaluate function definition. |
Method | test_interrupt |
Sending ^C to Manhole while in a state where more input is required to complete a statement should discard the entire ongoing statement and reset the input prompt to the non-continuation prompt. |
Method | test_ |
Evaluate simple expression. |
Method | test_ |
Evaluate line continuation in triple quotes. |
A CTRL+D in the middle of a line doesn't close a connection, but at the beginning of a line it does.
CTRL+L is generally used as a redraw-screen command in terminal applications. Manhole doesn't currently respect this usage of it, but it should at least do something reasonable in response to this event (rather than, say, eating your face).
When a deferred is returned to the manhole REPL, it is displayed with a sequence number, and when the deferred fires, the result is printed.
Raised exceptions are handled the same way even if sys.excepthook
has been modified from its original value.