diff options
Diffstat (limited to 'Doc/library/cmd.rst')
-rw-r--r-- | Doc/library/cmd.rst | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/Doc/library/cmd.rst b/Doc/library/cmd.rst index 716db67..c31c9a2 100644 --- a/Doc/library/cmd.rst +++ b/Doc/library/cmd.rst @@ -26,7 +26,12 @@ interface. The optional arguments *stdin* and *stdout* specify the input and output file objects that the Cmd instance or subclass instance will use for input and - output. If not specified, they will default to *sys.stdin* and *sys.stdout*. + output. If not specified, they will default to :data:`sys.stdin` and + :data:`sys.stdout`. + + If you want a given *stdin* to be used, make sure to set the instance's + :attr:`use_rawinput` attribute to ``False``, otherwise *stdin* will be + ignored. .. _cmd-objects: |