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

Skip to content

Commit dba3b5c

Browse files
committed
3.3 whatsnew: Comment out the section about new POSIX *at functions etc.; has to be rewritten later.
1 parent 2391974 commit dba3b5c

1 file changed

Lines changed: 70 additions & 68 deletions

File tree

Doc/whatsnew/3.3.rst

Lines changed: 70 additions & 68 deletions
Original file line numberDiff line numberDiff line change
@@ -1155,73 +1155,75 @@ os
11551155
terminal attached to a file descriptor.
11561156
(Contributed by Zbigniew Jędrzejewski-Szmek in :issue:`13609`.)
11571157

1158-
* "at" functions (:issue:`4761`):
1159-
1160-
* :func:`~os.faccessat`
1161-
* :func:`~os.fchmodat`
1162-
* :func:`~os.fchownat`
1163-
* :func:`~os.fstatat`
1164-
* :func:`~os.futimesat`
1165-
* :func:`~os.linkat`
1166-
* :func:`~os.mkdirat`
1167-
* :func:`~os.mkfifoat`
1168-
* :func:`~os.mknodat`
1169-
* :func:`~os.openat`
1170-
* :func:`~os.readlinkat`
1171-
* :func:`~os.renameat`
1172-
* :func:`~os.symlinkat`
1173-
* :func:`~os.unlinkat`
1174-
* :func:`~os.utimensat`
1175-
1176-
* extended attributes (:issue:`12720`):
1177-
1178-
* :func:`~os.fgetxattr`
1179-
* :func:`~os.flistxattr`
1180-
* :func:`~os.fremovexattr`
1181-
* :func:`~os.fsetxattr`
1182-
* :func:`~os.getxattr`
1183-
* :func:`~os.lgetxattr`
1184-
* :func:`~os.listxattr`
1185-
* :func:`~os.llistxattr`
1186-
* :func:`~os.lremovexattr`
1187-
* :func:`~os.lsetxattr`
1188-
* :func:`~os.removexattr`
1189-
* :func:`~os.setxattr`
1190-
1191-
* Scheduler functions (:issue:`12655`):
1192-
1193-
* :func:`~os.sched_get_priority_max`
1194-
* :func:`~os.sched_get_priority_min`
1195-
* :func:`~os.sched_getaffinity`
1196-
* :func:`~os.sched_getparam`
1197-
* :func:`~os.sched_getscheduler`
1198-
* :func:`~os.sched_rr_get_interval`
1199-
* :func:`~os.sched_setaffinity`
1200-
* :func:`~os.sched_setparam`
1201-
* :func:`~os.sched_setscheduler`
1202-
* :func:`~os.sched_yield`
1203-
1204-
* Add some extra posix functions to the os module (:issue:`10812`):
1205-
1206-
* :func:`~os.fexecve`
1207-
* :func:`~os.futimens`
1208-
* :func:`~os.futimes`
1209-
* :func:`~os.lockf`
1210-
* :func:`~os.lutimes`
1211-
* :func:`~os.posix_fadvise`
1212-
* :func:`~os.posix_fallocate`
1213-
* :func:`~os.pread`
1214-
* :func:`~os.pwrite`
1215-
* :func:`~os.readv`
1216-
* :func:`~os.sync`
1217-
* :func:`~os.truncate`
1218-
* :func:`~os.waitid`
1219-
* :func:`~os.writev`
1220-
1221-
* Other new functions:
1222-
1223-
* :func:`~os.flistdir` (:issue:`10755`)
1224-
* :func:`~os.getgrouplist` (:issue:`9344`)
1158+
.. XXX sort out this mess after beta1
1159+
1160+
* "at" functions (:issue:`4761`):
1161+
1162+
* :func:`~os.faccessat`
1163+
* :func:`~os.fchmodat`
1164+
* :func:`~os.fchownat`
1165+
* :func:`~os.fstatat`
1166+
* :func:`~os.futimesat`
1167+
* :func:`~os.linkat`
1168+
* :func:`~os.mkdirat`
1169+
* :func:`~os.mkfifoat`
1170+
* :func:`~os.mknodat`
1171+
* :func:`~os.openat`
1172+
* :func:`~os.readlinkat`
1173+
* :func:`~os.renameat`
1174+
* :func:`~os.symlinkat`
1175+
* :func:`~os.unlinkat`
1176+
* :func:`~os.utimensat`
1177+
1178+
* extended attributes (:issue:`12720`):
1179+
1180+
* :func:`~os.fgetxattr`
1181+
* :func:`~os.flistxattr`
1182+
* :func:`~os.fremovexattr`
1183+
* :func:`~os.fsetxattr`
1184+
* :func:`~os.getxattr`
1185+
* :func:`~os.lgetxattr`
1186+
* :func:`~os.listxattr`
1187+
* :func:`~os.llistxattr`
1188+
* :func:`~os.lremovexattr`
1189+
* :func:`~os.lsetxattr`
1190+
* :func:`~os.removexattr`
1191+
* :func:`~os.setxattr`
1192+
1193+
* Scheduler functions (:issue:`12655`):
1194+
1195+
* :func:`~os.sched_get_priority_max`
1196+
* :func:`~os.sched_get_priority_min`
1197+
* :func:`~os.sched_getaffinity`
1198+
* :func:`~os.sched_getparam`
1199+
* :func:`~os.sched_getscheduler`
1200+
* :func:`~os.sched_rr_get_interval`
1201+
* :func:`~os.sched_setaffinity`
1202+
* :func:`~os.sched_setparam`
1203+
* :func:`~os.sched_setscheduler`
1204+
* :func:`~os.sched_yield`
1205+
1206+
* Add some extra posix functions to the os module (:issue:`10812`):
1207+
1208+
* :func:`~os.fexecve`
1209+
* :func:`~os.futimens`
1210+
* :func:`~os.futimes`
1211+
* :func:`~os.lockf`
1212+
* :func:`~os.lutimes`
1213+
* :func:`~os.posix_fadvise`
1214+
* :func:`~os.posix_fallocate`
1215+
* :func:`~os.pread`
1216+
* :func:`~os.pwrite`
1217+
* :func:`~os.readv`
1218+
* :func:`~os.sync`
1219+
* :func:`~os.truncate`
1220+
* :func:`~os.waitid`
1221+
* :func:`~os.writev`
1222+
1223+
* Other new functions:
1224+
1225+
* :func:`~os.flistdir` (:issue:`10755`)
1226+
* :func:`~os.getgrouplist` (:issue:`9344`)
12251227
12261228
12271229
pdb
@@ -1306,7 +1308,7 @@ shutil
13061308

13071309
* :func:`~shutil.rmtree` is now resistant to symlink attacks on platforms
13081310
which support the new ``dir_fd`` parameter in :func:`os.open` and
1309-
:func:`os.unlinkat`. (Contributed by Martin von Löwis and Hynek Schlawack
1311+
:func:`os.unlink`. (Contributed by Martin von Löwis and Hynek Schlawack
13101312
in :issue:`4489`.)
13111313

13121314

0 commit comments

Comments
 (0)