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
61cf4407
Kaydet (Commit)
61cf4407
authored
Agu 21, 2002
tarafından
Fred Drake
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Added a main() function and support to run this module as a script.
Closes SF feature request #588768.
üst
a96f1a3c
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
33 additions
and
3 deletions
+33
-3
libpycompile.tex
Doc/lib/libpycompile.tex
+14
-2
py_compile.py
Lib/py_compile.py
+19
-1
No files found.
Doc/lib/libpycompile.tex
Dosyayı görüntüle @
61cf4407
...
@@ -10,8 +10,9 @@
...
@@ -10,8 +10,9 @@
\indexii
{
file
}{
byte-code
}
\indexii
{
file
}{
byte-code
}
The
\module
{
py
_
compile
}
module provides a single function to generate
The
\module
{
py
_
compile
}
module provides a function to generate a
a byte-code file from a source file.
byte-code file from a source file, and another function used when the
module source file is invoked as a script.
Though not often needed, this function can be useful when installing
Though not often needed, this function can be useful when installing
modules for shared use, especially if some of the users may not have
modules for shared use, especially if some of the users may not have
...
@@ -29,6 +30,17 @@ containing the source code.
...
@@ -29,6 +30,17 @@ containing the source code.
\end{funcdesc}
\end{funcdesc}
\begin{funcdesc}
{
main
}{
\optional
{
args
}}
Compile several source files. The files named in
\var
{
args
}
(or on
the command line, if
\var
{
args
}
is not specified) are compiled and
the resulting bytecode is cached in the normal manner. This
function does not search a directory structure to locate source
files; it only compiles files named explicitly.
\end{funcdesc}
When this module is run as a script, the
\function
{
main()
}
is used to
compile all the files named on the command line.
\begin{seealso}
\begin{seealso}
\seemodule
{
compileall
}{
Utilities to compile all Python source files
\seemodule
{
compileall
}{
Utilities to compile all Python source files
in a directory tree.
}
in a directory tree.
}
...
...
Lib/py_compile.py
Dosyayı görüntüle @
61cf4407
...
@@ -12,7 +12,7 @@ import traceback
...
@@ -12,7 +12,7 @@ import traceback
MAGIC
=
imp
.
get_magic
()
MAGIC
=
imp
.
get_magic
()
__all__
=
[
"compile"
]
__all__
=
[
"compile"
,
"main"
]
# Define an internal helper according to the platform
# Define an internal helper according to the platform
if
os
.
name
==
"mac"
:
if
os
.
name
==
"mac"
:
...
@@ -86,3 +86,21 @@ def compile(file, cfile=None, dfile=None):
...
@@ -86,3 +86,21 @@ def compile(file, cfile=None, dfile=None):
fc
.
write
(
MAGIC
)
fc
.
write
(
MAGIC
)
fc
.
close
()
fc
.
close
()
set_creator_type
(
cfile
)
set_creator_type
(
cfile
)
def
main
(
args
=
None
):
"""Compile several source files.
The files named in 'args' (or on the command line, if 'args' is
not specified) are compiled and the resulting bytecode is cached
in the normal manner. This function does not search a directory
structure to locate source files; it only compiles files named
explicitly.
"""
if
args
is
None
:
args
=
sys
.
argv
[
1
:]
for
filename
in
args
:
compile
(
filename
)
if
__name__
==
"__main__"
:
main
()
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