summaryrefslogtreecommitdiffstats
path: root/Lib/test/test_stat.py
Commit message (Collapse)AuthorAgeFilesLines
* Issue #18322: fix some test_stat nits.Antoine Pitrou2013-06-291-11/+7
|
* Solaris' /dev/null is a symlink. The device test now uses stat instead of ↵Christian Heimes2013-06-231-4/+7
|\ | | | | | | | | | | lstat to compensate for symlinks.
| * Solaris' /dev/null is a symlink. The device test now uses stat instead of ↵Christian Heimes2013-06-231-4/+7
| | | | | | | | | | | | lstat to compensate for symlinks.
* | Issue #11016: Add C implementation of the stat module as _statChristian Heimes2013-06-221-20/+37
|/
* BSD: block devices are goneChristian Heimes2013-06-221-1/+1
| | | | http://www.freebsd.org/doc/en/books/arch-handbook/driverbasics-block.html
* Fix test_stat on BSD, /dev/da0 and /dev/ad0 are linksChristian Heimes2013-06-211-1/+2
|
* Add tests for untested features of the 'stat' module (part of issue #11016)Christian Heimes2013-06-211-13/+132
|
* #14807: fix BB failures on Windows - avoid to to rely too many details of ↵Giampaolo Rodola'2012-05-161-11/+22
| | | | the mode string.
* #14807: fix bb failure due to symlink test relying on hard-coded permissionsGiampaolo Rodola'2012-05-151-1/+1
|
* #14807: move undocumented tarfile.filemode() to stat.filemode(). Add ↵Giampaolo Rodola'2012-05-151-0/+55
tarfile.filemode alias with deprecation warning.