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
173c1f1a
Kaydet (Commit)
173c1f1a
authored
Mar 15, 2009
tarafından
Georg Brandl
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
#5469: add with statement to list of name-binding constructs.
üst
09827eb5
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
3 deletions
+4
-3
executionmodel.rst
Doc/reference/executionmodel.rst
+4
-3
No files found.
Doc/reference/executionmodel.rst
Dosyayı görüntüle @
173c1f1a
...
@@ -87,9 +87,10 @@ subclass of :exc:`NameError`.
...
@@ -87,9 +87,10 @@ subclass of :exc:`NameError`.
The following constructs bind names: formal parameters to functions,
The following constructs bind names: formal parameters to functions,
:keyword:`import` statements, class and function definitions (these bind the
:keyword:`import` statements, class and function definitions (these bind the
class or function name in the defining block), and targets that are identifiers
class or function name in the defining block), and targets that are identifiers
if occurring in an assignment, :keyword:`for` loop header, or in the second
if occurring in an assignment, :keyword:`for` loop header, in the second
position of an :keyword:`except` clause header. The :keyword:`import` statement
position of an :keyword:`except` clause header or after :keyword:`as` in a
of the form "``from ...import *``" binds all names defined in the imported
:keyword:`with` statement. The :keyword:`import` statement
of the form ``from ... import *`` binds all names defined in the imported
module, except those beginning with an underscore. This form may only be used
module, except those beginning with an underscore. This form may only be used
at the module level.
at the module level.
...
...
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