summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorVinay Sajip <vinay_sajip@yahoo.co.uk>2010-10-19 15:26:24 (GMT)
committerVinay Sajip <vinay_sajip@yahoo.co.uk>2010-10-19 15:26:24 (GMT)
commit062d56b1f04122cd631a1d0815d4505598a5183d (patch)
tree7caa69bec75de562fa7b1c02383390e04ac45f15 /Misc
parent7cd94b8aa2bff16d06b254b697c62d52a3f6f5fa (diff)
downloadcpython-062d56b1f04122cd631a1d0815d4505598a5183d.zip
cpython-062d56b1f04122cd631a1d0815d4505598a5183d.tar.gz
cpython-062d56b1f04122cd631a1d0815d4505598a5183d.tar.bz2
logging: Added _logRecordClass, getLogRecordClass, setLogRecordClass to increase flexibility of LogRecord creation.
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS3
1 files changed, 3 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 2f030c3..4b92ef6 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -34,6 +34,9 @@ Core and Builtins
Library
-------
+- logging: Added _logRecordClass, getLogRecordClass, setLogRecordClass to
+ increase flexibility of LogRecord creation.
+
- Issue #5117: Case normalization was needed on ntpath.relpath(). And
fixed root directory issue on posixpath.relpath(). (Ported working fixes
from ntpath)