summaryrefslogtreecommitdiffstats
path: root/Doc/library/os.rst
Commit message (Expand)AuthorAgeFilesLines
* gh-120057: Add os.environ.refresh() method (#120059)Victor Stinner2024-06-101-0/+11
* Format None, True, False and NotImplemented as literals (GH-118758)Serhiy Storchaka2024-05-081-2/+2
* docs: module page titles should not start with a link to themselves (#117099)Ned Batchelder2024-05-081-2/+2
* gh-118486: Support mkdir(mode=0o700) on Windows (GH-118488)Steve Dower2024-05-021-0/+7
* docs: typo: tiny grammar change: "pointed by" -> "pointed to by" (#118411)Andrew Zipperer2024-05-021-2/+2
* gh-117977: Amend version changed annotation for os.chmod, os.chown, and os.li...Nice Zombies2024-04-171-3/+3
* gh-114099: Add documentation for iOS platform (GH-117057)Russell Keith-Magee2024-03-281-126/+125
* gh-114099: Additions to standard library to support iOS (GH-117052)Russell Keith-Magee2024-03-281-0/+5
* gh-115664: Fix ordering of more versionadded and versionchanged directives (G...Serhiy Storchaka2024-03-071-23/+17
* gh-85984: Add POSIX pseudo-terminal functions. (GH-102413)Soumendra Ganguly2024-01-291-0/+59
* Docs: align usage of versionadded/versionchanged with recommended practice (#...Erlend E. Aasland2024-01-221-45/+46
* gh-113536: Expose `os.waitid` on macOS (#113542)Ronald Oussoren2024-01-011-3/+3
* Doc/library/os.rst: `os.waitid` absent on MacOS (#104558)John Hawkinson2023-12-281-0/+3
* gh-113191: Add support of os.fchmod() on Windows (GH-113192)Serhiy Storchaka2023-12-241-2/+6
* gh-113117: Support posix_spawn in subprocess.Popen with close_fds=True (#113118)Jakub Kulík2023-12-171-2/+13
* gh-113119 fix environment handling in subprocess.Popen when posix_spawn is us...Jakub Kulík2023-12-171-1/+5
* gh-105912: document gotcha with using os.fork on macOS (#112871)Ronald Oussoren2023-12-141-0/+10
* gh-59616: Support os.chmod(follow_symlinks=True) and os.lchmod() on Windows (...Serhiy Storchaka2023-12-141-1/+8
* gh-107959: clarify Unix-availability of `os.lchmod()` (GH-107960)Christoph Anton Mitterer2023-12-131-1/+4
* gh-101100: Fix Sphinx warning in references with asterisks (#113029)Hugo van Kemenade2023-12-131-4/+4
* gh-110631: Fix reST indentation (#110724)Ezio Melotti2023-10-111-6/+6
* gh-109595: Add -Xcpu_count=<n> cmdline for container users (#109667)Donghee Na2023-10-101-0/+7
* gh-108277: Add os.timerfd_create() function (#108382)Masaru Tsuchiyama2023-10-071-0/+211
* gh-109649: Add os.process_cpu_count() function (#109907)Victor Stinner2023-09-301-7/+24
* gh-109634: Use :samp: role (GH-109635)Serhiy Storchaka2023-09-231-2/+2
* gh-100228: Document the os.fork threads DeprecationWarning. (#109767)Gregory P. Smith2023-09-231-4/+32
* gh-107924: re-order os.sendfile() flag documentation (#107926)Christoph Anton Mitterer2023-09-071-19/+20
* Docs: Remove links to external C functions and macros in os.rst (#108138)Erlend E. Aasland2023-08-191-25/+27
* gh-107801: Improve the accuracy of os.lseek docs (#107935)Erlend E. Aasland2023-08-181-6/+11
* gh-107801: Improve the docs of the SEEK_* constants (#108099)Erlend E. Aasland2023-08-171-4/+14
* gh-107801: Document SEEK_HOLE and SEEK_DATA (#107936)Erlend E. Aasland2023-08-171-2/+27
* gh-107091: Fix some uses of :const: role (GH-107379)Serhiy Storchaka2023-07-281-2/+2
* gh-107091: Fix some uses of :c:type: role (GH-107138)Serhiy Storchaka2023-07-261-6/+6
* Document that `os.link()` is not available on Emscripten (GH-104822)Roman Yurchak2023-07-261-1/+1
* gh-106948: Docs: Disable links for C standard library functions, OS utility f...Erlend E. Aasland2023-07-231-3/+3
* gh-106948: Add standard external names to nitpick_ignore (GH-106949)Serhiy Storchaka2023-07-221-1/+1
* gh-106909: Use role :const: for referencing module constants (GH-106910)Serhiy Storchaka2023-07-211-43/+43
* gh-106892: Use roles :data: and :const: for referencing module variables (GH-...Serhiy Storchaka2023-07-211-1/+1
* gh-106919: Use role :c:macro: for referencing the C "constants" (GH-106920)Serhiy Storchaka2023-07-211-7/+7
* GH-103545: Add macOS specific constants for ``os.setpriority`` to ``os`` (#10...Ronald Oussoren2023-05-191-0/+11
* GH-97950: Use new-style index directive ('module') (#103996)Adam Turner2023-05-041-2/+2
* GH-103484: Fix redirected permanently URLs (#104001)Rafael Fontenelle2023-05-021-1/+1
* gh-44123: Add note on relative path for os.exec* (GH-93826)Stanley2023-04-241-1/+2
* Add link to `sys.exit` function documentation (#102805)David Poirier2023-03-211-1/+1
* gh-99726: Improves correctness of stat results for Windows, and uses faster A...Steve Dower2023-03-161-23/+65
* gh-102519: Add doc updates for os.listdrives, listvolumes and listmounts (GH-...Steve Dower2023-03-101-0/+63
* gh-101754: Document that Windows converts keys in `os.environ` to uppercase (...Owain Davies2023-03-031-0/+5
* gh-101881: Support (non-)blocking read/write functions on Windows pipes (GH-1...Rayyan Ansari2023-02-161-2/+10
* bpo-28356: Document os.rename() behavior on Windows for differing volumes (GH...Ryan Ozawa2023-01-091-0/+2
* bpo-41825: restructure docs for the os.wait*() family (GH-22356)Georg Brandl2022-11-281-93/+142