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 ethan.furman
Recipients Arfrever, Tyler.Crompton, ethan.furman, ncoghlan
Date 2012-06-27.21:36:32
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1340832993.17.0.414457616208.issue15209@psf.upfronthosting.co.za>
In-reply-to
Content
Okay, I see your point.  It's also not difficult to work around if you really want to toss the extra info:

        except NameError:
            try:
                fallback_module.getch()
            except Exception as exc:
                raise exc from None

A total of three more words to get the desired behavior (and small ones at that).

I'll work on a doc patch.
History
Date User Action Args
2012-06-27 21:36:33ethan.furmansetrecipients: + ethan.furman, ncoghlan, Arfrever, Tyler.Crompton
2012-06-27 21:36:33ethan.furmansetmessageid: <1340832993.17.0.414457616208.issue15209@psf.upfronthosting.co.za>
2012-06-27 21:36:32ethan.furmanlinkissue15209 messages
2012-06-27 21:36:32ethan.furmancreate