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
13dd9d99
Kaydet (Commit)
13dd9d99
authored
Ock 16, 2003
tarafından
Martin v. Löwis
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Patch #662454: import a.b as c is ok, fixes #660811.
üst
2206cd17
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
5 deletions
+1
-5
ref6.tex
Doc/ref/ref6.tex
+1
-5
No files found.
Doc/ref/ref6.tex
Dosyayı görüntüle @
13dd9d99
...
...
@@ -678,11 +678,7 @@ The first form of \keyword{import} statement binds the module name in
the local namespace to the module object, and then goes on to import
the next identifier, if any. If the module name is followed by
\keyword
{
as
}
, the name following
\keyword
{
as
}
is used as the local
name for the module. To avoid confusion, you cannot import modules
with dotted names
\keyword
{
as
}
a different local name. So
\code
{
import
module as m
}
is legal, but
\code
{
import module.submod as s
}
is not.
The latter should be written as
\code
{
from module import submod as s
}
;
see below.
name for the module.
The
\keyword
{
from
}
form does not bind the module name: it goes through the
list of identifiers, looks each one of them up in the module found in step
...
...
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