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
0063958c
Kaydet (Commit)
0063958c
authored
Agu 02, 2010
tarafından
Georg Brandl
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Minimum fixes to make freeze.py do something useful.
üst
bf76ce16
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
7 additions
and
8 deletions
+7
-8
freeze.py
Tools/freeze/freeze.py
+1
-1
makeconfig.py
Tools/freeze/makeconfig.py
+6
-7
No files found.
Tools/freeze/freeze.py
Dosyayı görüntüle @
0063958c
...
@@ -201,7 +201,7 @@ def main():
...
@@ -201,7 +201,7 @@ def main():
# modules that are imported by the Python runtime
# modules that are imported by the Python runtime
implicits
=
[]
implicits
=
[]
for
module
in
(
'site'
,
'warnings'
,):
for
module
in
(
'site'
,
'warnings'
,
'encodings.utf_8'
,
'encodings.latin_1'
):
if
module
not
in
exclude
:
if
module
not
in
exclude
:
implicits
.
append
(
module
)
implicits
.
append
(
module
)
...
...
Tools/freeze/makeconfig.py
Dosyayı görüntüle @
0063958c
...
@@ -3,14 +3,13 @@ import re
...
@@ -3,14 +3,13 @@ import re
# Write the config.c file
# Write the config.c file
never
=
[
'marshal'
,
'__main__'
,
'builtins'
,
'sys'
,
'exceptions'
,
'_warnings'
]
never
=
[
'marshal'
,
'imp'
,
'_ast'
,
'__main__'
,
'builtins'
,
'sys'
,
'gc'
,
'_warnings'
]
def
makeconfig
(
infp
,
outfp
,
modules
,
with_ifdef
=
0
):
def
makeconfig
(
infp
,
outfp
,
modules
,
with_ifdef
=
0
):
m1
=
re
.
compile
(
'-- ADDMODULE MARKER 1 --'
)
m1
=
re
.
compile
(
'-- ADDMODULE MARKER 1 --'
)
m2
=
re
.
compile
(
'-- ADDMODULE MARKER 2 --'
)
m2
=
re
.
compile
(
'-- ADDMODULE MARKER 2 --'
)
while
1
:
for
line
in
infp
:
line
=
infp
.
readline
()
if
not
line
:
break
outfp
.
write
(
line
)
outfp
.
write
(
line
)
if
m1
and
m1
.
search
(
line
):
if
m1
and
m1
.
search
(
line
):
m1
=
None
m1
=
None
...
@@ -18,8 +17,8 @@ def makeconfig(infp, outfp, modules, with_ifdef=0):
...
@@ -18,8 +17,8 @@ def makeconfig(infp, outfp, modules, with_ifdef=0):
if
mod
in
never
:
if
mod
in
never
:
continue
continue
if
with_ifdef
:
if
with_ifdef
:
outfp
.
write
(
"#ifndef
init
%
s
\n
"
%
mod
)
outfp
.
write
(
"#ifndef
PyInit_
%
s
\n
"
%
mod
)
outfp
.
write
(
'extern
void init
%
s(void);
\n
'
%
mod
)
outfp
.
write
(
'extern
PyObject* PyInit_
%
s(void);
\n
'
%
mod
)
if
with_ifdef
:
if
with_ifdef
:
outfp
.
write
(
"#endif
\n
"
)
outfp
.
write
(
"#endif
\n
"
)
elif
m2
and
m2
.
search
(
line
):
elif
m2
and
m2
.
search
(
line
):
...
@@ -27,7 +26,7 @@ def makeconfig(infp, outfp, modules, with_ifdef=0):
...
@@ -27,7 +26,7 @@ def makeconfig(infp, outfp, modules, with_ifdef=0):
for
mod
in
modules
:
for
mod
in
modules
:
if
mod
in
never
:
if
mod
in
never
:
continue
continue
outfp
.
write
(
'
\t
{"
%
s",
init
%
s},
\n
'
%
outfp
.
write
(
'
\t
{"
%
s",
PyInit_
%
s},
\n
'
%
(
mod
,
mod
))
(
mod
,
mod
))
if
m1
:
if
m1
:
sys
.
stderr
.
write
(
'MARKER 1 never found
\n
'
)
sys
.
stderr
.
write
(
'MARKER 1 never found
\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