Skip to content
Projeler
Gruplar
Parçacıklar
Yardım
Yükleniyor...
Oturum aç / Kaydol
Gezinmeyi değiştir
C
cpython
Proje
Proje
Ayrıntılar
Etkinlik
Cycle Analytics
Depo (repository)
Depo (repository)
Dosyalar
Kayıtlar (commit)
Dallar (branch)
Etiketler
Katkıda bulunanlar
Grafik
Karşılaştır
Grafikler
Konular (issue)
0
Konular (issue)
0
Liste
Pano
Etiketler
Kilometre Taşları
Birleştirme (merge) Talepleri
0
Birleştirme (merge) Talepleri
0
CI / CD
CI / CD
İş akışları (pipeline)
İşler
Zamanlamalar
Grafikler
Paketler
Paketler
Wiki
Wiki
Parçacıklar
Parçacıklar
Üyeler
Üyeler
Collapse sidebar
Close sidebar
Etkinlik
Grafik
Grafikler
Yeni bir konu (issue) oluştur
İşler
Kayıtlar (commit)
Konu (issue) Panoları
Kenar çubuğunu aç
Batuhan Osman TASKAYA
cpython
Commits
04f58760
Kaydet (Commit)
04f58760
authored
Nis 15, 2008
tarafından
Andrew M. Kuchling
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Various items; begin writing the SSL section
üst
bcdc4685
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
17 additions
and
8 deletions
+17
-8
2.6.rst
Doc/whatsnew/2.6.rst
+17
-8
No files found.
Doc/whatsnew/2.6.rst
Dosyayı görüntüle @
04f58760
...
@@ -825,7 +825,8 @@ their own implementations of buffering and text I/O.
...
@@ -825,7 +825,8 @@ their own implementations of buffering and text I/O.
:pep:`3116` - New I/O
:pep:`3116` - New I/O
PEP written by Daniel Stutzbach, Mike Verdone, and Guido van Rossum.
PEP written by Daniel Stutzbach, Mike Verdone, and Guido van Rossum.
XXX code written by who?
Code by Guido van Rossum, Georg Brandl, Walter Doerwald,
Jeremy Hylton, Martin von Loewis, Tony Lownds, and others.
.. ======================================================================
.. ======================================================================
...
@@ -1096,8 +1097,6 @@ This is equivalent to::
...
@@ -1096,8 +1097,6 @@ This is equivalent to::
A = foo(bar(A))
A = foo(bar(A))
XXX need to find a good motivating example.
.. seealso::
.. seealso::
:pep:`3129` - Class Decorators
:pep:`3129` - Class Decorators
...
@@ -1854,6 +1853,10 @@ complete list of changes, or look through the CVS logs for all the details.
...
@@ -1854,6 +1853,10 @@ complete list of changes, or look through the CVS logs for all the details.
environments. TIPC addresses are 4- or 5-tuples.
environments. TIPC addresses are 4- or 5-tuples.
(Contributed by Alberto Bertogli; :issue:`1646`.)
(Contributed by Alberto Bertogli; :issue:`1646`.)
A new function, :func:`create_connection`, takes an address
and connects to it using an optional timeout value, returning
the connected socket object.
* The base classes in the :mod:`SocketServer` module now support
* The base classes in the :mod:`SocketServer` module now support
calling a :meth:`handle_timeout` method after a span of inactivity
calling a :meth:`handle_timeout` method after a span of inactivity
specified by the server's :attr:`timeout` attribute. (Contributed
specified by the server's :attr:`timeout` attribute. (Contributed
...
@@ -2042,15 +2045,21 @@ Improved SSL Support
...
@@ -2042,15 +2045,21 @@ Improved SSL Support
--------------------------------------------------
--------------------------------------------------
Bill Janssen made extensive improvements to Python 2.6's support for
Bill Janssen made extensive improvements to Python 2.6's support for
SSL.
the Secure Sockets Layer by adding a new module, :mod:`ssl`, on top of
the `OpenSSL <http://www.openssl.org/>`__ library. This new module
XXX use ssl.sslsocket - subclass of socket.socket.
provides more control over the protocol negotiated, the X.509
certificates used, and has better support for writing SSL servers (as
opposed to clients) in Python. The existing SSL support in the
:mod:`socket` module hasn't been removed and continues to work,
though it will be removed in Python 3.0.
To use the new module, first you must create a TCP connection in the
usual way and then pass it to the :func:`ssl.wrap_socket` function.
XXX describe parameters.
XXX Can specify if certificate is required, and obtain certificate info
XXX Can specify if certificate is required, and obtain certificate info
by calling getpeercert method.
by calling getpeercert method.
XXX sslwrap() behaves like socket.ssl
XXX Certain features require the OpenSSL package to be installed, notably
XXX Certain features require the OpenSSL package to be installed, notably
the 'openssl' binary.
the 'openssl' binary.
...
...
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