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 Drekin, benjamin.peterson, brett.cannon, eric.araujo, georg.brandl, gvanrossum, ncoghlan, pitrou, steve.dower, tshepang, vstinner
Date 2014-07-30.18:31:53
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1406745113.63.0.904086028995.issue17620@psf.upfronthosting.co.za>
In-reply-to
Content
sys.stdin.readline() never delegates to GNU readline.  The REPL calls GNU readline directly.  There's clearly some condition that determines whether to call GNU readline or sys.stdin.readline, but it may not correspond to what you want (e.g. it may just test whether FD 0 is a tty).  Can you find in the CPython source code where this determination is made?
History
Date User Action Args
2014-07-30 18:31:53gvanrossumsetrecipients: + gvanrossum, brett.cannon, georg.brandl, ncoghlan, pitrou, vstinner, benjamin.peterson, eric.araujo, tshepang, Drekin, steve.dower
2014-07-30 18:31:53gvanrossumsetmessageid: <1406745113.63.0.904086028995.issue17620@psf.upfronthosting.co.za>
2014-07-30 18:31:53gvanrossumlinkissue17620 messages
2014-07-30 18:31:53gvanrossumcreate