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
a8037db6
Kaydet (Commit)
a8037db6
authored
Ara 04, 2016
tarafından
Serhiy Storchaka
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Sade Fark
Fixed double hyphens that are rendered to literal en-dashes in the documenation.
üst
ed043883
e418432d
Hide whitespace changes
Inline
Side-by-side
Showing
9 changed files
with
15 additions
and
15 deletions
+15
-15
logging-cookbook.rst
Doc/howto/logging-cookbook.rst
+2
-2
asyncio.rst
Doc/library/asyncio.rst
+2
-2
hashlib-blake2.rst
Doc/library/hashlib-blake2.rst
+1
-1
importlib.rst
Doc/library/importlib.rst
+2
-2
logging.rst
Doc/library/logging.rst
+1
-1
msvcrt.rst
Doc/library/msvcrt.rst
+2
-2
selectors.rst
Doc/library/selectors.rst
+2
-2
winreg.rst
Doc/library/winreg.rst
+1
-1
stdlib2.rst
Doc/tutorial/stdlib2.rst
+2
-2
No files found.
Doc/howto/logging-cookbook.rst
Dosyayı görüntüle @
a8037db6
...
...
@@ -1088,7 +1088,7 @@ $-formatting to be used to build the actual "message" part which appears in the
formatted log output in place of "%(message)s" or "{message}" or "$message".
It's a little unwieldy to use the class names whenever you want to log
something, but it's quite palatable if you use an alias such as __ (double
underscore
–
not to be confused with _, the single underscore used as a
underscore
---
not to be confused with _, the single underscore used as a
synonym/alias for :func:`gettext.gettext` or its brethren).
The above classes are not included in Python, though they're easy enough to
...
...
@@ -1209,7 +1209,7 @@ do simply by adding new packages or modules and doing ::
at module level). It's probably one too many things to think about. Developers
could also add the filter to a :class:`~logging.NullHandler` attached to their
top-level logger, but this would not be invoked if an application developer
attached a handler to a lower-level library logger
–
so output from that
attached a handler to a lower-level library logger
---
so output from that
handler would not reflect the intentions of the library developer.
In Python 3.2 and later, :class:`~logging.LogRecord` creation is done through a
...
...
Doc/library/asyncio.rst
Dosyayı görüntüle @
a8037db6
:mod:`asyncio` -- Asynchronous I/O, event loop, coroutines and tasks
====================================================================
:mod:`asyncio` --
-
Asynchronous I/O, event loop, coroutines and tasks
====================================================================
=
.. module:: asyncio
:synopsis: Asynchronous I/O, event loop, coroutines and tasks.
...
...
Doc/library/hashlib-blake2.rst
Dosyayı görüntüle @
a8037db6
...
...
@@ -280,7 +280,7 @@ on the hash function used in digital signatures.
function providing less collision resistance than expected. Randomized
hashing offers the signer additional protection by reducing the likelihood
that a preparer can generate two or more messages that ultimately yield the
same hash value during the digital signature generation process
–
even if
same hash value during the digital signature generation process
---
even if
it is practical to find collisions for the hash function. However, the use
of randomized hashing may reduce the amount of security provided by a
digital signature when all portions of the message are prepared
...
...
Doc/library/importlib.rst
Dosyayı görüntüle @
a8037db6
:
mod
:`
importlib
`
--
The
implementation
of
:
keyword
:`
import
`
===========================================================
:
mod
:`
importlib
`
--
-
The
implementation
of
:
keyword
:`
import
`
===========================================================
=
..
module
::
importlib
:
synopsis
:
The
implementation
of
the
import
machinery
.
...
...
Doc/library/logging.rst
Dosyayı görüntüle @
a8037db6
...
...
@@ -561,7 +561,7 @@ The useful mapping keys in a :class:`LogRecord` are given in the section on
handled
by
a
strptime
format
string
(``
'%Y-%m-%d %H:%M:%S'
``),
and
the
part
after
the
comma
is
a
millisecond
value
.
Because
strptime
does
not
have
a
format
placeholder
for
milliseconds
,
the
millisecond
value
is
appended
using
another
format
string
,
``
'%s,%03d'
``
–
and
both
of
these
appended
using
another
format
string
,
``
'%s,%03d'
``
---
and
both
of
these
format
strings
have
been
hardcoded
into
this
method
.
With
the
change
,
these
strings
are
defined
as
class
-
level
attributes
which
can
be
overridden
at
the
instance
level
when
desired
.
The
names
of
the
...
...
Doc/library/msvcrt.rst
Dosyayı görüntüle @
a8037db6
:mod:`msvcrt` -- Useful routines from the MS VC++ runtime
=========================================================
:mod:`msvcrt` --
-
Useful routines from the MS VC++ runtime
=========================================================
=
.. module:: msvcrt
:platform: Windows
...
...
Doc/library/selectors.rst
Dosyayı görüntüle @
a8037db6
:mod:`selectors` -- High-level I/O multiplexing
===============================================
:mod:`selectors` --
-
High-level I/O multiplexing
===============================================
=
.. module:: selectors
:synopsis: High-level I/O multiplexing.
...
...
Doc/library/winreg.rst
Dosyayı görüntüle @
a8037db6
:mod:`winreg` -- Windows registry access
:mod:`winreg` --
-
Windows registry access
=========================================
.. module:: winreg
...
...
Doc/tutorial/stdlib2.rst
Dosyayı görüntüle @
a8037db6
.. _tut-brieftourtwo:
*********************************************
Brief Tour of the Standard Library -- Part II
*********************************************
Brief Tour of the Standard Library --
-
Part II
*********************************************
*
This second tour covers more advanced modules that support professional
programming needs. These modules rarely occur in small scripts.
...
...
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