summaryrefslogtreecommitdiffstats
path: root/Lib/test/test_os.py
Commit message (Expand)AuthorAgeFilesLines
* gh-116622: Test updates for Android (#117299)Malcolm Smith2024-04-051-1/+6
* gh-116303: Skip test module dependent tests if test modules are unavailable (...Erlend E. Aasland2024-04-031-0/+3
* gh-108277: Make test_os tolerate 10 ms diff for timerfd on Android emulators ...Malcolm Smith2024-03-271-13/+20
* gh-113964: Don't prevent new threads until all non-daemon threads exit (#116677)Sam Gross2024-03-191-8/+9
* gh-116401: Fix blocking os.fwalk() and shutil.rmtree() on opening a named pip...Serhiy Storchaka2024-03-131-4/+78
* gh-71052: Change Android's `sys.platform` from "linux" to "android"Malcolm Smith2024-03-111-4/+3
* gh-116057: Use relative recursion limits when testing os.walk() and Path.walk...Malcolm Smith2024-03-101-2/+2
* gh-71052: Add test exclusions to support running the test suite on Android (#...Malcolm Smith2024-02-291-3/+8
* gh-115596: Fix ProgramPriorityTests in test_os permanently changing the proce...Brian Schubert2024-02-171-16/+15
* Fix ProgramPriorityTests on FreeBSD with high nice value (GH-100145)Dmitry Marakasov2024-02-171-1/+2
* gh-82626: Emit a warning when bool is used as a file descriptor (GH-111275)Serhiy Storchaka2024-02-051-0/+14
* gh-114099: Add test exclusions to support running the test suite on iOS (#114...Russell Keith-Magee2024-02-051-1/+3
* gh-85984: Add POSIX pseudo-terminal functions. (GH-102413)Soumendra Ganguly2024-01-291-6/+39
* gh-114435: Allow test_stat_inaccessible_file() to have matching ino/dev (GH-1...Steve Dower2024-01-261-4/+3
* gh-114272: Fix or skip tests that fail due to spaces in paths (GH-114451)Steve Dower2024-01-251-2/+5
* gh-111877: Fixes stat() handling for inaccessible files on Windows (GH-113716)Steve Dower2024-01-121-0/+60
* gh-77046: os.pipe() sets _O_NOINHERIT flag on fds (#113817)Victor Stinner2024-01-101-0/+55
* gh-113090: Fix test.support.os_support.can_chmod() on Windows (GH-113091)Serhiy Storchaka2023-12-141-1/+1
* gh-112532: Require mimalloc in `--disable-gil` builds (gh-112883)Sam Gross2023-12-121-1/+4
* gh-111841: Fix os.putenv() and os.unsetenv() with embedded NUL on Windows (GH...Serhiy Storchaka2023-11-101-1/+4
* gh-109649: Fix test_os.test_process_cpu_count_affinity() (#111689)Victor Stinner2023-11-031-4/+4
* gh-110697: Use CLOCK_RES in test_os.TimerfdTests (#111529)Victor Stinner2023-10-301-6/+6
* gh-110697: test_os TimerfdTests uses selectors (#110789)Victor Stinner2023-10-131-102/+67
* gh-108277: test_os tolerates 1 ms diff for timerfd (#110661)Victor Stinner2023-10-111-2/+2
* gh-108277: Fix test_os TimerfdTests (#110515)Victor Stinner2023-10-081-3/+11
* gh-108277: Add os.timerfd_create() function (#108382)Masaru Tsuchiyama2023-10-071-0/+350
* gh-109888: Fix test_os _kill_with_event() on Windows (#110421)Victor Stinner2023-10-051-23/+27
* gh-109649: Add os.process_cpu_count() function (#109907)Victor Stinner2023-09-301-4/+32
* gh-109033: Return filename with os.utime errors (#109034)Ronan Pigott2023-09-191-0/+7
* gh-109295: Fix test_os.test_access_denied() for TEMP=cwd (#109299)Victor Stinner2023-09-121-1/+1
* gh-106046: Improve error message from `os.fspath` if `__fspath__` is set to `...Alex Waygood2023-06-251-0/+39
* gh-104690 Disallow thread creation and fork at interpreter finalization (#104...chgnrdv2023-06-041-0/+16
* GH-104898: Add __slots__ to os.PathLike (GH-104899)Barney Gale2023-05-251-0/+6
* gh-75729: Fix os.spawn tests not handling spaces on Windows (#99150)C.A.M. Gerlach2023-04-081-45/+57
* gh-99726: Improves correctness of stat results for Windows, and uses faster A...Steve Dower2023-03-161-1/+11
* gh-102519: Avoid failing tests due to inaccessible volumes (GH-102706)Steve Dower2023-03-151-6/+11
* gh-102519: Add os.listdrives, os.listvolumes and os.listmounts on Windows (GH...Steve Dower2023-03-101-0/+43
* gh-102255: Improve build support for Windows API partitions (GH-102256)Max Bachmann2023-03-091-3/+5
* gh-102179: Fix `os.dup2` error reporting for negative fds (#102180)Alexey Izbyshev2023-03-041-0/+20
* gh-101881: Support (non-)blocking read/write functions on Windows pipes (GH-1...Rayyan Ansari2023-02-161-0/+1
* gh-101196: Make isdir/isfile/exists faster on Windows (GH-101324)Michael Droettboom2023-02-081-0/+2
* gh-100228: Warn from os.fork() if other threads exist. (#100229)Gregory P. Smith2022-12-291-0/+28
* gh-89727: Fix os.walk RecursionError on deep trees (#99803)Jon Burdo2022-12-191-0/+43
* gh-81057: Move OS-Related Globals to _PyRuntimeState (gh-100082)Eric Snow2022-12-081-6/+7
* gh-99547: Add isjunction methods for checking if a path is a junction (GH-99548)Charles Machalow2022-11-221-0/+17
* gh-98393: Update test_os for bytes-like types (#98487)Victor Stinner2022-11-021-34/+12
* gh-98393: os module reject bytes-like, only accept bytes (#98394)Victor Stinner2022-10-181-20/+12
* gh-43414: os.get_terminal_size() now uses the actual file descriptor on Windo...Raghunandan Bhat2022-07-281-0/+13
* gh-90473: Fix more tests on platforms without umask (GH-95164)Christian Heimes2022-07-231-0/+8
* gh-90473: Make chmod a dummy on WASI, skip chmod tests (GH-93534)Christian Heimes2022-06-061-2/+3