Project

General

Profile

Feature #21878

Updated by nobu (Nobuyoshi Nakada) 3 months ago

I found recent Python supports these file types: 
 [S_ISDOOR](https://docs.python.org/3.14/library/stat.html#stat.S_ISDOOR) 
 [S_ISPORT](https://docs.python.org/3.14/library/stat.html#stat.S_ISPORT) 
 [S_ISWHT](https://docs.python.org/3.14/library/stat.html#stat.S_ISWHT) 
 even they [return `False` always](https://github.com/python/cpython/blob/3.14/Lib/stat.py#L78-L88). 

 What about supporting them in Ruby? 

 [GH-16167](https://github.com/ruby/ruby/pull/16167)

Back