summaryrefslogtreecommitdiffstats
path: root/Lib/test/test_logging.py
Commit message (Expand)AuthorAgeFilesLines
* [3.12] gh-116263: Do not rollover empty files in RotatingFileHandler (GH-1227...Miss Islington (bot)2024-09-061-3/+51
* [3.12] gh-121723: Relax constraints on queue objects for `logging.handlers.Qu...Miss Islington (bot)2024-08-021-21/+86
* [3.12] gh-120868: Fix breaking change in `logging.config` when using `QueueHa...Miss Islington (bot)2024-06-281-0/+45
* [3.12] gh-119819: Conditional skip of logging tests that require multiprocess...Miss Islington (bot)2024-06-151-3/+2
* [3.12] gh-119819: Update logging configuration to support joinable multiprocā...Miss Islington (bot)2024-06-051-2/+6
* [3.12] gh-119819: Update test to skip if _multiprocessing is unavailable. (GH...Miss Islington (bot)2024-06-041-1/+1
* [3.12] gh-119819: Fix regression to allow logging configuration with multiprā...Miss Islington (bot)2024-06-041-0/+26
* [3.12] gh-118868: logging QueueHandler fix passing of kwargs (GH-118869) (GH-...Miss Islington (bot)2024-06-041-0/+29
* [3.12] gh-119064: Use os_helper.FakePath instead of pathlib.Path in tests (GH...Serhiy Storchaka2024-05-161-3/+3
* [3.12] gh-117975: Ensure flush level is checked when configuring a logging Me...Miss Islington (bot)2024-04-171-0/+29
* [3.12] gh-90535: Fix support of interval>1 in logging.TimedRotatingFileHandle...Miss Islington (bot)2024-03-181-34/+166
* [3.12] gh-112536: Add TSAN build on Github Actions (GH-116872)Antoine Pitrou2024-03-181-0/+4
* [3.12] gh-88352: Make TimedRotatingFileHandler tests more stable (GH-116409) ...Miss Islington (bot)2024-03-111-38/+17
* [3.12] gh-115809: Improve TimedRotatingFileHandler.getFilesToDelete() (GH-115...Miss Islington (bot)2024-03-031-9/+28
* [3.12] gh-88352: Fix logging.TimedRotatingFileHandler (GH-116191) (GH-116208)Miss Islington (bot)2024-03-011-2/+346
* [3.12] gh-93205: When rotating logs with no namer specified, match whole exte...Miss Islington (bot)2024-02-211-0/+37
* [3.12] gh-115233: Fix an example in the Logging Cookbook (GH-115325) (GH-115355)Serhiy Storchaka2024-02-121-8/+99
* [3.12] gh-108303: Move `smtpd` to `test.support` (GH-114368) (#114427)Miss Islington (bot)2024-01-221-3/+1
* [3.12] gh-113692: skip a test if multiprocessing isn't available. (GH-113704)...Miss Islington (bot)2024-01-091-1/+3
* [3.12] gh-111615: Fix regression in QueueHandler configuration. (GH-111638) (...Miss Islington (bot)2023-12-271-0/+19
* [3.12] gh-110875: Handle '.' properties in logging formatter configuration cā...Miss Islington (bot)2023-11-091-1/+37
* [3.12] gh-110656: Fix logging test_post_fork_child_no_deadlock() if ASAN (GH-...Miss Islington (bot)2023-10-111-0/+8
* [3.12] gh-108303: Move all certificates to `Lib/test/certdata/` (GH-109489) (...Miss Islington (bot)2023-10-101-1/+1
* [3.12] gh-108834: Sync libregrtest with the main branch (#108966)Victor Stinner2023-09-081-0/+1
* [3.12] gh-107237: Fix test_udp_reconnection() of test_logging (GH-107238) (#1...Miss Islington (bot)2023-07-251-4/+4
* gh-103606: raise RuntimeError if config file is invalid or empty (#104701)Prince Roshan2023-05-201-2/+2
* gh-103606: Improve error message from logging.config.FileConfig (GH-103628)Prince Roshan2023-05-181-0/+36
* gh-103357: Add logging.Formatter defaults support to logging.config fileConfi...Bar Harel2023-04-121-1/+107
* gh-102799: use sys.exception() instead of sys.exc_info() in tests (#103293)Irit Katriel2023-04-061-2/+1
* gh-84559: Remove the new multiprocessing warning, too disruptive. (#101551)Gregory P. Smith2023-02-031-3/+2
* GH-84559: Deprecate fork being the multiprocessing default. (#100618)Gregory P. Smith2023-02-021-2/+3
* gh-72719: Remove asyncore and asynchat modules (#96580)Nikita Sobolev2022-11-081-3/+1
* gh-90195: Unset logger disabled flag when configuring it. (GH-96530)Vinay Sajip2022-09-031-0/+29
* gh-89258: Add a getChildren() method to logging.Logger. (GH-96444)Vinay Sajip2022-08-311-0/+14
* gh-89047: Fix msecs computation so you never end up with 1000 msecs. (GH-96340)Vinay Sajip2022-08-271-0/+8
* gh-95804: Respect MemoryHandler.flushOnClose in logging shutdown. (GH-95857)David Bonner2022-08-101-0/+29
* gh-93243: Make smtpd private before porting its users (GH-93246)Oleg Iarygin2022-08-061-1/+2
* bpo-46755: Don't log stack info twice in QueueHandler (GH-31355)Erik Montnemery2022-07-051-1/+3
* gh-93761: Fix test_logging test_config_queue_handler() race condition (#93952)Victor Stinner2022-06-191-0/+3
* gh-93852: Add test.support.create_unix_domain_name() (#93914)Victor Stinner2022-06-171-21/+6
* test_logging: Fix BytesWarning in SysLogHandlerTest (GH-93920)Victor Stinner2022-06-171-1/+1
* Call busy_retry() and sleeping_retry() with error=True (#93871)Victor Stinner2022-06-161-3/+2
* Use support.sleeping_retry() and support.busy_retry() (#93848)Victor Stinner2022-06-151-6/+7
* gh-93761: Fix test to avoid simple delay when synchronizing. (GH-93779)Vinay Sajip2022-06-141-3/+5
* gh-92592: Allow logging filters to return a LogRecord. (GH-92591)Adrian Garcia Badaracco2022-06-071-0/+45
* gh-93162: test_config_queue_handler requires threading (GH-93572)Christian Heimes2022-06-071-0/+1
* gh-93162: Add ability to configure QueueHandler/QueueListener together (GH-93...Vinay Sajip2022-06-071-19/+127
* gh-84461: Skip new async logging tests on Emscripten (GH-93427)Christian Heimes2022-06-021-0/+3
* gh-91513: Tidied up a test and did minor refactoring around test filename gen...Vinay Sajip2022-05-261-23/+25
* gh-91513: Add 'asyncio' taskName to logging LogRecord attributes. (GH-93193)jackh-ncl2022-05-261-4/+62