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
b20df9a8
Kaydet (Commit)
b20df9a8
authored
Nis 03, 2009
tarafından
Andrew M. Kuchling
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Fix 'the the' duplication (partial backport of r71103
üst
ab52252b
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
6 additions
and
6 deletions
+6
-6
cporting.rst
Doc/howto/cporting.rst
+1
-1
abc.rst
Doc/library/abc.rst
+1
-1
multiprocessing.rst
Doc/library/multiprocessing.rst
+1
-1
pdb.rst
Doc/library/pdb.rst
+1
-1
ssl.rst
Doc/library/ssl.rst
+1
-1
2.6.rst
Doc/whatsnew/2.6.rst
+1
-1
No files found.
Doc/howto/cporting.rst
Dosyayı görüntüle @
b20df9a8
...
@@ -96,7 +96,7 @@ In Python 3.0, there is only one integer type. It is called :func:`int` on the
...
@@ -96,7 +96,7 @@ In Python 3.0, there is only one integer type. It is called :func:`int` on the
Python level, but actually corresponds to 2.x's :func:`long` type. In the
Python level, but actually corresponds to 2.x's :func:`long` type. In the
C-API, ``PyInt_*`` functions are replaced by their ``PyLong_*`` neighbors. The
C-API, ``PyInt_*`` functions are replaced by their ``PyLong_*`` neighbors. The
best course of action here is using the ``PyInt_*`` functions aliased to
best course of action here is using the ``PyInt_*`` functions aliased to
``PyLong_*`` found in :file:`intobject.h`. The
the
abstract ``PyNumber_*`` APIs
``PyLong_*`` found in :file:`intobject.h`. The abstract ``PyNumber_*`` APIs
can also be used in some cases. ::
can also be used in some cases. ::
#include "Python.h"
#include "Python.h"
...
...
Doc/library/abc.rst
Dosyayı görüntüle @
b20df9a8
...
@@ -134,7 +134,7 @@ It also provides the following decorators:
...
@@ -134,7 +134,7 @@ It also provides the following decorators:
A class that has a metaclass derived from :class:`ABCMeta`
A class that has a metaclass derived from :class:`ABCMeta`
cannot be instantiated unless all of its abstract methods and
cannot be instantiated unless all of its abstract methods and
properties are overridden.
properties are overridden.
The abstract methods can be called using any of the
the
normal 'super' call
The abstract methods can be called using any of the normal 'super' call
mechanisms.
mechanisms.
Dynamically adding abstract methods to a class, or attempting to modify the
Dynamically adding abstract methods to a class, or attempting to modify the
...
...
Doc/library/multiprocessing.rst
Dosyayı görüntüle @
b20df9a8
...
@@ -1845,7 +1845,7 @@ return value of ``current_process().authkey`` is used (see
...
@@ -1845,7 +1845,7 @@ return value of ``current_process().authkey`` is used (see
any :class:`~multiprocessing.Process` object that the current process creates.
any :class:`~multiprocessing.Process` object that the current process creates.
This means that (by default) all processes of a multi-process program will share
This means that (by default) all processes of a multi-process program will share
a single authentication key which can be used when setting up connections
a single authentication key which can be used when setting up connections
between the
the
mselves.
between themselves.
Suitable authentication keys can also be generated by using :func:`os.urandom`.
Suitable authentication keys can also be generated by using :func:`os.urandom`.
...
...
Doc/library/pdb.rst
Dosyayı görüntüle @
b20df9a8
...
@@ -268,7 +268,7 @@ n(ext)
...
@@ -268,7 +268,7 @@ n(ext)
full speed, only stopping at the next line in the current function.)
full speed, only stopping at the next line in the current function.)
unt(il)
unt(il)
Continue execution until the line with the
the
line number greater than the
Continue execution until the line with the line number greater than the
current one is reached or when returning from current frame.
current one is reached or when returning from current frame.
.. versionadded:: 2.6
.. versionadded:: 2.6
...
...
Doc/library/ssl.rst
Dosyayı görüntüle @
b20df9a8
...
@@ -261,7 +261,7 @@ SSLSocket Objects
...
@@ -261,7 +261,7 @@ SSLSocket Objects
If there is no certificate for the peer on the other end of the
If there is no certificate for the peer on the other end of the
connection, returns ``None``.
connection, returns ``None``.
If the
the
parameter ``binary_form`` is :const:`False`, and a
If the parameter ``binary_form`` is :const:`False`, and a
certificate was received from the peer, this method returns a
certificate was received from the peer, this method returns a
:class:`dict` instance. If the certificate was not validated, the
:class:`dict` instance. If the certificate was not validated, the
dict is empty. If the certificate was validated, it returns a dict
dict is empty. If the certificate was validated, it returns a dict
...
...
Doc/whatsnew/2.6.rst
Dosyayı görüntüle @
b20df9a8
...
@@ -1674,7 +1674,7 @@ Some smaller changes made to the core Python language are:
...
@@ -1674,7 +1674,7 @@ Some smaller changes made to the core Python language are:
:attr:`__self__`, and :attr:`im_func` is also available as :attr:`__func__`.
:attr:`__self__`, and :attr:`im_func` is also available as :attr:`__func__`.
The old names are still supported in Python 2.6, but are gone in 3.0.
The old names are still supported in Python 2.6, but are gone in 3.0.
* An obscure change: when you use the
the
:func:`locals` function inside a
* An obscure change: when you use the :func:`locals` function inside a
:keyword:`class` statement, the resulting dictionary no longer returns free
:keyword:`class` statement, the resulting dictionary no longer returns free
variables. (Free variables, in this case, are variables referenced in the
variables. (Free variables, in this case, are variables referenced in the
:keyword:`class` statement that aren'
t
attributes
of
the
class
.)
:keyword:`class` statement that aren'
t
attributes
of
the
class
.)
...
...
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