Commit aecef0d2 authored by Yury Selivanov's avatar Yury Selivanov

Merge 3.5 (issue #25660)

parents e9222896 a7eae401
...@@ -75,7 +75,9 @@ class Completer: ...@@ -75,7 +75,9 @@ class Completer:
if not text.strip(): if not text.strip():
if state == 0: if state == 0:
return '\t' readline.insert_text('\t')
readline.redisplay()
return ''
else: else:
return None return None
......
...@@ -163,6 +163,9 @@ Core and Builtins ...@@ -163,6 +163,9 @@ Core and Builtins
- Issue #26171: Fix possible integer overflow and heap corruption in - Issue #26171: Fix possible integer overflow and heap corruption in
zipimporter.get_data(). zipimporter.get_data().
- Issue #25660: Fix TAB key behaviour in REPL with readline.
Library Library
------- -------
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment