summaryrefslogtreecommitdiffstats
path: root/Lib/test/test_logging.py
Commit message (Collapse)AuthorAgeFilesLines
* Issue #23207: Improved kwarg validation.Vinay Sajip2015-03-181-0/+4
|
* Issue #23211: Fix patch for 3.4 differences.Ned Deily2015-01-181-3/+3
|
* Issue #23211: Workaround test_logging failure on some OS X 10.6 systems:Ned Deily2015-01-181-2/+2
| | | | | getaddrinfo("localhost") can fail depending on the name server configuration, use "127.0.0.0" instead.
* add context parameter to HTTPHandler (closes #22788)Benjamin Peterson2014-11-241-14/+5
|
* PEP 476: enable HTTPS certificate verification by default (#22417)Benjamin Peterson2014-11-031-37/+18
| | | | Patch by Alex Gaynor with some modifications by me.
* Issue #22386: fixed regression.Vinay Sajip2014-09-111-0/+4
|
* Issue #21636: Fix test_logging, skip UNIX stream (AF_UNIX) tests on Windows.Victor Stinner2014-06-021-10/+12
| | | | Patch written by Claudiu Popa.
* Issue #19936: Added executable bits or shebang lines to Python scripts whichSerhiy Storchaka2014-01-161-2/+0
|\ | | | | | | | | | | | | requires them. Disable executable bits and shebang lines in test and benchmark files in order to prevent using a random system python, and in source files of modules which don't provide command line interface. Fixed shebang lines in the unittestgui and checkpip scripts.
| * Issue #19936: Added executable bits or shebang lines to Python scripts whichSerhiy Storchaka2014-01-161-2/+0
| | | | | | | | | | | | | | requires them. Disable executable bits and shebang lines in test and benchmark files in order to prevent using a random system python, and in source files of modules which don't provide command line interface. Fixed shebang line to use python3 executable in the unittestgui script.
* | Closes #20242: Merged fix from 3.3.Vinay Sajip2014-01-131-0/+16
|\ \ | |/
| * Issue #20242: Fixed basicConfig() format strings for the alternative ↵Vinay Sajip2014-01-131-0/+16
| | | | | | | | formatting styles.
* | Issue #20037: Avoid crashes when doing text I/O late at interpreter shutdown.Antoine Pitrou2013-12-211-0/+20
| |
* | Added some diagnostics to help with #19690.Vinay Sajip2013-12-031-1/+12
| |
* | Closes #19665: Merged fi from 3.3.Vinay Sajip2013-12-031-2/+4
|\ \ | |/
| * Issue #19665: Increased timeout for SMTPHandler test.Vinay Sajip2013-12-031-2/+4
| |
* | Updated test_logging so that errors don't occur in the absence of threading.Vinay Sajip2013-09-271-10/+15
| |
* | Streamlined logging tests by moving common code to a helper function.Vinay Sajip2013-09-271-16/+10
| |
* | logging: added support for Unix domain sockets to SocketHandler and ↵Vinay Sajip2013-09-271-16/+102
| | | | | | | | DatagramHandler.
* | Avoid test_logging failure when run after test_unittest, by renaming a ↵Antoine Pitrou2013-09-141-1/+1
| | | | | | | | conflicting logger
* | Issue #18743: Fix references to non-existant "StringIO" moduleSerhiy Storchaka2013-08-291-9/+1
|\ \ | |/ | | | | in docstrings and comments.
| * Issue #18743: Fix references to non-existant "StringIO" moduleSerhiy Storchaka2013-08-291-6/+1
| | | | | | | | in docstrings and comments.
* | Closes #11959: SMTPServer and SMTPChannel now take an optional map, use of ↵Vinay Sajip2013-06-071-61/+3
| | | | | | | | which avoids affecting global state.
* | Closes #18046: Simplified logging internals relating to levels and their ↵Vinay Sajip2013-05-251-3/+6
| | | | | | | | names. Thanks to Alex Gaynor for the patch.
* | Re-enabled skipped test.Vinay Sajip2013-05-181-2/+2
| |
* | Diagnostics collected, test disabled for now.Vinay Sajip2013-05-111-1/+1
| |
* | Re-enabled test with more diagnostics.Vinay Sajip2013-05-111-1/+3
| |
* | Skip failing test pending investigation.Vinay Sajip2013-05-071-0/+1
| |
* | Issue #17713: Added failure diagnostics to test.Vinay Sajip2013-04-151-1/+5
| |
* | Issue #17713: additional tweak to test.Vinay Sajip2013-04-141-1/+1
| |
* | Closes #17713: Fixed bug in test_compute_rollover_weekly_attime.Vinay Sajip2013-04-141-26/+33
| |
* | Issue #17713: Test temporarily skipped while failure investigated.Vinay Sajip2013-04-131-0/+1
| |
* | Closed #9556: Allowed specifying a time-of-day for a ↵Vinay Sajip2013-04-121-0/+42
| | | | | | | | TimedRotatingFileHandler to rotate.
* | Closes #17540: Merged fix from 3.3.Vinay Sajip2013-03-291-1/+4
|\ \ | |/
| * Issue #17540: Added style to Formatter configuration by dict.Vinay Sajip2013-03-291-1/+4
| |
* | Closes #17521: Merged fix from 3.3.Vinay Sajip2013-03-231-2/+32
|\ \ | |/
| * Issue #17521: Merged fix from 3.2.Vinay Sajip2013-03-231-2/+32
| |\
| | * Issue #17521: Corrected non-enabling of logger following two calls to ↵Vinay Sajip2013-03-231-2/+32
| | | | | | | | | | | | fileConfig().
* | | Closes #17508: Merged fix from 3.3.Vinay Sajip2013-03-221-2/+37
|\ \ \ | |/ /
| * | Issue #17508: Merged fix from 3.2.Vinay Sajip2013-03-221-2/+37
| |\ \ | | |/
| | * Issue #17508: Handled out-of-order handler configuration correctly.Vinay Sajip2013-03-221-2/+36
| | |
| | * Closes #16521: Improved error handling for basicConfig(), added tests for same.Vinay Sajip2012-11-251-2/+158
| | |
| | * Added test skip under Windows, as not applicable there.Vinay Sajip2012-05-311-0/+1
| | |
* | | Issue #17384: Consolidated cleanup operations in tests.Vinay Sajip2013-03-081-4/+14
| | |
* | | Closes #17313: Deleted test file created by test_logging.Vinay Sajip2013-02-271-0/+2
| | |
* | | Replace IOError with OSError (#16715)Andrew Svetlov2012-12-251-3/+3
| | |
* | | Issue #16717: get rid of socket.error, replace with OSErrorAndrew Svetlov2012-12-181-4/+4
| | |
* | | Issue #16704: Get rid of select.error in stdlib. Use OSError instead.Andrew Svetlov2012-12-171-1/+1
| | |
* | | Allow configuration of handler properties.Vinay Sajip2012-11-151-0/+35
| | |
* | | Try to fix issue #16264 (test_logging failure on some buildbots).Antoine Pitrou2012-10-211-1/+4
| | |
* | | test_logging.py: where needed use unittest's assertGreater, assertLesser, ↵Giampaolo Rodola'2012-10-171-8/+8
| | | | | | | | | | | | assertIs rather than assertTrue (also in order to debug issue 16264)