summaryrefslogtreecommitdiffstats
path: root/Lib/logging/__init__.py
Commit message (Expand)AuthorAgeFilesLines
* Merged revisions 66141,66145,66150,66180,66211,66217,66219,66226,66231,66244,...Benjamin Peterson2008-09-081-1/+1
* Merged revisions 66045,66048-66049,66053,66060,66062-66063,66065,66067,66071-...Benjamin Peterson2008-09-021-5/+10
* Merged revisions 65824 via svnmerge fromBenjamin Peterson2008-08-181-1/+1
* Merged revisions 64119,64147,64150,64165,64219-64221,64229-64230,64233,64235,...Amaury Forgeot d'Arc2008-06-171-2/+3
* Merged revisions 64125 via svnmerge fromBenjamin Peterson2008-06-111-1/+1
* Rename thread to _thread and dummy_thread to _dummy_thread. Issue #2875.Georg Brandl2008-05-251-1/+1
* Merged revisions 60481,60485,60489-60492,60494-60496,60498-60499,60501-60503,...Christian Heimes2008-02-171-0/+4
* Merged revisions 60234-60244 via svnmerge fromChristian Heimes2008-01-241-5/+20
* Merged revisions 60043-60052 via svnmerge fromChristian Heimes2008-01-181-5/+95
* Remove several mentions of old Python versions that don't apply anymore.Georg Brandl2008-01-051-3/+0
* Merged revisions 58221-58741 via svnmerge fromGuido van Rossum2007-11-011-8/+11
* Patch# 1258 by Christian Heimes: kill basestring.Guido van Rossum2007-10-161-1/+1
* Raise statement normalization in Lib/.Collin Winter2007-08-301-5/+5
* Merged revisions 57221-57391 via svnmerge fromGuido van Rossum2007-08-241-15/+3
* SF patch# 1770008 by Christian Heimes (plus some extras).Guido van Rossum2007-08-091-2/+2
* Merged revisions 56020-56124 via svnmerge fromGuido van Rossum2007-06-301-2/+2
* Merged revisions 55795-55816 via svnmerge fromGuido van Rossum2007-06-071-7/+9
* Merged revisions 55631-55794 via svnmerge fromGuido van Rossum2007-06-061-1/+1
* Remove functions in string module that are also string methods. Also remove:Neal Norwitz2007-04-171-6/+6
* Merged revisions 53623-53858 via svnmerge fromThomas Wouters2007-02-231-5/+5
* Rip out 'long' and 'L'-suffixed integer literals.Guido van Rossum2007-01-151-1/+1
* Merged revisions 53304-53433,53435-53450 via svnmerge fromThomas Wouters2007-01-151-9/+18
* Merged revisions 53005-53303 via svnmerge fromThomas Wouters2007-01-091-3/+3
* Four months of trunk changes (including a few releases...)Thomas Wouters2006-12-131-4/+5
* Killed the <> operator. You must now use !=.Guido van Rossum2006-08-241-1/+2
* Merge current trunk into p3yk. This includes the PyNumber_Index API change,Thomas Wouters2006-08-211-2/+2
* More has_key() fixes.Guido van Rossum2006-08-191-3/+3
* Much-needed merge (using svnmerge.py this time) of trunk changes into p3yk.Thomas Wouters2006-05-271-1/+1
* Merge p3yk branch with the trunk up to revision 45595. This breaks a fairThomas Wouters2006-04-211-1/+1
* Merge part of the trunk changes into the p3yk branch. This merges from 43030Thomas Wouters2006-04-211-2/+5
* More apply() cleanupNeal Norwitz2006-03-171-2/+2
* Remove apply()Neal Norwitz2006-03-171-14/+14
* Added logThreads and logProcesses to allow conditional omission of logging th...Vinay Sajip2006-03-131-2/+12
* Added function name to LogRecord.Vinay Sajip2006-02-091-5/+8
* Propagate exceptions from shutdown() if raiseExceptions is not set.Vinay Sajip2006-02-091-6/+14
* Removed defensive test in Handler.closeVinay Sajip2006-02-071-4/+3
* Get test_logging to not hang when running under regrtest.py -R ::Neal Norwitz2006-02-051-1/+2
* Exception handling now raises KeyboardInterrupt and SystemExit rather than pa...Vinay Sajip2005-10-311-0/+2
* One-off "No handlers..." error message only raised if raiseExceptions is set.Vinay Sajip2005-10-231-1/+1
* Don't use a string exception since it's deprecatedNeal Norwitz2005-10-211-1/+1
* Optimised Placeholders handling of child loggers by using a dict rather than ...Vinay Sajip2005-10-141-4/+8
* Fixed bug where the logging message was wrongly being demoted from Unicode to...Vinay Sajip2005-10-071-6/+8
* Added lock acquisition around handler removal from loggerVinay Sajip2005-09-161-1/+5
* Added _handlerList to allow shutdown to flush and close handlers in reverse o...Vinay Sajip2005-09-081-1/+4
* Changed _srcfile determination to support py2exe.Vinay Sajip2005-09-021-1/+3
* Added threadName and now using re-entrant lockVinay Sajip2005-03-311-2/+5
* Added optional encoding argument to file handlers. Made traceback import unco...Vinay Sajip2005-03-131-9/+19
* Improved frame handling for 1.5.2, and now return func from findCaller (not a...Vinay Sajip2005-02-181-9/+20
* Fixed bug in handling of args in LogRecord.__init__.Vinay Sajip2004-10-211-1/+1
* Changed handling of args in LogRecord.__init__.Vinay Sajip2004-10-201-2/+17