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
5db0b339
Kaydet (Commit)
5db0b339
authored
May 20, 2014
tarafından
Donald Stufft
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Fix Issue #21528 - Fix documentation typos
üst
3214ed64
Hide whitespace changes
Inline
Side-by-side
Showing
8 changed files
with
10 additions
and
10 deletions
+10
-10
apiref.rst
Doc/distutils/apiref.rst
+2
-2
builtdist.rst
Doc/distutils/builtdist.rst
+1
-1
sockets.rst
Doc/howto/sockets.rst
+1
-1
argparse.rst
Doc/library/argparse.rst
+1
-1
collections.rst
Doc/library/collections.rst
+2
-2
resource.rst
Doc/library/resource.rst
+1
-1
xml.dom.rst
Doc/library/xml.dom.rst
+1
-1
2.1.rst
Doc/whatsnew/2.1.rst
+1
-1
No files found.
Doc/distutils/apiref.rst
Dosyayı görüntüle @
5db0b339
...
...
@@ -1106,13 +1106,13 @@ other utility module.
during the build of Python), not the OS version of the current system.
For universal binary builds on Mac OS X the architecture value reflects
the univeral binary status instead of the architecture of the current
the univer
s
al binary status instead of the architecture of the current
processor. For 32-bit universal binaries the architecture is ``fat``,
for 64-bit universal binaries the architecture is ``fat64``, and
for 4-way universal binaries the architecture is ``universal``. Starting
from Python 2.7 and Python 3.2 the architecture ``fat3`` is used for
a 3-way universal build (ppc, i386, x86_64) and ``intel`` is used for
a univeral build with the i386 and x86_64 architectures
a univer
s
al build with the i386 and x86_64 architectures
Examples of returned values on Mac OS X:
...
...
Doc/distutils/builtdist.rst
Dosyayı görüntüle @
5db0b339
...
...
@@ -355,7 +355,7 @@ support this option, so the command::
would create a 64bit installation executable on your 32bit version of Windows.
To cross-compile, you must download the Python source code and cross-compile
Python itself for the platform you are target
t
ing - it is not possible from a
Python itself for the platform you are targeting - it is not possible from a
binary installation of Python (as the .lib etc file for other platforms are
not included.) In practice, this means the user of a 32 bit operating
system will need to use Visual Studio 2008 to open the
...
...
Doc/howto/sockets.rst
Dosyayı görüntüle @
5db0b339
...
...
@@ -237,7 +237,7 @@ messages to be sent back to back (without some kind of reply), and you pass
following message. You'll need to put that aside and hold onto it, until it's
needed.
Prefixing the message with it
'
s length (say, as 5 numeric characters) gets more
Prefixing the message with its length (say, as 5 numeric characters) gets more
complex, because (believe it or not), you may not get all 5 characters in one
``recv``. In playing around, you'll get away with it; but in high network loads,
your code will very quickly break unless you use two ``recv`` loops - the first
...
...
Doc/library/argparse.rst
Dosyayı görüntüle @
5db0b339
...
...
@@ -1873,7 +1873,7 @@ Customizing file parsing
Arguments that are read from a file (see the *fromfile_prefix_chars*
keyword argument to the :class:`ArgumentParser` constructor) are read one
argument per line. :meth:`convert_arg_line_to_args` can be overriden for
argument per line. :meth:`convert_arg_line_to_args` can be overrid
d
en for
fancier reading.
This method takes a single argument *arg_line* which is a string read from
...
...
Doc/library/collections.rst
Dosyayı görüntüle @
5db0b339
...
...
@@ -835,7 +835,7 @@ semantics pass-in keyword arguments using a regular unordered dictionary.
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
Since an ordered dictionary remembers its insertion order, it can be used
in conjuction with sorting to make a sorted dictionary::
in conju
n
ction with sorting to make a sorted dictionary::
>>> # regular unsorted dictionary
>>> d = {'banana': 3, 'apple': 4, 'pear': 1, 'orange': 2}
...
...
@@ -1037,7 +1037,7 @@ Notes on using :class:`Set` and :class:`MutableSet` as a mixin:
(3)
The :class:`Set` mixin provides a :meth:`_hash` method to compute a hash value
for the set; however, :meth:`__hash__` is not defined because not all sets
are hashable or immutable. To add set hashabilty using mixins,
are hashable or immutable. To add set hashabil
i
ty using mixins,
inherit from both :meth:`Set` and :meth:`Hashable`, then define
``__hash__ = Set._hash``.
...
...
Doc/library/resource.rst
Dosyayı görüntüle @
5db0b339
...
...
@@ -44,7 +44,7 @@ this module for those platforms.
.. data:: RLIM_INFINITY
Constant used to represent the
the
limit for an unlimited resource.
Constant used to represent the limit for an unlimited resource.
.. function:: getrlimit(resource)
...
...
Doc/library/xml.dom.rst
Dosyayı görüntüle @
5db0b339
...
...
@@ -431,7 +431,7 @@ objects:
.. method:: NodeList.item(i)
Return the *i*'
th
item
from
the
sequence
,
if
there
is
one
,
or
``
None
``.
The
index
*
i
*
is
not
allowed
to
be
less
th
e
n
zero
or
greater
than
or
equal
to
the
index
*
i
*
is
not
allowed
to
be
less
th
a
n
zero
or
greater
than
or
equal
to
the
length
of
the
sequence
.
...
...
Doc/whatsnew/2.1.rst
Dosyayı görüntüle @
5db0b339
...
...
@@ -219,7 +219,7 @@ comparison. I won't cover the C API here, but will refer you to PEP 207, or to
..
seealso
::
:
pep
:`
207
`
-
Rich
Comparis
i
ons
:
pep
:`
207
`
-
Rich
Comparisons
Written
by
Guido
van
Rossum
,
heavily
based
on
earlier
work
by
David
Ascher
,
and
implemented
by
Guido
van
Rossum
.
...
...
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