summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorBrett Cannon <bcannon@gmail.com>2004-03-25 16:55:12 (GMT)
committerBrett Cannon <bcannon@gmail.com>2004-03-25 16:55:12 (GMT)
commit21beb4c2ceb5238a6a3ab83156db55f678ed01ec (patch)
tree018389e4b2746dc30feb70291606d3a805e09330 /Misc
parent504ca68e20e01a42d89431a4562b3a72c9d62961 (diff)
downloadcpython-21beb4c2ceb5238a6a3ab83156db55f678ed01ec.zip
cpython-21beb4c2ceb5238a6a3ab83156db55f678ed01ec.tar.gz
cpython-21beb4c2ceb5238a6a3ab83156db55f678ed01ec.tar.bz2
Fixed a caching bug in platform.platform() where the argument of 'terse' was
not taken into consideration when caching value.
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS5
1 files changed, 4 insertions, 1 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 724ccab..9fc3ba7 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -283,7 +283,7 @@ Extension modules
into groups sharing the same key (as determined by a key function).
It offers some of functionality of SQL's groupby keyword and of
the Unix uniq filter.
-
+
- itertools now has a new function, tee() which produces two independent
iterators from a single iterable.
@@ -296,6 +296,9 @@ Extension modules
Library
-------
+- Fixed a caching bug in platform.platform() where the argument of 'terse' was
+ not taken into consideration when caching value.
+
- Added two new command-line arguments for profile (output file and
default sort).