Message219479
> getrlimit and setrlimit are not exposed in the os module; you must use ctypes or an extension module to call them from Python:
There is `resource` module:
>>> import resource
>>> resource.getrlimit(resource.RLIMIT_NOFILE)
(1024, 4096) |
|
Date |
User |
Action |
Args |
2014-06-01 02:28:09 | akira | set | recipients:
+ akira, gregory.p.smith, larry, sstewartgallus |
2014-06-01 02:28:09 | akira | set | messageid: <1401589689.16.0.875043846921.issue21618@psf.upfronthosting.co.za> |
2014-06-01 02:28:09 | akira | link | issue21618 messages |
2014-06-01 02:28:08 | akira | create | |
|