summaryrefslogtreecommitdiffstats
path: root/Misc/NEWS
diff options
context:
space:
mode:
authorAntoine Pitrou <solipsis@pitrou.net>2012-02-08 22:28:36 (GMT)
committerAntoine Pitrou <solipsis@pitrou.net>2012-02-08 22:28:36 (GMT)
commitbcf2b59fb5f18c09a26da3e9b60a37367f2a28ba (patch)
tree47232d9eb97758190b44700163d2706665224d7c /Misc/NEWS
parent4195b5caea0fe1446160e78d69420732ead7e78b (diff)
downloadcpython-bcf2b59fb5f18c09a26da3e9b60a37367f2a28ba.zip
cpython-bcf2b59fb5f18c09a26da3e9b60a37367f2a28ba.tar.gz
cpython-bcf2b59fb5f18c09a26da3e9b60a37367f2a28ba.tar.bz2
Issue #13609: Add two functions to query the terminal size:
os.get_terminal_size (low level) and shutil.get_terminal_size (high level). Patch by Zbigniew Jędrzejewski-Szmek.
Diffstat (limited to 'Misc/NEWS')
-rw-r--r--Misc/NEWS4
1 files changed, 4 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 462287d..55940e5 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -466,6 +466,10 @@ Core and Builtins
Library
-------
+- Issue #13609: Add two functions to query the terminal size:
+ os.get_terminal_size (low level) and shutil.get_terminal_size (high level).
+ Patch by Zbigniew Jędrzejewski-Szmek.
+
- Issue #13845: On Windows, time.time() now uses GetSystemTimeAsFileTime()
instead of ftime() to have a resolution of 100 ns instead of 1 ms (the clock
accuracy is between 0.5 ms and 15 ms).