summaryrefslogtreecommitdiff
path: root/Lib/test/test_posix.py
Commit message (Expand)AuthorAgeFilesLines
* Fix test_posix if RWF_HIPRI is defined but not preadv2. (GH-13980)Miss Islington (bot)2019-06-111-0/+2
* Skip test_preadv_flags if RWF_HIPRI is not supported by the system (GH-12762)Miss Islington (bot)2019-04-131-0/+8
* [3.7] closes bpo-34650: Check if sched_getscheduler returns ENOSYS before dec...Benjamin Peterson2018-09-121-1/+13
* bpo-33871: Fix os.sendfile(), os.writev(), os.readv(), etc. (GH-7931)Miss Islington (bot)2018-07-311-0/+53
* bpo-33655: Also ignore test_posix_fallocate failures on BSD platforms (GH-7134)Miss Islington (bot)2018-05-261-1/+6
* bpo-20104: Remove posix_spawn from 3.7 (GH-6794)Pablo Galindo2018-05-141-160/+1
* bpo-33455: Pass os.environ in test_posix::test_specify_environment. (GH-6753)Miss Islington (bot)2018-05-101-1/+1
* bpo-20104: Improve error handling and fix a reference leak in os.posix_spawn(...Miss Islington (bot)2018-05-011-17/+160
* bpo-20104: Expose `posix_spawn` in the os module (GH-5109)Pablo Galindo2018-01-281-0/+17
* bpo-31368: Expose preadv and pwritev in the os module (#5239)Pablo Galindo2018-01-271-0/+50
* bpo-32593: Drop FreeBSD 9 and older support (#5232)Victor Stinner2018-01-221-0/+1
* bpo-28759: Skip some tests on PermissionError raised by Android (GH-4350)xdegaye2017-11-121-11/+15
* bpo-31106: Fix handling of erros in posix_fallocate() and posix_fadvise() (#3...Коренберг Марк2017-08-141-0/+19
* bpo-31044: Skip test_posix.test_makedev() on FreeBSD (#2915)Victor Stinner2017-07-271-0/+4
* bpo-30879: os.listdir() and os.scandir() now emit bytes names when (#2634)Serhiy Storchaka2017-07-111-3/+11
* bpo-30746: Prohibited the '=' character in environment variable names (#2382)Serhiy Storchaka2017-06-251-0/+15
* bpo-16500: Don't use string constants for os.register_at_fork() behavior (#1834)Gregory P. Smith2017-05-291-7/+29
* bpo-16500: Allow registering at-fork handlers (#1715)Antoine Pitrou2017-05-271-0/+40
* Issue #28759: Fix the tests that fail with PermissionError when run asXavier de Gaye2016-12-131-0/+6
* Issue #26944: Fix test_posix for Android where 'id -G' is entirely wrongXavier de Gaye2016-10-191-7/+10
* Issue #26027, #27524: Add PEP 519/__fspath__() support to os andBrett Cannon2016-08-261-5/+5
* Issue #26800: Undocumented support of general bytes-like objectsSerhiy Storchaka2016-08-061-1/+3
* Issue #23277: Remove unused imports in tests.Serhiy Storchaka2016-04-241-1/+0
* Issue #26671: Fixed tests for changed error messages.Serhiy Storchaka2016-04-081-3/+3
* Issue #23738: Merge 3.4 into 3.5Martin Panter2015-09-091-0/+8
|\
| * Issue #23738: Document and test actual keyword parameter namesMartin Panter2015-09-091-0/+8
* | Issue #23908: os functions now reject paths with embedded null characterSerhiy Storchaka2015-04-201-0/+36
|\ \ | |/
| * Issue #23908: os functions now reject paths with embedded null characterSerhiy Storchaka2015-04-201-0/+36
* | Issue #23842: Added tests for os.major(), os.minor() and os.makedev().Serhiy Storchaka2015-04-201-0/+30
|\ \ | |/
| * Issue #23842: Added tests for os.major(), os.minor() and os.makedev().Serhiy Storchaka2015-04-201-0/+30
* | Merge 3.4Victor Stinner2014-10-051-10/+11
|\ \ | |/
| * cleanup test_posixVictor Stinner2014-10-051-9/+10
| * Issue #22390: Remove files created by testsVictor Stinner2014-10-051-1/+1
* | Issue #22054: Add os.get_blocking() and os.set_blocking() functions to get andVictor Stinner2014-07-291-4/+3
|/
* Closes #11279: test_posix and lack of "id -G" support - less noise required? ...Jesus Cea2014-06-281-1/+1
* Issue #21811: Anticipated fixes to 3.x and 2.7 for OS X 10.10 Yosemite.Ned Deily2014-06-251-1/+1
* merge 3.3 (#20249)Benjamin Peterson2014-03-011-1/+1
|\
| * fix test_posix.test_initgroups to work without supplemental groups (closes #2...Benjamin Peterson2014-03-011-1/+1
* | Issue #20517: Functions in the os module that accept two filenamesLarry Hastings2014-02-091-0/+17
* | Issue #20532: Tests which use _testcapi now are marked as CPython only.Serhiy Storchaka2014-02-071-1/+5
|\ \ | |/
| * Issue #20532: Tests which use _testcapi now are marked as CPython only.Serhiy Storchaka2014-02-071-1/+5
* | (Merge 3.3) Issue #20113: Fix test_posix on OpenIndianaVictor Stinner2014-01-081-2/+16
|\ \ | |/
| * Issue #20113: Fix test_posix on OpenIndianaVictor Stinner2014-01-081-2/+16
* | (Merge 3.3) Issue #20113: os.readv() and os.writev() now raise an OSErrorVictor Stinner2014-01-081-1/+9
|\ \ | |/
| * Issue #20113: os.readv() and os.writev() now raise an OSError exception onVictor Stinner2014-01-081-1/+9
| * Issue #18702: All skipped tests now reported as skipped.Serhiy Storchaka2013-11-031-147/+167
* | Issue #18702: All skipped tests now reported as skipped.Serhiy Storchaka2013-11-031-147/+167
* | test_posix.test_pipe2() now checks that the O_NONBLOCK flag is setVictor Stinner2013-08-281-2/+4
* | remove support for compiling on systems without getcwd()Benjamin Peterson2013-08-231-33/+31
* | Issue #17248: Fix os.*chown() testing when user is in root group.Serhiy Storchaka2013-02-211-1/+1
|\ \ | |/