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
1e9aba51
Kaydet (Commit)
1e9aba51
authored
Ara 16, 2016
tarafından
Ned Deily
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Update pydoc topics for 3.6.0rc2
üst
f6105a55
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
32 additions
and
3 deletions
+32
-3
topics.py
Lib/pydoc_data/topics.py
+32
-3
No files found.
Lib/pydoc_data/topics.py
Dosyayı görüntüle @
1e9aba51
# -*- coding: utf-8 -*-
# -*- coding: utf-8 -*-
# Autogenerated by Sphinx on
Tue Dec 6 18:51:51
2016
# Autogenerated by Sphinx on
Fri Dec 16 16:33:16
2016
topics
=
{
'assert'
:
'
\n
'
topics
=
{
'assert'
:
'
\n
'
'The "assert" statement
\n
'
'The "assert" statement
\n
'
'**********************
\n
'
'**********************
\n
'
...
@@ -2613,7 +2613,8 @@ topics = {'assert': '\n'
...
@@ -2613,7 +2613,8 @@ topics = {'assert': '\n'
'functions, even if they do not contain "await" or "async" '
'functions, even if they do not contain "await" or "async" '
'keywords.
\n
'
'keywords.
\n
'
'
\n
'
'
\n
'
'It is a "SyntaxError" to use "yield" expressions in "async def"
\n
'
'It is a "SyntaxError" to use "yield from" expressions in "async '
'def"
\n
'
'coroutines.
\n
'
'coroutines.
\n
'
'
\n
'
'
\n
'
'An example of a coroutine function:
\n
'
'An example of a coroutine function:
\n
'
...
@@ -7087,7 +7088,14 @@ topics = {'assert': '\n'
...
@@ -7087,7 +7088,14 @@ topics = {'assert': '\n'
'generator is done and will cause "StopIteration" to be raised. '
'generator is done and will cause "StopIteration" to be raised. '
'The
\n
'
'The
\n
'
'returned value (if any) is used as an argument to construct
\n
'
'returned value (if any) is used as an argument to construct
\n
'
'"StopIteration" and becomes the "StopIteration.value" attribute.
\n
'
,
'"StopIteration" and becomes the "StopIteration.value" attribute.
\n
'
'
\n
'
'In an asynchronous generator function, an empty "return" '
'statement
\n
'
'indicates that the asynchronous generator is done and will cause
\n
'
'"StopAsyncIteration" to be raised. A non-empty "return" statement '
'is
\n
'
'a syntax error in an asynchronous generator function.
\n
'
,
'sequence-types'
:
'
\n
'
'sequence-types'
:
'
\n
'
'Emulating container types
\n
'
'Emulating container types
\n
'
'*************************
\n
'
'*************************
\n
'
...
@@ -11097,6 +11105,27 @@ topics = {'assert': '\n'
...
@@ -11097,6 +11105,27 @@ topics = {'assert': '\n'
'statements.
\n
'
'statements.
\n
'
' See also the Coroutine Objects section.
\n
'
' See also the Coroutine Objects section.
\n
'
'
\n
'
'
\n
'
' Asynchronous generator functions
\n
'
' A function or method which is defined using "async def" and
\n
'
' which uses the "yield" statement is called a *asynchronous
\n
'
' generator function*. Such a function, when called, returns '
'an
\n
'
' asynchronous iterator object which can be used in an "async '
'for"
\n
'
' statement to execute the body of the function.
\n
'
'
\n
'
' Calling the asynchronous iterator
\'
s "aiterator.__anext__()"
\n
'
' method will return an *awaitable* which when awaited will
\n
'
' execute until it provides a value using the "yield" '
'expression.
\n
'
' When the function executes an empty "return" statement or '
'falls
\n
'
' off the end, a "StopAsyncIteration" exception is raised and '
'the
\n
'
' asynchronous iterator will have reached the end of the set '
'of
\n
'
' values to be yielded.
\n
'
'
\n
'
' Built-in functions
\n
'
' Built-in functions
\n
'
' A built-in function object is a wrapper around a C function.
\n
'
' A built-in function object is a wrapper around a C function.
\n
'
' Examples of built-in functions are "len()" and "math.sin()"
\n
'
' Examples of built-in functions are "len()" and "math.sin()"
\n
'
...
...
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