When quoting=QUOTE_NONNUMERIC, the reader now casts unquoted fields
to floats.
diff --git a/Misc/NEWS b/Misc/NEWS
index 02f54bd..828063a 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -45,8 +45,11 @@
   + quotechar=None and quoting=QUOTE_NONE now work the way PEP 305
     dictates.
   + the parser now removes the escapechar prefix from escaped characters.
-  + QUOTE_NONNUMERIC now tests for numeric objects, rather than attempting
-    to cast to float.
+  + when quoting=QUOTE_NONNUMERIC, the writer now tests for numeric
+    objects, rather than attempting to cast to float, and using the
+    success of that as the determinator.
+  + when quoting=QUOTE_NONNUMERIC, the reader now casts unquoted fields
+    to floats.
   + writer doublequote handling improved.
   + Dialect classes passed to the module are no longer instantiated by
     the module before being parsed (the former validation scheme required