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 skip.montanaro
Recipients skip.montanaro, starz
Date 2009-08-15.02:52:24
SpamBayes Score 0.001133081
Marked as misclassified No
Message-id <1250304746.54.0.0920712845653.issue6708@psf.upfronthosting.co.za>
In-reply-to
Content
Try it at the help> prompt without the parens (you're not calling
it here, just asking for the documentation on the name "raw_input".

help> raw_input

Help on built-in function raw_input in module __builtin__:

raw_input(...)
    raw_input([prompt]) -> string
    
    Read a string from standard input.  The trailing newline is stripped.
    If the user hits EOF (Unix: Ctl-D, Windows: Ctl-Z+Return), raise
EOFError.
    On Unix, GNU readline is used if enabled.  The prompt string, if given,
    is printed without a trailing newline before reading.
History
Date User Action Args
2009-08-15 02:52:26skip.montanarosetrecipients: + skip.montanaro, starz
2009-08-15 02:52:26skip.montanarosetmessageid: <1250304746.54.0.0920712845653.issue6708@psf.upfronthosting.co.za>
2009-08-15 02:52:25skip.montanarolinkissue6708 messages
2009-08-15 02:52:24skip.montanarocreate