[Python-checkins] cpython: Update Misc/NEWS for issues #14127 and #14705. (And, technically, #10148.)

larry.hastings python-checkins at python.org
Sun May 6 06:58:38 CEST 2012


http://hg.python.org/cpython/rev/05274ab06182
changeset:   76779:05274ab06182
user:        Larry Hastings <larry at hastings.org>
date:        Sat May 05 21:57:17 2012 -0700
summary:
  Update Misc/NEWS for issues #14127 and #14705.  (And, technically, #10148.)

files:
  Misc/NEWS |  24 ++++++++++++++++++++++++
  1 files changed, 24 insertions(+), 0 deletions(-)


diff --git a/Misc/NEWS b/Misc/NEWS
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -2,6 +2,30 @@
 Python News
 +++++++++++
 
+What's New in Python 3.3.0 Alpha 4?
+===================================
+
+*Release date: 26-May-2012*
+
+Core and Builtins
+-----------------
+
+- Issue #14705: The PyArg_Parse() family of functions now support the 'p'
+  format unit, which accepts a "boolean predicate" argument.  It converts
+  any Python value into an integer--0 if it is "false", and 1 otherwise.
+
+Library
+-------
+
+- Issue #14127: The os.stat() result object now provides three additional
+  fields: st_ctime_ns, st_mtime_ns, and st_atime_ns, providing those times
+  as an integer with nanosecond resolution.  The functions os.utime(),
+  os.lutimes(), and os.futimes() now accept a new parameter, ns, which
+  accepts mtime and atime as integers with nanosecond resolution.
+
+- Issue #14127 and #10148: shutil.copystat now preserves exact mtime
+  and atime on filesystems providing nanosecond resolution.
+
 What's New in Python 3.3.0 Alpha 3?
 ===================================
 

-- 
Repository URL: http://hg.python.org/cpython


More information about the Python-checkins mailing list