summaryrefslogtreecommitdiffstats
path: root/Modules/syslogmodule.c
Commit message (Expand)AuthorAgeFilesLines
* gh-110964: Remove private _PyArg functions (#110966)Victor Stinner2023-10-171-0/+5
* gh-99113: Add Py_MOD_PER_INTERPRETER_GIL_SUPPORTED (gh-104205)Eric Snow2023-05-051-0/+1
* gh-99127: Allow some features of syslog to the main interpreter only (gh-99128)Dong-hee Na2022-11-291-2/+27
* gh-99300: Replace Py_INCREF() with Py_NewRef() (#99513)Victor Stinner2022-11-161-2/+1
* gh-98178: syslog() is not thread-safe on macOS (#98213)Victor Stinner2022-10-131-0/+5
* gh-95011: Migrate syslog module to Argument Clinic (GH-95012)Noam Cohen2022-10-081-72/+96
* Add more syslog tests (GH-97953)Serhiy Storchaka2022-10-071-1/+1
* gh-95041: Fail syslog.syslog in case inner call to syslog.openlog fails (GH-9...Noam Cohen2022-07-261-1/+7
* gh-95041: Fix several minor issues in syslog.openlog() (GH-95058)Serhiy Storchaka2022-07-261-24/+33
* gh-91320: Use _PyCFunction_CAST() (#92251)Victor Stinner2022-05-031-1/+1
* Fix typos in the Modules directory (GH-28761)Christian Clauss2021-10-071-1/+1
* bpo-1635741: Port syslog module to multiphase initialization (GH-19907)Dong-hee Na2020-05-051-59/+63
* bpo-40268: Remove unused osdefs.h includes (GH-19532)Victor Stinner2020-04-151-1/+1
* bpo-39184: Add audit events to functions in `fcntl`, `msvcrt`, `os`, `resourc...Saiyang Gou2020-02-131-0/+14
* bpo-38361: syslog: fixed making default "ident" from sys.argv[0] (GH-16557)Václav Bartoš2020-01-141-1/+1
* bpo-33012: Fix invalid function cast warnings with gcc 8. (GH-6749)Serhiy Storchaka2018-11-271-1/+1
* Issue #28999: Use Py_RETURN_NONE, Py_RETURN_TRUE and Py_RETURN_FALSE whereverSerhiy Storchaka2017-01-231-4/+2
* Added the const qualifier to char* variables that refer to readonly internalSerhiy Storchaka2016-11-201-1/+1
* Replaced outdated macros _PyUnicode_AsString and _PyUnicode_AsStringAndSizeSerhiy Storchaka2016-11-201-2/+2
* Issue #20437: Fixed 22 potential bugs when deleting objects references.Serhiy Storchaka2014-02-091-2/+1
|\
| * Issue #20437: Fixed 21 potential bugs when deleting objects references.Serhiy Storchaka2014-02-091-2/+1
* | Issue #19512, #19515: remove shared identifiers, move identifiers where theyVictor Stinner2013-11-071-1/+1
* | Issue #19512: add some common identifiers to only create common strings once,Victor Stinner2013-11-061-1/+1
* | Issue #17917: Use PyModule_AddIntMacro() instead of PyModule_AddIntConstant()Charles-Francois Natali2013-05-201-33/+33
|/
* #14416: conditionally add LOG_AUTHPRIV facility and LOG_ODELAY to syslog.R David Murray2012-03-291-0/+8
* Fix misuse of PyUnicode_GET_SIZE, use PyUnicode_GET_LENGTH insteadVictor Stinner2011-10-111-5/+3
* Implement PEP 393.Martin v. Löwis2011-09-281-6/+8
* Issue #6697: Fixed instances of _PyUnicode_AsString() result not checked for ...Alexander Belopolsky2010-12-081-8/+17
* Recorded merge of revisions 81029 via svnmerge fromAntoine Pitrou2010-05-091-212/+212
* Porting commit 80458 to python 3Sean Reifscheider2010-04-251-5/+10
* Port of issue8451 to python3: Syslog use sys.argv[0] for ident.Sean Reifscheider2010-04-231-15/+90
* Rename PyUnicode_AsString -> _PyUnicode_AsString andMarc-André Lemburg2008-08-071-2/+2
* Implement PEP 3121: new module initialization and finalization API.Martin v. Löwis2008-06-111-3/+17
* Merged revisions 60990-61002 via svnmerge fromChristian Heimes2008-02-231-2/+3
* Cleanup: Replaced most PyInt_ aliases with PyLong_ and disabled the aliases i...Christian Heimes2007-12-021-3/+3
* Whoops, not sure how I screwed up the name. Now builds and passes the test.Neal Norwitz2007-08-251-2/+2
* Use unicode and add a "test" for syslogNeal Norwitz2007-08-251-7/+15
* Partially merge trunk into p3yk. The removal of Mac/Tools is confusing svnThomas Wouters2006-06-081-4/+2
* Check return result from Py_InitModule*(). This API can fail.Neal Norwitz2006-01-191-0/+2
* SF bug #1086555: refcount problem in syslogRaymond Hettinger2004-12-161-3/+4
* Excise DL_EXPORT/DL_IMPORT from Modules/*. Required adding a prototypeMark Hammond2002-08-021-1/+1
* Use the PyModule_Add*() APIs instead of manipulating the module dictFred Drake2002-04-011-45/+32
* Do the absolute minimal amount of modifications to eradicateBarry Warsaw2000-09-011-4/+0
* Bunch of minor ANSIfications: 'void initfunc()' -> 'void initfunc(void)',Thomas Wouters2000-07-211-1/+1
* Spelling fixes supplied by Rob W. W. Hooft. All these are fixes in eitherThomas Wouters2000-07-161-1/+1
* ANSI-ficationPeter Schneider-Kamp2000-07-101-22/+7
* Massive patch by Skip Montanaro to add ":name" to as manyGuido van Rossum2000-02-291-3/+3
* Add DL_EXPORT() to all modules that could possibly be usedGuido van Rossum1998-12-041-1/+1
* Changes for BeOS, QNX and long long, by Chris Herborth.Guido van Rossum1998-08-041-0/+2
* Fix by Sean Reifschneider:Guido van Rossum1998-05-081-25/+38