summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAndrew M. Kuchling <amk@amk.ca>2006-09-27 16:37:30 (GMT)
committerAndrew M. Kuchling <amk@amk.ca>2006-09-27 16:37:30 (GMT)
commit43889c0b9fdea2b62a5cdc88bb6aee5474838711 (patch)
tree85b496c50f2413a596cc161d64d73c4b01ba44e6
parent11b3535280acccca9a242d3275532cda45eb5ba4 (diff)
downloadcpython-43889c0b9fdea2b62a5cdc88bb6aee5474838711.zip
cpython-43889c0b9fdea2b62a5cdc88bb6aee5474838711.tar.gz
cpython-43889c0b9fdea2b62a5cdc88bb6aee5474838711.tar.bz2
Add news item for rev. 51815
-rw-r--r--Misc/NEWS6
1 files changed, 6 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index b7c69c1..48899bc 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -105,6 +105,12 @@ Extension Modules
- iso2022_jp_3 and iso2022_jp_2004 codec can encode JIS X 0213:2
codepoints now.
+- Bug #1552726: in readline.c, avoid repeatedly polling in interactive
+ mode by only placing a timeout on the select() if an input hook has
+ been defined. This prevents an interactive Python from waking up 10
+ times per second. Patch by Richard Boulton.
+
+
Tests
-----