Removing the keyword only restriction for the places argument in unittest.TestCase.assert[Not]AlmostEqual
diff --git a/Misc/NEWS b/Misc/NEWS
index d690318..30eb825 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -143,6 +143,9 @@
 Library
 -------
 
+- The keyword only restriction for the places argument in
+  unittest.TestCase.assert[Not]AlmostEqual methods has been removed.
+
 - Issue 6706: asyncore accept() method no longer raises EWOULDBLOCK/ECONNABORTED
   on incomplete connection attempt but returns None instead.