Fixed a caching bug in platform.platform() where the argument of 'terse' was
not taken into consideration when caching value.
diff --git a/Misc/NEWS b/Misc/NEWS
index 724ccab..9fc3ba7 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -283,7 +283,7 @@
   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 @@
 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).