summaryrefslogtreecommitdiffstats
path: root/Modules/syslogmodule.c
Commit message (Collapse)AuthorAgeFilesLines
* 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
| | | | | | | - When facility not specified to syslog() method, use default from openlog() (This is how it was claimed to work in the documentation) - Potential resource leak of o_ident, now cleaned up in closelog() - Minor comment accuracy fix.
* Add LOG_SYSLOG if defined.Guido van Rossum1998-01-191-0/+3
|
* (puremodule.c): New module which exports the Purify and Quantify C APIBarry Warsaw1997-01-171-4/+7
| | | | | | | | | | | to Python. Minimal documentation is included in comments at the top of the file, and in the Misc/PURIFY.README file. Note that this module must be statically linked since Pure doesn't provide shared stubs libraries. (Setup.in): Added commented template for pure module (syslogmodule.c): ins() function wasn't declared static.
* Formatting changes, plus memory management in initsyslog()Barry Warsaw1997-01-091-90/+102
|
* Keep gcc -Wall happy.Guido van Rossum1996-12-051-1/+1
|
* Some NeXT changes (default certain symbols to others)Guido van Rossum1996-07-301-0/+12
|
* changes by Steve CliftGuido van Rossum1995-10-111-80/+92
|
* cosmetic changes so these modules will work with the strict new naming schemeGuido van Rossum1995-01-101-4/+1
|
* Lance has converted his modules to the new naming conventions, andGuido van Rossum1994-08-301-114/+115
| | | | | contributed a curses interface. Setup.in uses .c instead of .o now.
* Added some names to Setup.in, and added syslogmodule.c.Guido van Rossum1994-07-141-0/+199
posixmodule.c: use pclose, not fclose! selectmodule.c: trap negative fileno's, change some error messages. stropmodule.c: change semantics of rindex to match string.py.