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
4d206541
Kaydet (Commit)
4d206541
authored
Haz 26, 1996
tarafından
Guido van Rossum
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Slight update; file args are no longer optional.
üst
50ec5c07
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
16 additions
and
16 deletions
+16
-16
libimp.tex
Doc/lib/libimp.tex
+8
-8
libimp.tex
Doc/libimp.tex
+8
-8
No files found.
Doc/lib/libimp.tex
Dosyayı görüntüle @
4d206541
...
...
@@ -67,15 +67,15 @@ Return \code{1} if there is a frozen module (see \code{init_frozen})
called
\var
{
name
}
,
\code
{
0
}
if there is no such module.
\end{funcdesc}
\begin{funcdesc}
{
load
_
compiled
}{
name
\,
pathname
\,
\optional
{
file
}
}
\begin{funcdesc}
{
load
_
compiled
}{
name
\,
pathname
\,
file
}
Load and initialize a module implemented as a byte-compiled code file
and return its module object. If the module was already initialized,
it will be initialized
{
\em
again
}
. The
\var
{
name
}
argument is used
to create or access a module object. The
\var
{
pathname
}
argument
points to the byte-compiled code file. The
optional
\var
{
file
}
points to the byte-compiled code file. The
\var
{
file
}
argument is the byte-compiled code file, open for reading in binary
mode, from the beginning
--- if not given, the function opens
\var
{
pathname
}
.
It must currently be a real file object, not a
mode, from the beginning
.
It must currently be a real file object, not a
user-defined class emulating a file.
\end{funcdesc}
...
...
@@ -92,14 +92,14 @@ shared libraries is highly system dependent, and not all systems
support it.)
\end{funcdesc}
\begin{funcdesc}
{
load
_
source
}{
name
\,
pathname
\,
\optional
{
file
}
}
\begin{funcdesc}
{
load
_
source
}{
name
\,
pathname
\,
file
}
Load and initialize a module implemented as a Python source file and
return its module object. If the module was already initialized, it
will be initialized
{
\em
again
}
. The
\var
{
name
}
argument is used to
create or access a module object. The
\var
{
pathname
}
argument points
to the source file. The
optional
\var
{
file
}
argument is the source
file, open for reading as text, from the beginning
--- if not given,
the function opens
\var
{
pathname
}
.
It must currently be a real file
to the source file. The
\var
{
file
}
argument is the source
file, open for reading as text, from the beginning
.
It must currently be a real file
object, not a user-defined class emulating a file. Note that if a
properly matching byte-compiled file (with suffix
\code
{
.pyc
}
) exists,
it will be used instead of parsing the given source file.
...
...
Doc/libimp.tex
Dosyayı görüntüle @
4d206541
...
...
@@ -67,15 +67,15 @@ Return \code{1} if there is a frozen module (see \code{init_frozen})
called
\var
{
name
}
,
\code
{
0
}
if there is no such module.
\end{funcdesc}
\begin{funcdesc}
{
load
_
compiled
}{
name
\,
pathname
\,
\optional
{
file
}
}
\begin{funcdesc}
{
load
_
compiled
}{
name
\,
pathname
\,
file
}
Load and initialize a module implemented as a byte-compiled code file
and return its module object. If the module was already initialized,
it will be initialized
{
\em
again
}
. The
\var
{
name
}
argument is used
to create or access a module object. The
\var
{
pathname
}
argument
points to the byte-compiled code file. The
optional
\var
{
file
}
points to the byte-compiled code file. The
\var
{
file
}
argument is the byte-compiled code file, open for reading in binary
mode, from the beginning
--- if not given, the function opens
\var
{
pathname
}
.
It must currently be a real file object, not a
mode, from the beginning
.
It must currently be a real file object, not a
user-defined class emulating a file.
\end{funcdesc}
...
...
@@ -92,14 +92,14 @@ shared libraries is highly system dependent, and not all systems
support it.)
\end{funcdesc}
\begin{funcdesc}
{
load
_
source
}{
name
\,
pathname
\,
\optional
{
file
}
}
\begin{funcdesc}
{
load
_
source
}{
name
\,
pathname
\,
file
}
Load and initialize a module implemented as a Python source file and
return its module object. If the module was already initialized, it
will be initialized
{
\em
again
}
. The
\var
{
name
}
argument is used to
create or access a module object. The
\var
{
pathname
}
argument points
to the source file. The
optional
\var
{
file
}
argument is the source
file, open for reading as text, from the beginning
--- if not given,
the function opens
\var
{
pathname
}
.
It must currently be a real file
to the source file. The
\var
{
file
}
argument is the source
file, open for reading as text, from the beginning
.
It must currently be a real file
object, not a user-defined class emulating a file. Note that if a
properly matching byte-compiled file (with suffix
\code
{
.pyc
}
) exists,
it will be used instead of parsing the given source file.
...
...
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