[issue42819] readline 8.1 enables the bracketed paste mode by default

2021-02-15 Thread STINNER Victor
STINNER Victor added the comment: Thanks Dustin for the bug report *and* the fix! I close the issue. For people who want to support bracketed paste mode in Python, please disuss it in bpo-39820. -- resolution: -> fixed stage: patch review -> resolved status: open -> closed versions:

[issue42819] readline 8.1 enables the bracketed paste mode by default

2021-02-15 Thread STINNER Victor
STINNER Victor added the comment: New changeset 85fd9f4e45ee95e2608dbc8cc6d4fe28e4d2abc4 by Miss Islington (bot) in branch '3.9': bpo-42819, readline: Disable bracketed paste (GH-24108) (GH-24545) https://github.com/python/cpython/commit/85fd9f4e45ee95e2608dbc8cc6d4fe28e4d2abc4 --

[issue42819] readline 8.1 enables the bracketed paste mode by default

2021-02-15 Thread miss-islington
miss-islington added the comment: New changeset f9d7c12b6c7ab978cb6c61a666bc06dd3fec9b3e by Miss Islington (bot) in branch '3.8': bpo-42819, readline: Disable bracketed paste (GH-24108) https://github.com/python/cpython/commit/f9d7c12b6c7ab978cb6c61a666bc06dd3fec9b3e -- ___

[issue42819] readline 8.1 enables the bracketed paste mode by default

2021-02-15 Thread miss-islington
Change by miss-islington : -- pull_requests: +23329 pull_request: https://github.com/python/cpython/pull/24546 ___ Python tracker ___ __

[issue42819] readline 8.1 enables the bracketed paste mode by default

2021-02-15 Thread miss-islington
Change by miss-islington : -- nosy: +miss-islington nosy_count: 8.0 -> 9.0 pull_requests: +23328 pull_request: https://github.com/python/cpython/pull/24545 ___ Python tracker _

[issue42819] readline 8.1 enables the bracketed paste mode by default

2021-02-15 Thread STINNER Victor
STINNER Victor added the comment: New changeset 755f3c1521b422bc2177013d289f5439975fdc4f by Dustin Rodrigues in branch 'master': bpo-42819, readline: Disable bracketed paste (GH-24108) https://github.com/python/cpython/commit/755f3c1521b422bc2177013d289f5439975fdc4f --

[issue42819] readline 8.1 enables the bracketed paste mode by default

2021-02-15 Thread STINNER Victor
STINNER Victor added the comment: > Instead of enabling it by default, why not just keep it but emulate the old > behavior by splitting and buffering the input lines? PR 24108 change can and should be backported to 3.8 and 3.9 branches. REPL enhancements can only land in the master branch an

[issue42819] readline 8.1 enables the bracketed paste mode by default

2021-02-15 Thread Aaron Meurer
Aaron Meurer added the comment: Instead of enabling it by default, why not just keep it but emulate the old behavior by splitting and buffering the input lines? That way you still get some of the benefits of bracketed paste, i.e., faster pasting, but without the hard work of fixing the REPL

[issue42819] readline 8.1 enables the bracketed paste mode by default

2021-02-15 Thread STINNER Victor
STINNER Victor added the comment: There are different things: * Bracketed paste mode prevents to execute malicious command copied from evil internet web pages * Python REPL is not really convenient in the bracked paste mode: bpo-39820 * Users are not used to the bracketed mode which gives a s

[issue42819] readline 8.1 enables the bracketed paste mode by default

2021-02-15 Thread STINNER Victor
Change by STINNER Victor : -- title: readline 8.1 bracketed paste -> readline 8.1 enables the bracketed paste mode by default ___ Python tracker ___ __