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
3738ef42
Kaydet (Commit)
3738ef42
authored
Kas 21, 2016
tarafından
Martin Panter
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Change double hyphens (en dashes) to em (longer) dashes
üst
fd08fdc7
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
7 additions
and
7 deletions
+7
-7
cporting.rst
Doc/howto/cporting.rst
+1
-1
curses.rst
Doc/howto/curses.rst
+1
-1
hmac.rst
Doc/library/hmac.rst
+1
-1
io.rst
Doc/library/io.rst
+1
-1
pdb.rst
Doc/library/pdb.rst
+1
-1
whichdb.rst
Doc/library/whichdb.rst
+2
-2
No files found.
Doc/howto/cporting.rst
Dosyayı görüntüle @
3738ef42
...
...
@@ -95,7 +95,7 @@ long/int Unification
--------------------
Python 3 has only one integer type, :func:`int`. But it actually
corresponds to Python 2's :func:`long` type
--
the :func:`int` type
corresponds to Python 2's :func:`long` type
—
the :func:`int` type
used in Python 2 was removed. In the C-API, ``PyInt_*`` functions
are replaced by their ``PyLong_*`` equivalents.
...
...
Doc/howto/curses.rst
Dosyayı görüntüle @
3738ef42
...
...
@@ -35,7 +35,7 @@ before X is available.
The curses library hides all the details of different terminals, and provides
the programmer with an abstraction of a display, containing multiple
non-overlapping windows. The contents of a window can be changed in various
ways--
adding text, erasing it, changing its appearance
--and the curses library
ways--
-adding text, erasing it, changing its appearance-
--and the curses library
will automagically figure out what control codes need to be sent to the terminal
to produce the right output.
...
...
Doc/library/hmac.rst
Dosyayı görüntüle @
3738ef42
...
...
@@ -79,7 +79,7 @@ This module also provides the following helper function:
If *a* and *b* are of different lengths, or if an error occurs,
a timing attack could theoretically reveal information about the
types and lengths of *a* and *b*
--
but not their values.
types and lengths of *a* and *b*
—
but not their values.
.. versionadded:: 2.7.7
...
...
Doc/library/io.rst
Dosyayı görüntüle @
3738ef42
...
...
@@ -130,7 +130,7 @@ Module Interface
the list of supported encodings.
*errors* is an optional string that specifies how encoding and decoding
errors are to be handled
--
this cannot be used in binary mode. Pass
errors are to be handled
—
this cannot be used in binary mode. Pass
``'strict'`` to raise a :exc:`ValueError` exception if there is an encoding
error (the default of ``None`` has the same effect), or pass ``'ignore'`` to
ignore errors. (Note that ignoring encoding errors can lead to data loss.)
...
...
Doc/library/pdb.rst
Dosyayı görüntüle @
3738ef42
...
...
@@ -290,7 +290,7 @@ commands [*bpnumber*]
return, jump, quit and their abbreviations) terminates the command list (as if
that command was immediately followed by end). This is because any time you
resume execution (even with a simple next or step), you may encounter another
breakpoint
--
which could have its own command list, leading to ambiguities about
breakpoint
—
which could have its own command list, leading to ambiguities about
which list to execute.
If you use the 'silent' command in the command list, the usual message about
...
...
Doc/library/whichdb.rst
Dosyayı görüntüle @
3738ef42
...
...
@@ -11,8 +11,8 @@
The single function in this module attempts to guess which of the several simple
database modules available
--\
:mod:`dbm`, :mod:`gdbm`, or :mod:`dbhash`\
--
should be used to open a given file.
database modules available
—
:mod:`dbm`, :mod:`gdbm`, or :mod:`dbhash`\
—
should be used to open a given file.
.. function:: whichdb(filename)
...
...
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