[Python-checkins] cpython: What's new in Python 3.3: document new functions of the os module

victor.stinner python-checkins at python.org
Fri Oct 14 00:09:30 CEST 2011


http://hg.python.org/cpython/rev/cdf612215084
changeset:   72917:cdf612215084
user:        Victor Stinner <victor.stinner at haypocalc.com>
date:        Fri Oct 14 00:08:29 2011 +0200
summary:
  What's new in Python 3.3: document new functions of the os module

files:
  Doc/whatsnew/3.3.rst |  73 ++++++++++++++++++++++++++++++++
  1 files changed, 73 insertions(+), 0 deletions(-)


diff --git a/Doc/whatsnew/3.3.rst b/Doc/whatsnew/3.3.rst
--- a/Doc/whatsnew/3.3.rst
+++ b/Doc/whatsnew/3.3.rst
@@ -307,6 +307,79 @@
 
   (Patch submitted by Giampaolo Rodolà in :issue:`10784`.)
 
+* "at" functions (:issue:`4761`):
+
+  * :func:`~os.faccessat`
+  * :func:`~os.fchmodat`
+  * :func:`~os.fchownat`
+  * :func:`~os.fstatat`
+  * :func:`~os.futimesat`
+  * :func:`~os.futimesat`
+  * :func:`~os.linkat`
+  * :func:`~os.mkdirat`
+  * :func:`~os.mkfifoat`
+  * :func:`~os.mknodat`
+  * :func:`~os.openat`
+  * :func:`~os.readlinkat`
+  * :func:`~os.renameat`
+  * :func:`~os.symlinkat`
+  * :func:`~os.unlinkat`
+  * :func:`~os.utimensat`
+  * :func:`~os.utimensat`
+
+* extended attributes (:issue:`12720`):
+
+  * :func:`~os.fgetxattr`
+  * :func:`~os.flistxattr`
+  * :func:`~os.fremovexattr`
+  * :func:`~os.fsetxattr`
+  * :func:`~os.getxattr`
+  * :func:`~os.lgetxattr`
+  * :func:`~os.listxattr`
+  * :func:`~os.llistxattr`
+  * :func:`~os.lremovexattr`
+  * :func:`~os.lsetxattr`
+  * :func:`~os.removexattr`
+  * :func:`~os.setxattr`
+
+* Scheduler functions (:issue:`12655`):
+
+  * :func:`~os.sched_get_priority_max`
+  * :func:`~os.sched_get_priority_min`
+  * :func:`~os.sched_getaffinity`
+  * :func:`~os.sched_getparam`
+  * :func:`~os.sched_getscheduler`
+  * :func:`~os.sched_rr_get_interval`
+  * :func:`~os.sched_setaffinity`
+  * :func:`~os.sched_setparam`
+  * :func:`~os.sched_setscheduler`
+  * :func:`~os.sched_yield`
+
+* Add some extra posix functions to the os module (:issue:`10812`):
+
+  * :func:`~os.fexecve`
+  * :func:`~os.futimens`
+  * :func:`~os.futimens`
+  * :func:`~os.futimes`
+  * :func:`~os.futimes`
+  * :func:`~os.lockf`
+  * :func:`~os.lutimes`
+  * :func:`~os.lutimes`
+  * :func:`~os.posix_fadvise`
+  * :func:`~os.posix_fallocate`
+  * :func:`~os.pread`
+  * :func:`~os.pwrite`
+  * :func:`~os.readv`
+  * :func:`~os.sync`
+  * :func:`~os.truncate`
+  * :func:`~os.waitid`
+  * :func:`~os.writev`
+
+* Other new functions:
+
+  * :func:`~os.fdlistdir` (:issue:`10755`)
+  * :func:`~os.getgrouplist` (:issue:`9344`)
+
 
 packaging
 ---------

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


More information about the Python-checkins mailing list