summaryrefslogtreecommitdiffstats
path: root/Modules/_stat.c
Commit message (Expand)AuthorAgeFilesLines
* gh-113666: Adding missing UF_ and SF_ flags to module 'stat' (#113667)Ronald Oussoren2024-01-151-3/+68
* gh-111650: Ensure pyconfig.h includes Py_GIL_DISABLED on Windows (GH-112778)Steve Dower2023-12-131-2/+0
* gh-111863: Rename `Py_NOGIL` to `Py_GIL_DISABLED` (#111864)Hugo van Kemenade2023-11-201-2/+2
* gh-110968: Py_MOD_PER_INTERPRETER_GIL_SUPPORTED was added to 3.12 (#111584)Victor Stinner2023-11-011-1/+1
* gh-110481: Implement biased reference counting (gh-110764)Sam Gross2023-10-301-0/+6
* gh-85283: _stat extension now uses the limited C API (#110711)Victor Stinner2023-10-111-0/+3
* gh-110079: Remove extern "C" { ...} in C code (#110080)Victor Stinner2023-09-291-8/+0
* gh-86493: Fix possible leaks in some modules initialization (GH-106768)Serhiy Storchaka2023-07-181-9/+9
* gh-104922: remove PY_SSIZE_T_CLEAN (#106315)Inada Naoki2023-07-021-1/+0
* gh-99113: Add Py_MOD_PER_INTERPRETER_GIL_SUPPORTED (gh-104205)Eric Snow2023-05-051-0/+1
* bpo-40677: Define IO_REPARSE_TAG_APPEXECLINK explicitly (GH-20206)Minmin Gong2020-05-191-0/+4
* bpo-1635741: Fix compiler warning in _stat.c (GH-19822)Victor Stinner2020-04-301-1/+1
* bpo-1635741: Port _stat module to multiphase initialization (GH-19798)Dong-hee Na2020-04-291-100/+127
* bpo-37834: Normalise handling of reparse points on Windows (GH-15231)Steve Dower2019-08-211-0/+7
* Issue #21741: Add st_file_attributes to os.stat_result on Windows.Zachary Ware2014-06-191-0/+36
* 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 mo...Victor Stinner2013-06-231-13/+27
* Fix a typo in S_ISDIR, S_ISCHR, S_ISBLK and S_ISREG.Christian Heimes2013-06-231-7/+7
* 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