This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

classification
Title: Enhancement: add `os.getdtablesize(..)` to `os` (`posix`) module
Type: enhancement Stage:
Components: Library (Lib) Versions: Python 3.9
process
Status: open Resolution:
Dependencies: Superseder:
Assigned To: Nosy List: larry, ngie
Priority: normal Keywords:

Created on 2020-02-24 20:36 by ngie, last changed 2022-04-11 14:59 by admin.

Messages (1)
msg362603 - (view) Author: Enji Cooper (ngie) * Date: 2020-02-24 20:36
getdtablesize({2,3}) is a wonderful library call/system call to have access to because it allows one to determine the descriptor limits at runtime in an easier manner than having to do the equivalent with os.sysconf(..):

>>> os.sysconf(os.sysconf_names["SC_OPEN_MAX"])

This has been present in *BSD since time memorial [1] and in Linux since 2010 [2], so I think it would be a good addition to the `os` (`posix`) module.

I will submit a diff for this in a few days, if it's deemed acceptable to have in the `posix` module.

1. https://www.freebsd.org/cgi/man.cgi?query=getdtablesize&sektion=2&manpath=freebsd-release-ports
2. http://man7.org/linux/man-pages/man2/getdtablesize.2.html
History
Date User Action Args
2022-04-11 14:59:27adminsetgithub: 83923
2020-02-29 00:21:12terry.reedysetnosy: + larry
2020-02-24 20:37:21ngiesetversions: + Python 3.9
2020-02-24 20:36:13ngiecreate