commit | a1e627d61c57fefbfdabf308b33de75e08ca5374 | [log] [tgz] |
---|---|---|
author | Fred Drake <fdrake@acm.org> | Fri Sep 03 03:55:50 2010 +0000 |
committer | Fred Drake <fdrake@acm.org> | Fri Sep 03 03:55:50 2010 +0000 |
tree | 36e327d20096d27acd42a6bff049fd060bba21a3 | |
parent | 5cd2d8c7eca0a0a62ab58e8fa3b06d837ba6d6c1 [diff] [blame] |
fix output from RawConfigParser.write and ConfigParser.write for None values (http://bugs.python.org/issue7005)
diff --git a/Misc/NEWS b/Misc/NEWS index e1ff17a..3172e49 100644 --- a/Misc/NEWS +++ b/Misc/NEWS
@@ -36,6 +36,9 @@ Library ------- +- Issue #7005: Fixed output of None values for RawConfigParser.write and + ConfigParser.write. + - Issue #808164: Fixed socket.close to avoid references to globals, to avoid issues when socket.close is called from a __del__ method.