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 terry.reedy
Recipients taleinat, terry.reedy
Date 2014-06-14.23:12:54
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1402787574.99.0.986548729035.issue21765@psf.upfronthosting.co.za>
In-reply-to
Content
idlelib.HyperParser.Hyperparser has these lines
    _whitespace_chars = " \t\n\\"
    _id_chars = string.ascii_letters + string.digits + "_"
    _id_first_chars = string.ascii_letters + "_"
used in _eat_identifier() and get_expression. At least the latter two should be turned into functions that access the unicode datebase. (Such functions, if not already present in the stdlib, should be. But adding something elsewhere would be another issue.)
History
Date User Action Args
2014-06-14 23:12:55terry.reedysetrecipients: + terry.reedy, taleinat
2014-06-14 23:12:54terry.reedysetmessageid: <1402787574.99.0.986548729035.issue21765@psf.upfronthosting.co.za>
2014-06-14 23:12:54terry.reedylinkissue21765 messages
2014-06-14 23:12:54terry.reedycreate