summaryrefslogtreecommitdiffstats
path: root/Misc/NEWS
diff options
context:
space:
mode:
authorGeorg Brandl <georg@python.org>2010-03-07 15:23:59 (GMT)
committerGeorg Brandl <georg@python.org>2010-03-07 15:23:59 (GMT)
commit21e99f492419f97b4e5818081440742ecfde269f (patch)
tree94ec0f7c638ae647ff6ff97962b7995b7d4d10ef /Misc/NEWS
parentc02bbe328df8d0edf646c56fb4b7748a54500e6c (diff)
downloadcpython-21e99f492419f97b4e5818081440742ecfde269f.zip
cpython-21e99f492419f97b4e5818081440742ecfde269f.tar.gz
cpython-21e99f492419f97b4e5818081440742ecfde269f.tar.bz2
#5341: more built-in vs builtin fixes.
Diffstat (limited to 'Misc/NEWS')
-rw-r--r--Misc/NEWS18
1 files changed, 9 insertions, 9 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index abf113e..1ea44d1 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -673,8 +673,8 @@ 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 an incorrect Py3k warning about order comparisons of
+ built-in functions and methods.
- Issue #6347: Include inttypes.h as well as stdint.h in pyport.h.
This fixes a build failure on HP-UX: int32_t and uint32_t are
@@ -778,7 +778,7 @@ Core and Builtins
correctly rounded.
- Issue #5787: object.__getattribute__(some_type, "__bases__") segfaulted on
- some builtin types.
+ some built-in types.
- Issue #1869: fix a couple of minor round() issues. round(5e15+1)
was giving 5e15+2; round(-0.0) was losing the sign of the zero.
@@ -3747,7 +3747,7 @@ Core and builtins
- Fixed a minor memory leak in dictobject.c. The content of the free
list was not freed on interpreter shutdown.
-- Limit free list of method and builtin function objects to 256
+- Limit free list of method and built-in function objects to 256
entries each.
- Patch #1953: Added ``sys._compact_freelists()`` and the C API
@@ -3881,7 +3881,7 @@ Core and builtins
- Fix warnings found by the new version of the Coverity checker.
-- The enumerate() builtin function is no longer bounded to sequences
+- The enumerate() built-in function is no longer bounded to sequences
smaller than LONG_MAX. Formerly, it raised an OverflowError. Now,
automatically shifts from ints to longs.
@@ -3942,7 +3942,7 @@ Core and builtins
- Deprecate BaseException.message as per PEP 352.
- Issue #1303614: don't expose object's __dict__ when the dict is
- inherited from a builtin base.
+ inherited from a built-in base.
- When __slots__ are set to a unicode string, make it work the same as
setting a plain string, ie don't expand to single letter identifiers.
@@ -4851,7 +4851,7 @@ Library
GNU modes.
- Bug #1586448: the compiler module now emits the same bytecode for
- list comprehensions as the builtin compiler, using the LIST_APPEND
+ list comprehensions as the built-in compiler, using the LIST_APPEND
opcode.
- Fix codecs.EncodedFile which did not use file_encoding in 2.5.0, and
@@ -5083,7 +5083,7 @@ Extension Modules
- Bug #1653736: Complain about keyword arguments to time.isoformat.
- Bug #1486663: don't reject keyword arguments for subclasses of
- builtin types.
+ built-in types.
- Patch #1610575: The struct module now supports the 't' code, for C99
_Bool.
@@ -5266,7 +5266,7 @@ Documentation
- Bug #1629566: clarify the docs on the return values of parsedate()
and parsedate_tz() in email.utils and rfc822.
-- Patch #1671450: add a section about subclassing builtin types to the
+- Patch #1671450: add a section about subclassing built-in types to the
"extending and embedding" tutorial.
- Bug #1629125: fix wrong data type (int -> Py_ssize_t) in PyDict_Next