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 gvanrossum
Recipients JosephArmbruster, gvanrossum
Date 2007-12-20.18:23:48
SpamBayes Score 0.0543774
Marked as misclassified No
Message-id <[email protected]>
In-reply-to <[email protected]>
Content
> >>> import sys
> >>> x = input()
> Hi:
> >>> repr(x)
> "'Hi:'"
> >>> x = sys.stdin.readline()
> Hi:
> >>> repr(x)
> "'Hi:\\n'"

Hm, that works as expected (except I meant "Hi:" to be the prompt, but
that's okay :-). Why doesn't it inside license()? Can you put a "print
repr(key)" in the site.py code right after the input() call?
History
Date User Action Args
2007-12-20 18:23:48gvanrossumsetspambayes_score: 0.0543774 -> 0.0543774
recipients: + gvanrossum, JosephArmbruster
2007-12-20 18:23:48gvanrossumlinkissue1667 messages
2007-12-20 18:23:48gvanrossumcreate