summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorBarry Warsaw <barry@python.org>2009-09-30 15:53:33 (GMT)
committerBarry Warsaw <barry@python.org>2009-09-30 15:53:33 (GMT)
commit2599a1e79dee97ae6b6e8b7f42fbfa1d91b1a5e7 (patch)
treef9a94c2601cd124a61e3ea25258fe7eb073d64e6 /Misc
parent2a0274ddbc9255857ab48b9ca1ebad98c481f686 (diff)
downloadcpython-2599a1e79dee97ae6b6e8b7f42fbfa1d91b1a5e7.zip
cpython-2599a1e79dee97ae6b6e8b7f42fbfa1d91b1a5e7.tar.gz
cpython-2599a1e79dee97ae6b6e8b7f42fbfa1d91b1a5e7.tar.bz2
Fixed a unicode name.
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS10
1 files changed, 5 insertions, 5 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 996f5b6..b8aa760 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -45,11 +45,11 @@ Core and Builtins
- Issue #4618: When unicode arguments are passed to print(), the default
separator and end should be unicode also.
-- Issue #6119: Fixed a incorrect Py3k warning about order comparisons of builtin
- functions and methods.
+- Issue #6119: Fixed a incorrect Py3k warning about order comparisons of
+ builtin functions and methods.
- 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 #6089: str.format can raise SystemError with certain invalid
field specifiers.
@@ -264,8 +264,8 @@ Library
- Issue #5977: distutils build_ext.get_outputs was not taking into account the
inplace option. Initial patch by kxroberto.
-- Issue #5984: distutils.command.build_ext.check_extensions_list checks were broken
- for old-style extensions.
+- Issue #5984: distutils.command.build_ext.check_extensions_list checks were
+ broken for old-style extensions.
- Issue #5854: Updated __all__ to include some missing names and remove some
names which should not be exported.