summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBenjamin Peterson <benjamin@python.org>2009-07-12 23:56:18 +0000
committerBenjamin Peterson <benjamin@python.org>2009-07-12 23:56:18 +0000
commit95e5ebe3e39c18cfe3697f3fcbb8600e3cf20d35 (patch)
treee9d8d2cf79d43c06a18feac9d10f1e19d2d5187d
parent1944d7e724a73bec8ed4ce05fca22d93690daad2 (diff)
downloadcpython-git-95e5ebe3e39c18cfe3697f3fcbb8600e3cf20d35.tar.gz
change encoding to utf-8
-rw-r--r--Misc/NEWS4
1 files changed, 2 insertions, 2 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 9cfcb92068..28f09d495b 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -49,7 +49,7 @@ Core and Builtins
possible to update the lineno attribute of the current frame.
- Issue #5330: C functions called with keyword arguments were not reported by
- the various profiling modules (profile, cProfile). Patch by Hagen Fürstenau.
+ the various profiling modules (profile, cProfile). Patch by Hagen Fürstenau.
- Issue #5982: staticmethod and classmethod now expose the wrapped
function with __func__.
@@ -222,7 +222,7 @@ Core and Builtins
- Issue #4074: Change the criteria for doing a full garbage collection (i.e.
collecting the oldest generation) so that allocating lots of objects without
destroying them does not show quadratic performance. Based on a proposal by
- Martin von Löwis at
+ Martin von Löwis at
http://mail.python.org/pipermail/python-dev/2008-June/080579.html.
- Issue #4850: Change COUNT_ALLOCS variables to Py_ssize_t.