| Commit message (Expand) | Author | Age | Files | Lines |
| * | Issue #17248: Fix os.*chown() testing when user is in root group. | Serhiy Storchaka | 2013-02-21 | 1 | -1/+1 |
|
|
| * | Issue #17248: Fix os.*chown() testing when user has group root. | Serhiy Storchaka | 2013-02-20 | 1 | -2/+3 |
|
|
| * | Issue #15301: Enhance os.*chown() testing. Based on patch by Larry Hastings. | Serhiy Storchaka | 2013-02-20 | 1 | -24/+42 |
|
|
| * | Issue #4591: Uid and gid values larger than 2**31 are supported now. | Serhiy Storchaka | 2013-02-12 | 1 | -6/+23 |
|
|
| * | Issue #16698: Skip posix test_getgroups when built with OS X | Ned Deily | 2013-02-02 | 1 | -0/+7 |
|
|
| * | Issue #15747: skip chflags UF_IMMUTABLE tests if EOPNOTSUPP is raised. | Victor Stinner | 2012-12-04 | 1 | -3/+20 |
|
|
| * | Issue #15765: Fix quirky NetBSD getcwd() behaviour. | Trent Nelson | 2012-08-29 | 1 | -2/+10 |
|
|
| * | os.popen().close() returns None on success, not 0... | Charles-François Natali | 2012-05-02 | 1 | -1/+1 |
|
|
| * | Issue #14698: Make test_posix more robust when the current UID doesn't have an | Charles-François Natali | 2012-05-02 | 1 | -2/+7 |
|
|
| * | Issue #5113: Fix a test_posix failure on HP-UX, where non-root users can | Charles-François Natali | 2012-04-17 | 1 | -3/+9 |
|
|
| * | Issue #8746: Use tempfile module to get tempdir and randomize the | Ned Deily | 2011-07-26 | 1 | -1/+3 |
|
|
| * | Issue #8746: Correct faulty configure checks so that os.chflags() and | Ned Deily | 2011-06-28 | 1 | -12/+48 |
|
|
| * | Merged revisions 87958 via svnmerge from | Antoine Pitrou | 2011-01-12 | 1 | -1/+4 |
|
|
| * | Issue #4662: os.tempnam(), os.tmpfile() and os.tmpnam() now raise a py3k | Antoine Pitrou | 2011-01-02 | 1 | -10/+16 |
|
|
| * | Merged revisions 86596 via svnmerge from | Ezio Melotti | 2010-11-21 | 1 | -1/+1 |
|
|
| * | Merged revisions 84492 via svnmerge from | Antoine Pitrou | 2010-09-04 | 1 | -7/+1 |
|
|
| * | Merged revisions 83431 via svnmerge from | Ronald Oussoren | 2010-08-03 | 1 | -4/+4 |
|
|
| * | Merged revisions 83133 via svnmerge from | Ronald Oussoren | 2010-07-24 | 1 | -1/+5 |
|
|
| * | Merged revisions 83088 via svnmerge from | Ronald Oussoren | 2010-07-24 | 1 | -1/+52 |
|
|
| * | Issue #9185: On Solaris and OpenBSD, posix_getcwd() could loop indefinitely | Stefan Krah | 2010-07-13 | 1 | -1/+7 |
|
|
| * | Revert temporary commit in r79937 | Antoine Pitrou | 2010-04-10 | 1 | -21/+3 |
|
|
| * | Temporary commit of fix to issue #5380 (in order to watch buildbot response) | Antoine Pitrou | 2010-04-10 | 1 | -3/+21 |
|
|
| * | use assert[Not]IsInstance where appropriate | Ezio Melotti | 2010-01-24 | 1 | -2/+2 |
|
|
| * | use assert[Not]In where appropriate | Ezio Melotti | 2010-01-23 | 1 | -1/+1 |
|
|
| * | Fix possible integer overflow in lchown and fchown functions. For issue1747858. | Gregory P. Smith | 2009-12-23 | 1 | -25/+48 |
|
|
| * | Issue #7333: The `posix` module gains an `initgroups()` function providing | Antoine Pitrou | 2009-12-02 | 1 | -0/+22 |
|
|
| * | Issue #6508: Add posix.{getresuid,getresgid,setresuid,setresgid}. | Martin v. Löwis | 2009-11-27 | 1 | -0/+42 |
|
|
| * | Try to fix Solaris buildbot rmtree failure in test_getcwd_long_pathnames | R. David Murray | 2009-07-09 | 1 | -2/+1 |
|
|
| * | Temporarily ignore rmtree errors in test_getcwd_long_pathnames to see | R. David Murray | 2009-07-09 | 1 | -1/+2 |
|
|
| * | convert usage of fail* to assert* | Benjamin Peterson | 2009-06-30 | 1 | -12/+12 |
|
|
| * | Restore skips of posix and pty tests on Windows by calling the | R. David Murray | 2009-04-21 | 1 | -1/+2 |
|
|
| * | Add import_function method to test.test_support, and modify a number of | R. David Murray | 2009-03-30 | 1 | -4/+3 |
|
|
| * | remove test_support.TestSkipped and just use unittest.SkipTest | Benjamin Peterson | 2009-03-26 | 1 | -4/+4 |
|
|
| * | Just returning nothing instead of rising TestSkipped, because | Facundo Batista | 2008-06-22 | 1 | -1/+5 |
|
|
| * | Trying to see if the problem in Martin's buildot is at | Facundo Batista | 2008-06-22 | 1 | -1/+4 |
|
|
| * | Trying to see if the @ in a path is causing the issue in the | Facundo Batista | 2008-06-22 | 1 | -1/+1 |
|
|
| * | Issue #2722. Now the char buffer to support the path string has | Facundo Batista | 2008-06-22 | 1 | -0/+33 |
|
|
| * | Fix chown on 64-bit linux. It needed to take a long (64-bit on 64bit linux) as | Gregory P. Smith | 2008-03-18 | 1 | -0/+28 |
|
|
| * | Patch #2167 from calvin: Remove unused imports | Christian Heimes | 2008-02-23 | 1 | -1/+0 |
|
|
| * | Patch #1490190: posixmodule now includes os.chflags() and os.lchflags() | Martin v. Löwis | 2007-02-19 | 1 | -0/+12 |
|
|
| * | Correct implementation and documentation of os.confstr. Add a simple test | Skip Montanaro | 2006-04-20 | 1 | -0/+5 |
|
|
| * | Add tests for posix O_SHLOCK & O_EXLOCK. Missed checking this in with | Skip Montanaro | 2005-06-17 | 1 | -0/+31 |
|
|
| * | Try to improve test coverage for utime() | Neal Norwitz | 2004-06-06 | 1 | -0/+4 |
|
|
| * | Combine the functionality of test_support.run_unittest() | Walter Dörwald | 2003-05-01 | 1 | -20/+18 |
|
|
| * | Fix SF bug #697556, test_posix fails: getlogin | Neal Norwitz | 2003-03-18 | 1 | -6/+0 |
|
|
| * | Fix SF bug #690081, test_posix fails when run in non-interactive mode | Neal Norwitz | 2003-02-23 | 1 | -1/+8 |
|
|
| * | Make changes suggested by Walter to use self.assert*() methods. | Neal Norwitz | 2003-02-17 | 1 | -26/+14 |
|
|
| * | test_posix is an expected skip on Win32. Also fixed test_posix to | Tim Peters | 2003-02-17 | 1 | -1/+1 |
|
|
| * | Added test_posix (hopefully it works on Windows). | Neal Norwitz | 2003-02-17 | 1 | -0/+172 |
|
|