diff options
author | Ronan Lamy <ronan.lamy@gmail.com> | 2019-10-10 07:34:46 (GMT) |
---|---|---|
committer | Victor Stinner <vstinner@python.org> | 2019-10-10 07:34:46 (GMT) |
commit | 7bb14316b8ceddb813f31040a299af94a57ab339 (patch) | |
tree | dfac97d7fff7de61f580a9a1c59037d0788d2f83 /Misc | |
parent | a5447735c334a041ee2ffdeb5c7e13d7d4502ea2 (diff) | |
download | cpython-7bb14316b8ceddb813f31040a299af94a57ab339.zip cpython-7bb14316b8ceddb813f31040a299af94a57ab339.tar.gz cpython-7bb14316b8ceddb813f31040a299af94a57ab339.tar.bz2 |
bpo-38109: Add missing constants to Lib/stat.py (GH-16665)
Add missing stat.S_IFDOOR, stat.S_IFPORT, stat.S_IFWHT,
stat.S_ISDOOR, stat.S_ISPORT, and stat.S_ISWHT values to
the Python implementation of the stat module.
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/NEWS.d/next/Library/2019-10-10-00-25-28.bpo-38109.9w-IGF.rst | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Library/2019-10-10-00-25-28.bpo-38109.9w-IGF.rst b/Misc/NEWS.d/next/Library/2019-10-10-00-25-28.bpo-38109.9w-IGF.rst new file mode 100644 index 0000000..3f4484d --- /dev/null +++ b/Misc/NEWS.d/next/Library/2019-10-10-00-25-28.bpo-38109.9w-IGF.rst @@ -0,0 +1,3 @@ +Add missing :data:`stat.S_IFDOOR`, :data:`stat.S_IFPORT`, :data:`stat.S_IFWHT`,
+:func:`stat.S_ISDOOR`, :func:`stat.S_ISPORT`, and :func:`stat.S_ISWHT` values to
+the Python implementation of :mod:`stat`.
\ No newline at end of file |