summaryrefslogtreecommitdiffstats
path: root/Lib/test/test_logging.py
Commit message (Expand)AuthorAgeFilesLines
* [3.11] gh-90535: Fix support of interval>1 in logging.TimedRotatingFileHandle...Miss Islington (bot)2024-03-181-34/+166
* [3.11] gh-88352: Make TimedRotatingFileHandler tests more stable (GH-116409) ...Miss Islington (bot)2024-03-111-38/+17
* [3.11] gh-115809: Improve TimedRotatingFileHandler.getFilesToDelete() (GH-115...Miss Islington (bot)2024-03-031-9/+28
* [3.11] gh-88352: Fix logging.TimedRotatingFileHandler (GH-116191) (GH-116209)Miss Islington (bot)2024-03-011-2/+346
* [3.11] gh-93205: When rotating logs with no namer specified, match whole exte...Miss Islington (bot)2024-02-211-0/+37
* [3.11] gh-115233: Fix an example in the Logging Cookbook (GH-115325) (GH-1153...Miss Islington (bot)2024-02-121-8/+99
* [3.11] gh-110875: Handle '.' properties in logging formatter configuration co...Vinay Sajip2023-11-091-2/+40
* [3.11] gh-110656: Fix logging test_post_fork_child_no_deadlock() if ASAN (GH-...Miss Islington (bot)2023-10-111-0/+8
* [3.11] [3.12] gh-108303: Move all certificates to `Lib/test/certdata/` (GH-10...Miss Islington (bot)2023-10-101-1/+1
* [3.11] gh-108416: Mark slow but not CPU bound test methods with requires_reso...Serhiy Storchaka2023-09-051-0/+1
* [3.11] gh-107237: Fix test_udp_reconnection() of test_logging (#107238) (#107...Victor Stinner2023-07-251-4/+4
* [3.11] gh-103606: Improve error message from logging.config.FileConfig (GH-10...Prince Roshan2023-05-211-0/+36
* [3.11] gh-90195: Unset logger disabled flag when configuring it. (GH-96530) (...Vinay Sajip2022-09-031-2/+31
* [3.11] gh-89047: Fix msecs computation so you never end up with 1000 msecs. (...Miss Islington (bot)2022-08-271-0/+8
* [3.11] bpo-46755: Don't log stack info twice in QueueHandler (GH-31355) (GH-9...Miss Islington (bot)2022-07-051-1/+3
* test_logging: Fix BytesWarning in SysLogHandlerTest (GH-93920)Miss Islington (bot)2022-06-171-1/+1
* gh-90473: Decrease recursion limit and skip tests on WASI (GH-92803)Miss Islington (bot)2022-05-191-0/+2
* bpo-45046: Support context managers in unittest (GH-28045)Miss Islington (bot)2022-05-081-3/+1
* gh-92169: Use warnings_helper.import_deprecated() to import deprecated module...Hugo van Kemenade2022-05-031-4/+4
* bpo-40280: Detect missing threading on WASM platforms (GH-32352)Christian Heimes2022-04-071-0/+10
* bpo-45171: Remove tests of deprecated logger.warn(). (GH-32139)Jouke Witteveen2022-03-271-3/+0
* bpo-45171: Fix stacklevel handling in logging. (GH-28287)Jouke Witteveen2022-03-271-1/+12
* bpo-40280: Skip socket, fork, subprocess tests on Emscripten (GH-31986)Christian Heimes2022-03-221-0/+12
* bpo-40280: Skip more tests on Emscripten (GH-31947)Christian Heimes2022-03-171-1/+2
* bpo-41906: Accept built filters in dictConfig (GH-30756)Mario Corchero2022-01-241-0/+38
* bpo-46411: Remove unnecessary calls to sys.exc_info() in tests (GH-30638)Irit Katriel2022-01-181-2/+2
* bpo-46063: Add 'delay=True' to file handler initialization. (GH-30103)Vinay Sajip2021-12-141-1/+2
* bpo-46063: Improve algorithm for computing which rolled-over log file… (GH-...Vinay Sajip2021-12-141-2/+50
* Revert "bpo-28533: Remove asyncore, asynchat, smtpd modules (GH-29521)" (GH-2...Victor Stinner2021-12-071-2/+5
* bpo-28533: Remove asyncore, asynchat, smtpd modules (GH-29521)Victor Stinner2021-11-151-5/+2
* bpo-45401: Fix a resource warning in test_logging (GH-28864)Serhiy Storchaka2021-10-111-0/+1
* bpo-45401: Change shouldRollover() methods to only rollover regular f… (GH-...Vinay Sajip2021-10-101-0/+15
* bpo-45128: fixes `test_multiprocessing_fork` mysterious crash (GH-28387)Nikita Sobolev2021-09-191-3/+4
* bpo-45229: Remove test_main in many tests (GH-28405)Serhiy Storchaka2021-09-191-20/+6
* bpo-44291: Fix reconnection in logging.handlers.SysLogHandler (GH-26490)Kirill Pinchuk2021-08-051-0/+8
* bpo-44740: Lowercase "internet" and "web" where appropriate. (#27378)Mariusz Felisiak2021-07-261-1/+1
* bpo-42378: fixed log truncation on logging shutdown (GH-27310)andrei kulakov2021-07-251-4/+14
* bpo-44498: suppress DeprecationWarnings for asynchat, asyncore and smtpd in t...Irit Katriel2021-06-241-2/+5
* bpo-43858: Add logging.getLevelNamesMapping() (GH-26459)andrei kulakov2021-06-031-0/+8
* bpo-43651: Fix test_logging (GH-25715)Inada Naoki2021-04-291-2/+1
* bpo-43651: Fix EncodingWarning in tests. (GH-25655)Inada Naoki2021-04-291-13/+17
* bpo-43961: Fix test_logging.test_namer_rotator_inheritance() (GH-25684)Victor Stinner2021-04-281-1/+1
* bpo-43842: Fix race condition in test_logging SMTP test (GH-25436)Victor Stinner2021-04-161-2/+5
* bpo-43723: Fix deprecation error caused by thread.setDaemon() (GH-25361)Christian Heimes2021-04-121-2/+2
* bpo-43651: PEP 597: Fix EncodingWarning in some tests (GH-25189)Inada Naoki2021-04-061-15/+16
* bpo-42644: Validate values in logging.disable() (#23786)Matthias Bussonnier2020-12-161-0/+9
* bpo-26789: Fix logging.FileHandler._open() at exit (GH-23053)Victor Stinner2020-11-021-5/+38
* bpo-41739: Fix test_logging.test_race_between_set_target_and_flush() (GH-22655)Victor Stinner2020-10-111-8/+13
* Fix logging error message (GH-22410)Eric Larson2020-09-251-13/+20
* bpo-38762: Extend logging.test_multiprocessing to cover missing cases. (GH-22...Irit Katriel2020-09-081-6/+56