summaryrefslogtreecommitdiffstats
path: root/Lib/test/test_logging.py
Commit message (Collapse)AuthorAgeFilesLines
...
* SF patch #761519: Fixes for bugs 760703 and 757821Raymond Hettinger2003-06-271-2/+1
| | | | | | | | | | | | | | | | | | SF bug #760703: SocketHandler and LogRecord don't work well together SF bug #757821: logging module docs Applied Vinay Sajip's patch with a few minor fixups and a NEWS item. Patched __init__.py - added new function makeLogRecord (for bug report 760703). Patched handlers.py - updated some docstrings and deleted some old commented-out code. Patched test_logging.py to make use of makeLogRecord. Patched liblogging.tex to fill documentation gaps (both 760703 and bug 757821).
* Change from a threading.Condition object to a threading.Event object forBrett Cannon2003-04-301-6/+3
| | | | | | | signalling when the TCP server is done. Should hopefully solve hanging issues for Solaris 8 & 9. Solves the apparent hanging issue with OS X. Closes patch #729988 .
* Merge back from r23b1-branchGuido van Rossum2003-04-261-0/+2
|
* New version from Vinaj, should solve the threading problems (hopefully).Guido van Rossum2003-04-251-5/+16
|
* SF patch #687683, Patches to logging (updates from Vinay)Neal Norwitz2003-02-181-2/+4
| | | | | | Mostly rename WARN -> WARNING Other misc tweaks Update tests (not in original patch)
* Fix from Vinaj for the "writing to closed file" errors. SF 670390.Guido van Rossum2003-01-211-10/+14
|
* On Mac OS X calling setlocale will raise locale.Error. This isn't fatal,Jack Jansen2003-01-151-1/+2
| | | | so just continue testing. Fixes #668787.
* At least one Solaris box in the snake farm only supports "C" locale.Neal Norwitz2003-01-051-1/+5
| | | | Adding try/except allows the test to pass
* SF #660795Neal Norwitz2003-01-021-0/+459
Add a test for logging from Vinay Sajip (module author)