Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit e506437

Browse files
author
Victor Stinner
committed
What's new in Python 3.3: document new functions of the os module
1 parent 69db2db commit e506437

1 file changed

Lines changed: 73 additions & 0 deletions

File tree

Doc/whatsnew/3.3.rst

Lines changed: 73 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -307,6 +307,79 @@ os
307307

308308
(Patch submitted by Giampaolo Rodolà in :issue:`10784`.)
309309

310+
* "at" functions (:issue:`4761`):
311+
312+
* :func:`~os.faccessat`
313+
* :func:`~os.fchmodat`
314+
* :func:`~os.fchownat`
315+
* :func:`~os.fstatat`
316+
* :func:`~os.futimesat`
317+
* :func:`~os.futimesat`
318+
* :func:`~os.linkat`
319+
* :func:`~os.mkdirat`
320+
* :func:`~os.mkfifoat`
321+
* :func:`~os.mknodat`
322+
* :func:`~os.openat`
323+
* :func:`~os.readlinkat`
324+
* :func:`~os.renameat`
325+
* :func:`~os.symlinkat`
326+
* :func:`~os.unlinkat`
327+
* :func:`~os.utimensat`
328+
* :func:`~os.utimensat`
329+
330+
* extended attributes (:issue:`12720`):
331+
332+
* :func:`~os.fgetxattr`
333+
* :func:`~os.flistxattr`
334+
* :func:`~os.fremovexattr`
335+
* :func:`~os.fsetxattr`
336+
* :func:`~os.getxattr`
337+
* :func:`~os.lgetxattr`
338+
* :func:`~os.listxattr`
339+
* :func:`~os.llistxattr`
340+
* :func:`~os.lremovexattr`
341+
* :func:`~os.lsetxattr`
342+
* :func:`~os.removexattr`
343+
* :func:`~os.setxattr`
344+
345+
* Scheduler functions (:issue:`12655`):
346+
347+
* :func:`~os.sched_get_priority_max`
348+
* :func:`~os.sched_get_priority_min`
349+
* :func:`~os.sched_getaffinity`
350+
* :func:`~os.sched_getparam`
351+
* :func:`~os.sched_getscheduler`
352+
* :func:`~os.sched_rr_get_interval`
353+
* :func:`~os.sched_setaffinity`
354+
* :func:`~os.sched_setparam`
355+
* :func:`~os.sched_setscheduler`
356+
* :func:`~os.sched_yield`
357+
358+
* Add some extra posix functions to the os module (:issue:`10812`):
359+
360+
* :func:`~os.fexecve`
361+
* :func:`~os.futimens`
362+
* :func:`~os.futimens`
363+
* :func:`~os.futimes`
364+
* :func:`~os.futimes`
365+
* :func:`~os.lockf`
366+
* :func:`~os.lutimes`
367+
* :func:`~os.lutimes`
368+
* :func:`~os.posix_fadvise`
369+
* :func:`~os.posix_fallocate`
370+
* :func:`~os.pread`
371+
* :func:`~os.pwrite`
372+
* :func:`~os.readv`
373+
* :func:`~os.sync`
374+
* :func:`~os.truncate`
375+
* :func:`~os.waitid`
376+
* :func:`~os.writev`
377+
378+
* Other new functions:
379+
380+
* :func:`~os.fdlistdir` (:issue:`10755`)
381+
* :func:`~os.getgrouplist` (:issue:`9344`)
382+
310383

311384
packaging
312385
---------

0 commit comments

Comments
 (0)