summaryrefslogtreecommitdiffstats
path: root/Misc/NEWS.d/next/Core and Builtins
diff options
context:
space:
mode:
authorŁukasz Langa <lukasz@langa.pl>2021-02-16 18:12:03 (GMT)
committerŁukasz Langa <lukasz@langa.pl>2021-02-16 18:12:03 (GMT)
commitdfd7d6893b57d79b7bfd819d28380a0429b5615f (patch)
treef64768b2d80010514646158daa728026f2b1e874 /Misc/NEWS.d/next/Core and Builtins
parentf9d7c12b6c7ab978cb6c61a666bc06dd3fec9b3e (diff)
downloadcpython-dfd7d6893b57d79b7bfd819d28380a0429b5615f.zip
cpython-dfd7d6893b57d79b7bfd819d28380a0429b5615f.tar.gz
cpython-dfd7d6893b57d79b7bfd819d28380a0429b5615f.tar.bz2
Python 3.8.8rc1v3.8.8rc1
Diffstat (limited to 'Misc/NEWS.d/next/Core and Builtins')
-rw-r--r--Misc/NEWS.d/next/Core and Builtins/2021-01-04-23-54-34.bpo-42819.4KO6wU.rst8
1 files changed, 0 insertions, 8 deletions
diff --git a/Misc/NEWS.d/next/Core and Builtins/2021-01-04-23-54-34.bpo-42819.4KO6wU.rst b/Misc/NEWS.d/next/Core and Builtins/2021-01-04-23-54-34.bpo-42819.4KO6wU.rst
deleted file mode 100644
index d067f0b..0000000
--- a/Misc/NEWS.d/next/Core and Builtins/2021-01-04-23-54-34.bpo-42819.4KO6wU.rst
+++ /dev/null
@@ -1,8 +0,0 @@
-:mod:`readline`: Explicitly disable bracketed paste in the interactive
-interpreter, even if it's set in the inputrc, is enabled by default (eg GNU
-Readline 8.1), or a user calls ``readline.read_init_file()``. The Python REPL
-has not implemented bracketed paste support. Also, bracketed mode writes the
-``"\x1b[?2004h"`` escape sequence into stdout which causes test failures in
-applications that don't support it. It can still be explicitly enabled by
-calling ``readline.parse_and_bind("set enable-bracketed-paste on")``. Patch by
-Dustin Rodrigues.