diff options
author | l0rb <lorbritzer@yahoo.de> | 2019-11-06 21:21:40 (GMT) |
---|---|---|
committer | Vinay Sajip <vinay_sajip@yahoo.co.uk> | 2019-11-06 21:21:40 (GMT) |
commit | 519cb8772a9745b1c7d8218cabcd2f96ceda4d62 (patch) | |
tree | edd2f5254bd9092e5216e33c69d9b2e57ff3d7c0 /Misc | |
parent | 5c0c325453a175350e3c18ebb10cc10c37f9595c (diff) | |
download | cpython-519cb8772a9745b1c7d8218cabcd2f96ceda4d62.zip cpython-519cb8772a9745b1c7d8218cabcd2f96ceda4d62.tar.gz cpython-519cb8772a9745b1c7d8218cabcd2f96ceda4d62.tar.bz2 |
bpo-38716: stop rotating handlers from setting inherited namer and rotator to None (GH-17072)
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/NEWS.d/next/Library/2019-11-06-15-58-07.bpo-38716.R3uMLT.rst | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Library/2019-11-06-15-58-07.bpo-38716.R3uMLT.rst b/Misc/NEWS.d/next/Library/2019-11-06-15-58-07.bpo-38716.R3uMLT.rst new file mode 100644 index 0000000..906eb6b --- /dev/null +++ b/Misc/NEWS.d/next/Library/2019-11-06-15-58-07.bpo-38716.R3uMLT.rst @@ -0,0 +1 @@ +logging: change RotatingHandler namer and rotator to class-level attributes. This stops __init__ from setting them to None in the case where a subclass defines them with eponymous methods. |