- 9aa16d9 Issue #23842: os.major(), os.minor() and os.makedev() now support ints again. by Serhiy Storchaka · 10 years ago
- e373754 don't segfault when trying to fdopen() a fd for a dir (closes #22259) by Benjamin Peterson · 11 years ago
- fd3ba7b Closes #11279: test_posix and lack of "id -G" support - less noise required? (Solaris) by Jesus Cea · 11 years ago
- 1f70b87 Issue #21811: Anticipated fixes to 3.x and 2.7 for OS X 10.10 Yosemite. by Ned Deily · 11 years ago
- 5918f8f 'sunos' not 'solaris by Benjamin Peterson · 11 years ago
- 15773c8 just skip this test on Solaris by Benjamin Peterson · 11 years ago
- 6800d93 some platforms apparently don't care about fdopen'ing with a different mode by Benjamin Peterson · 11 years ago
- 5c863bf when an exception is raised in fdopen, never close the fd (changing on my mind on #21191) by Benjamin Peterson · 11 years ago
- 02ab7a8 make sure fdopen always closes the fd in error cases (closes #21191) by Benjamin Peterson · 11 years ago
- bde1cfb fix test_posix.test_initgroups to work without supplemental groups (closes #20249) by Benjamin Peterson · 11 years ago
- 1f70221 Issue #19572: More silently skipped tests explicitly skipped. by Zachary Ware · 12 years ago
- 32e23e7 Issue #18702: All skipped tests now reported as skipped. by Serhiy Storchaka · 12 years ago
- 484dee3 Issue #17248: Fix os.*chown() testing when user is in root group. by Serhiy Storchaka · 12 years ago
- fffc479 Issue #17248: Fix os.*chown() testing when user has group root. by Serhiy Storchaka · 12 years ago
- 3e188c4 Issue #15301: Enhance os.*chown() testing. Based on patch by Larry Hastings. by Serhiy Storchaka · 12 years ago
- da5c2a0 Issue #4591: Uid and gid values larger than 2**31 are supported now. by Serhiy Storchaka · 12 years ago
- cc23cc6 Issue #16698: Skip posix test_getgroups when built with OS X by Ned Deily · 13 years ago
- 8c7c697 Issue #15747: skip chflags UF_IMMUTABLE tests if EOPNOTSUPP is raised. by Victor Stinner · 13 years ago
- da4277a Issue #15765: Fix quirky NetBSD getcwd() behaviour. by Trent Nelson · 13 years ago
- dee8dad os.popen().close() returns None on success, not 0... by Charles-François Natali · 13 years ago
- 666a573 Issue #14698: Make test_posix more robust when the current UID doesn't have an by Charles-François Natali · 13 years ago
- f838764 Issue #5113: Fix a test_posix failure on HP-UX, where non-root users can by Charles-François Natali · 13 years ago
- d88131a Issue #8746: Use tempfile module to get tempdir and randomize the by Ned Deily · 14 years ago
- 43e1054 Issue #8746: Correct faulty configure checks so that os.chflags() and by Ned Deily · 14 years ago
- 8bc59fa Merged revisions 87958 via svnmerge from by Antoine Pitrou · 15 years ago
- b061461 Issue #4662: os.tempnam(), os.tmpfile() and os.tmpnam() now raise a py3k by Antoine Pitrou · 15 years ago
- 2623a37 Merged revisions 86596 via svnmerge from by Ezio Melotti · 15 years ago
- dd806ce Merged revisions 84492 via svnmerge from by Antoine Pitrou · 15 years ago
- ac72e58 Merged revisions 83431 via svnmerge from by Ronald Oussoren · 15 years ago
- 5719c2f Merged revisions 83133 via svnmerge from by Ronald Oussoren · 15 years ago
- 9e7ffae Merged revisions 83088 via svnmerge from by Ronald Oussoren · 15 years ago
- 182ae64 Issue #9185: On Solaris and OpenBSD, posix_getcwd() could loop indefinitely by Stefan Krah · 15 years ago
- bba8f2d Revert temporary commit in r79937 by Antoine Pitrou · 15 years ago
- 16e026c Temporary commit of fix to issue #5380 (in order to watch buildbot response) by Antoine Pitrou · 15 years ago
- b0f5adc use assert[Not]IsInstance where appropriate by Ezio Melotti · 16 years ago
- aa98058 use assert[Not]In where appropriate by Ezio Melotti · 16 years ago
- 9f12d46 Fix possible integer overflow in lchown and fchown functions. For issue1747858. by Gregory P. Smith · 16 years ago
- 30b3b35 Issue #7333: The `posix` module gains an `initgroups()` function providing by Antoine Pitrou · 16 years ago
- 50ea456 Issue #6508: Add posix.{getresuid,getresgid,setresuid,setresgid}. by Martin v. Löwis · 16 years ago
- b0c828a Try to fix Solaris buildbot rmtree failure in test_getcwd_long_pathnames by R. David Murray · 16 years ago
- 6fcf7ca Temporarily ignore rmtree errors in test_getcwd_long_pathnames to see by R. David Murray · 16 years ago
- 5c8da86 convert usage of fail* to assert* by Benjamin Peterson · 16 years ago
- 95fb46c Restore skips of posix and pty tests on Windows by calling the by R. David Murray · 16 years ago
- 59beec3 Add import_function method to test.test_support, and modify a number of by R. David Murray · 16 years ago
- 888a39b remove test_support.TestSkipped and just use unittest.SkipTest by Benjamin Peterson · 16 years ago
- 2694eb0 Just returning nothing instead of rising TestSkipped, because by Facundo Batista · 17 years ago
- 96f3dc3 Trying to see if the problem in Martin's buildot is at by Facundo Batista · 17 years ago
- b8242ba Trying to see if the @ in a path is causing the issue in the by Facundo Batista · 17 years ago
- 5596b0c Issue #2722. Now the char buffer to support the path string has by Facundo Batista · 17 years ago
- f48da8f Fix chown on 64-bit linux. It needed to take a long (64-bit on 64bit linux) as by Gregory P. Smith · 17 years ago
- c5f05e4 Patch #2167 from calvin: Remove unused imports by Christian Heimes · 17 years ago
- 382abef Patch #1490190: posixmodule now includes os.chflags() and os.lchflags() by Martin v. Löwis · 18 years ago
- 94785ef Correct implementation and documentation of os.confstr. Add a simple test by Skip Montanaro · 19 years ago
- 9847000 Add tests for posix O_SHLOCK & O_EXLOCK. Missed checking this in with by Skip Montanaro · 20 years ago
- c28e7ad Try to improve test coverage for utime() by Neal Norwitz · 21 years ago
- 21d3a32 Combine the functionality of test_support.run_unittest() by Walter Dörwald · 22 years ago
- 6e54f57 Fix SF bug #697556, test_posix fails: getlogin by Neal Norwitz · 22 years ago
- 71b13e8 Fix SF bug #690081, test_posix fails when run in non-interactive mode by Neal Norwitz · 22 years ago
- 2ff51a8 Make changes suggested by Walter to use self.assert*() methods. by Neal Norwitz · 22 years ago
- 003eb30 test_posix is an expected skip on Win32. Also fixed test_posix to by Tim Peters · 22 years ago
- e241ce8 Added test_posix (hopefully it works on Windows). by Neal Norwitz · 22 years ago