summaryrefslogtreecommitdiffstats
path: root/Modules/_stat.c
Commit message (Collapse)AuthorAgeFilesLines
* bpo-37834: Normalise handling of reparse points on Windows (GH-15231)Steve Dower2019-08-211-0/+7
| | | | | | | | | | bpo-37834: Normalise handling of reparse points on Windows * ntpath.realpath() and nt.stat() will traverse all supported reparse points (previously was mixed) * nt.lstat() will let the OS traverse reparse points that are not name surrogates (previously would not traverse any reparse point) * nt.[l]stat() will only set S_IFLNK for symlinks (previous behaviour) * nt.readlink() will read destinations for symlinks and junction points only bpo-1311: os.path.exists('nul') now returns True on Windows * nt.stat('nul').st_mode is now S_IFCHR (previously was an error)
* Issue #21741: Add st_file_attributes to os.stat_result on Windows.Zachary Ware2014-06-191-0/+36
| | | | Patch by Ben Hoyt.
* Issue #11016: Don't define macros and constants that are already set by pyport.hChristian Heimes2013-06-231-31/+5
|
* Issue #11016: Detect integer conversion on conversion from Python int to C ↵Victor Stinner2013-06-231-13/+27
| | | | mode_t
* Fix a typo in S_ISDIR, S_ISCHR, S_ISBLK and S_ISREG.Christian Heimes2013-06-231-7/+7
| | | | Add extra braces to S_IS*() macros
* Issue #11016: Try to fix compilaton of the new _stat.c module on WindowsVictor Stinner2013-06-221-0/+4
|
* Issue #11016: Add C implementation of the stat module as _statChristian Heimes2013-06-221-0/+571