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 Eduardo.Seabra, aeros, cdspace, louielu, martin.panter, rhettinger, taleinat, terry.reedy
Date 2020-09-20.09:19:26
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1600593567.04.0.379010952498.issue21261@roundup.psfhosted.org>
In-reply-to
Content
> the PR allows using either type of quote when typing completions.

Only if one types a quote before the box pops up.  In this case, there is no auto popup and one must request completions.  The box then uses the quote typed.  Thereafter, there is no choice. Backspacing to delete the quote and typing the another one disables matching.

If one type >>> d[ and pauses long enough for the auto-popup, (I have 'wait' set to 200 milleseconds), one must similarly match the existing quote, because jumping ahead requires a string match.  Because of the bytes inclusion, the match much include the opening quote, because otherwise an initial 'b' would be ambiguous.  Without bytes, we could either removed the quotes from the box or automatically add an open quote.
History
Date User Action Args
2020-09-20 09:19:27terry.reedysetrecipients: + terry.reedy, rhettinger, taleinat, martin.panter, Eduardo.Seabra, cdspace, louielu, aeros
2020-09-20 09:19:27terry.reedysetmessageid: <1600593567.04.0.379010952498.issue21261@roundup.psfhosted.org>
2020-09-20 09:19:27terry.reedylinkissue21261 messages
2020-09-20 09:19:26terry.reedycreate