Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
C
cpython
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
cpython
Commits
20576ffb
Commit
20576ffb
authored
Oct 20, 2007
by
Andrew M. Kuchling
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Various items
parent
4c7045fa
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
40 additions
and
6 deletions
+40
-6
Doc/whatsnew/2.6.rst
Doc/whatsnew/2.6.rst
+40
-6
No files found.
Doc/whatsnew/2.6.rst
View file @
20576ffb
...
@@ -67,7 +67,6 @@ new feature.
...
@@ -67,7 +67,6 @@ new feature.
.. % Large, PEP-level features and changes should be described here.
.. % Large, PEP-level features and changes should be described here.
.. % Should there be a new section here for 3k migration?
.. % Should there be a new section here for 3k migration?
.. % Or perhaps a more general section describing module changes/deprecation?
.. % Or perhaps a more general section describing module changes/deprecation?
.. % sets module deprecated
.. % ======================================================================
.. % ======================================================================
Python 3.0
Python 3.0
...
@@ -665,7 +664,7 @@ complete list of changes, or look through the CVS logs for all the details.
...
@@ -665,7 +664,7 @@ complete list of changes, or look through the CVS logs for all the details.
* The ``os.environ`` object's :meth:`clear` method will now unset the
* The ``os.environ`` object's :meth:`clear` method will now unset the
environment variables using :func:`os.unsetenv` in addition to clearing
environment variables using :func:`os.unsetenv` in addition to clearing
the object's keys. (Contributed by
XXX
.)
the object's keys. (Contributed by
Martin Horcicka
.)
.. % Patch #1181
.. % Patch #1181
...
@@ -706,6 +705,9 @@ complete list of changes, or look through the CVS logs for all the details.
...
@@ -706,6 +705,9 @@ complete list of changes, or look through the CVS logs for all the details.
* The :mod:`rgbimg` module has been removed.
* The :mod:`rgbimg` module has been removed.
* The :mod:`sets` module has been deprecated; it's better to
use the built-in :class:`set` and :class:`frozenset` types.
* The :mod:`smtplib` module now supports SMTP over SSL thanks to the
* The :mod:`smtplib` module now supports SMTP over SSL thanks to the
addition of the :class:`SMTP_SSL` class. This class supports an
addition of the :class:`SMTP_SSL` class. This class supports an
interface identical to the existing :class:`SMTP` class. Both
interface identical to the existing :class:`SMTP` class. Both
...
@@ -821,7 +823,7 @@ complete list of changes, or look through the CVS logs for all the details.
...
@@ -821,7 +823,7 @@ complete list of changes, or look through the CVS logs for all the details.
(Added by Facundo Batista.)
(Added by Facundo Batista.)
* The XML-RPC classes :class:`SimpleXMLRPCServer` and :class:`DocXMLRPCServer`
* The XML-RPC classes :class:`SimpleXMLRPCServer` and :class:`DocXMLRPCServer`
classes can now be prevent
ing
from immediately opening and binding to
classes can now be prevent
ed
from immediately opening and binding to
their socket by passing True as the ``bind_and_activate``
their socket by passing True as the ``bind_and_activate``
constructor parameter. This can be used to modify the instance's
constructor parameter. This can be used to modify the instance's
:attr:`allow_reuse_address` attribute before calling the
:attr:`allow_reuse_address` attribute before calling the
...
@@ -831,8 +833,36 @@ complete list of changes, or look through the CVS logs for all the details.
...
@@ -831,8 +833,36 @@ complete list of changes, or look through the CVS logs for all the details.
.. % Patch 1599845
.. % Patch 1599845
:class:`SimpleXMLRPCServer` also has a :attr:`_send_traceback_header`
attribute; if true, the exception and formatted traceback are returned
as HTTP headers "X-Exception" and "X-Traceback". This feature is
for debugging purposes only and should not be used on production servers
because the tracebacks could possibly reveal passwords or other sensitive
information. (Contributed by Alan McIntyre as part of his
project for Google's Summer of Code 2007.)
.. % ======================================================================
.. % ======================================================================
.. % whole new modules get described in \subsections here
.. % whole new modules get described in subsections here
Improved SSL Support
''''''''''''''''''''''''''''''
Bill Janssen made extensive improvements to Python 2.6's support for
SSL.
XXX use ssl.sslsocket - subclass of socket.socket.
XXX Can specify if certificate is required, and obtain certificate info
by calling getpeercert method.
XXX sslwrap() behaves like socket.ssl
XXX Certain features require the OpenSSL package to be installed, notably
the 'openssl' binary.
.. seealso::
SSL module documentation.
.. % ======================================================================
.. % ======================================================================
...
@@ -884,8 +914,12 @@ Porting to Python 2.6
...
@@ -884,8 +914,12 @@ Porting to Python 2.6
This section lists previously described changes that may require changes to your
This section lists previously described changes that may require changes to your
code:
code:
* The :mod:`socket` module exception :exc:`socket.error` now inherits from
* The :mod:`socket` module exception :exc:`socket.error` now inherits
:exc:`IOError`.
from :exc:`IOError`. Previously it wasn't a subclass of
:exc:`StandardError` but now it is, through :exc:`IOError`.
(Implemented by Gregory P. Smith.)
.. % http://bugs.python.org/issue1706815
.. % ======================================================================
.. % ======================================================================
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment