diff options
author | Christian Heimes <christian@cheimes.de> | 2008-01-04 03:08:33 (GMT) |
---|---|---|
committer | Christian Heimes <christian@cheimes.de> | 2008-01-04 03:08:33 (GMT) |
commit | 3f419afac56065233fd9a69db3b5e2d4c6113648 (patch) | |
tree | b133e159a1900497b779e3b8505858578887c6a3 /Doc/whatsnew/2.6.rst | |
parent | a34706f101a16eef8e36054d1f405f794d53ac79 (diff) | |
download | cpython-3f419afac56065233fd9a69db3b5e2d4c6113648.zip cpython-3f419afac56065233fd9a69db3b5e2d4c6113648.tar.gz cpython-3f419afac56065233fd9a69db3b5e2d4c6113648.tar.bz2 |
Merged revisions 59696-59702 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk
........
r59696 | amaury.forgeotdarc | 2008-01-04 03:04:15 +0100 (Fri, 04 Jan 2008) | 11 lines
Partial port of r59682 from py3k.
On Windows, when import fails to load a dll module, the message says
"error code 193" instead of a more informative text.
It turns out that FormatMessage needs additional parameters for some error codes.
For example: 193 means "%1 is not a valid Win32 application".
Since it is impossible to know which parameter to pass, we use
FORMAT_MESSAGE_IGNORE_INSERTS to get the raw message, which is still better
than the number.
........
r59698 | andrew.kuchling | 2008-01-04 03:26:00 +0100 (Fri, 04 Jan 2008) | 1 line
Typo fix
........
r59699 | andrew.kuchling | 2008-01-04 03:31:40 +0100 (Fri, 04 Jan 2008) | 1 line
Add math items; other edits
........
r59700 | christian.heimes | 2008-01-04 03:46:19 +0100 (Fri, 04 Jan 2008) | 1 line
Fixed refleak tests for _struct changes
........
r59701 | christian.heimes | 2008-01-04 03:54:42 +0100 (Fri, 04 Jan 2008) | 1 line
Added _struct._clearcache() for regression tests
........
Diffstat (limited to 'Doc/whatsnew/2.6.rst')
-rw-r--r-- | Doc/whatsnew/2.6.rst | 47 |
1 files changed, 44 insertions, 3 deletions
diff --git a/Doc/whatsnew/2.6.rst b/Doc/whatsnew/2.6.rst index 7bd9cbd..54be1e1 100644 --- a/Doc/whatsnew/2.6.rst +++ b/Doc/whatsnew/2.6.rst @@ -483,6 +483,32 @@ PEP 3119: Abstract Base Classes XXX +How to identify a file object? + +ABCs are a collection of classes describing various interfaces. +Classes can derive from an ABC to indicate they support that ABC's +interface. Concrete classes should obey the semantics specified by +an ABC, but Python can't check this; it's up to the implementor. + +A metaclass lets you declare that an existing class or type +derives from a particular ABC. You can even + +class AppendableSequence: + __metaclass__ = ABCMeta + +AppendableSequence.register(list) +assert issubclass(list, AppendableSequence) +assert isinstance([], AppendableSequence) + +@abstractmethod decorator -- you can't instantiate classes w/ +an abstract method. + +@abstractproperty decorator +@abstractproperty +def readonly(self): + return self._x + + .. seealso:: :pep:`3119` - Introducing Abstract Base Classes @@ -554,12 +580,22 @@ Here are all of the changes that Python 2.6 makes to the core Python language. * More floating-point features were also added. The :func:`float` function will now turn the strings ``+nan`` and ``-nan`` into the corresponding - IEEE 754 Not a Number values, and ``+inf`` and ``-inf`` into + IEEE 754 Not A Number values, and ``+inf`` and ``-inf`` into positive or negative infinity. This works on any platform with IEEE 754 semantics. (Contributed by Christian Heimes.) .. Patch 1635. + Other functions in the :mod:`math` module, :func:`isinf` and + :func:`isnan`, return true if their floating-point argument is + infinite or Not A Number. + .. Patch 1640 + The ``math.copysign(x, y)`` function + copies the sign bit of an IEEE 754 number, returning the absolute + value of *x* combined with the sign bit of *y*. For example, + ``math.copysign(1, -0.0)`` returns -1.0. (Contributed by Christian + Heimes.) + * Changes to the :class:`Exception` interface as dictated by :pep:`352` continue to be made. For 2.6, the :attr:`message` attribute is being deprecated in favor of the @@ -612,6 +648,10 @@ Here are all of the changes that Python 2.6 makes to the core Python language. Optimizations ------------- +* All of the functions in the :mod:`struct` module have been rewritten in + C, thanks to work at the Need For Speed sprint. + (Contributed by Raymond Hettinger.) + * Internally, a bit is now set in type objects to indicate some of the standard built-in types. This speeds up checking if an object is a subclass of one of these types. (Contributed by Neal Norwitz.) @@ -1074,12 +1114,13 @@ Changes to Python's build process and to the C API include: .. Issue 1635 -* Some macros were renamed. :cmacro:`Py_Size()` became :cmacro:`Py_SIZE()`, +* Some macros were renamed to make it clearer that they are macros, + not functions. :cmacro:`Py_Size()` became :cmacro:`Py_SIZE()`, :cmacro:`Py_Type()` became :cmacro:`Py_TYPE()`, and :cmacro:`Py_Refcnt()` became :cmacro:`Py_REFCNT()`. Macros for backward compatibility are still available for Python 2.6. - .. Issue 1629: XXX why was this done? + .. Issue 1629 .. ====================================================================== |