summaryrefslogtreecommitdiffstats
path: root/Modules/resource.c
Commit message (Expand)AuthorAgeFilesLines
* 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: Build resource extension with limited C API (#110989)Victor Stinner2023-10-171-23/+21
* gh-110964: Remove private _PyArg functions (#110966)Victor Stinner2023-10-171-0/+5
* gh-108494: Argument Clinic: inline parsing code for positional-only parameter...Serhiy Storchaka2023-09-031-4/+5
* gh-108765: Python.h no longer includes <sys/time.h> (#108775)Victor Stinner2023-09-021-4/+0
* gh-108765: Python.h no longer includes <unistd.h> (#108783)Victor Stinner2023-09-021-6/+5
* gh-86493: Modernize modules initialization code (GH-106858)Serhiy Storchaka2023-07-251-9/+2
* gh-89886: Rely on HAVE_SYS_TIME_H (#105058)Erlend E. Aasland2023-06-011-0/+3
* gh-99113: Add Py_MOD_PER_INTERPRETER_GIL_SUPPORTED (gh-104205)Eric Snow2023-05-051-0/+1
* gh-94512: Fix forced arg format in AC-processed resource (GH-94515)Oleg Iarygin2022-07-291-7/+13
* bpo-40280: Address more test failures on Emscripten (GH-31050)Christian Heimes2022-02-051-0/+2
* bpo-42960: Add resource.RLIMIT_KQUEUES constant from FreeBSD (GH-24251)David CARLIER2021-02-181-0/+4
* bpo-1635741: Port resource extension module to module state (GH-23462)Christian Heimes2020-12-231-13/+43
* bpo-42029: Remove IRIX code (GH-23023)Victor Stinner2020-10-291-5/+2
* bpo-1635741: Port resource extension module to multiphase initialization (PEP...Hai Shi2020-04-021-53/+72
* bpo-39184: Add audit events to functions in `fcntl`, `msvcrt`, `os`, `resourc...Saiyang Gou2020-02-131-0/+10
* bpo-34674: Assume unistd.h exists on Unix. (GH-9290)Benjamin Peterson2018-09-141-3/+0
* bpo-20185: Convert the resource moduel to Argument Clinic. (#545)Serhiy Storchaka2017-03-121-36/+75
* Issue #20191: Fixed a crash in resource.prlimit() when pass a sequence thatSerhiy Storchaka2016-12-191-33/+31
|\
| * Issue #20191: Fixed a crash in resource.prlimit() when pass a sequence thatSerhiy Storchaka2016-12-191-33/+31
* | replace PY_LONG_LONG with long longBenjamin Peterson2016-09-061-3/+3
* | require a long long data type (closes #27961)Benjamin Peterson2016-09-061-4/+0
|/
* Issue #19343: Expose FreeBSD-specific APIs in resource module. Original patc...Christian Heimes2013-12-081-0/+14
* Issue #16595: Add prlimit() to resource moduleChristian Heimes2013-10-221-26/+86
* Issue #19324: Expose Linux-specific constants in resource moduleChristian Heimes2013-10-221-0/+22
* Issue #18520: Add a new PyStructSequence_InitType2() function, same thanVictor Stinner2013-07-221-3/+6
* Issue #17917: Use PyModule_AddIntMacro() instead of PyModule_AddIntConstant()Charles-Francois Natali2013-05-201-17/+17
* Issue #6083: Fix multiple segmentation faults occured when PyArg_ParseTupleSerhiy Storchaka2013-02-041-8/+25
|\
| * Issue #6083: Fix multiple segmentation faults occured when PyArg_ParseTupleSerhiy Storchaka2013-02-041-8/+25
* | alias resource.error to OSErrorBenjamin Peterson2011-12-101-11/+5
|/
* Include structseq.h in Python.h, and remove now-redundant includes in individ...Georg Brandl2010-11-301-1/+0
* Issue #10440: Support RUSAGE_THREAD as a constant in the resource module.Antoine Pitrou2010-11-171-0/+4
* Recorded merge of revisions 81029 via svnmerge fromAntoine Pitrou2010-05-091-194/+194
* Clean up some int/long detection remnants in resource module.Mark Dickinson2009-05-081-4/+2
* Merged revisions 72479 via svnmerge fromMark Dickinson2009-05-081-6/+6
* Implement PEP 3121: new module initialization and finalization API.Martin v. Löwis2008-06-111-3/+17
* Cleanup: Replaced most PyInt_ aliases with PyLong_ and disabled the aliases i...Christian Heimes2007-12-021-19/+19
* Four months of trunk changes (including a few releases...)Thomas Wouters2006-12-131-0/+4
* Partially merge trunk into p3yk. The removal of Mac/Tools is confusing svnThomas Wouters2006-06-081-5/+2
* Merge p3yk branch with the trunk up to revision 45595. This breaks a fairThomas Wouters2006-04-211-1/+6
* Check return result from Py_InitModule*(). This API can fail.Neal Norwitz2006-01-191-0/+2
* Patch #1005568: Use _SC_PAGESIZE on Irix.Martin v. Löwis2004-08-121-0/+5
* Get build working with pre-C99 compilersNeal Norwitz2003-03-301-1/+1
* Patch #650412: Check whether the address of flock and getpagesizeMartin v. Löwis2003-03-301-1/+13
* Rename LONG_LONG to PY_LONG_LONG. Fixes #710285.Martin v. Löwis2003-03-291-3/+3
* Fix SF #632624, test_resource failure on alpha/64bitNeal Norwitz2002-11-021-1/+1
* Excise DL_EXPORT/DL_IMPORT from Modules/*. Required adding a prototypeMark Hammond2002-08-021-1/+1
* Patch #568124: Add doc string macros.Martin v. Löwis2002-06-131-6/+6