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
fb173cd4
Kaydet (Commit)
fb173cd4
authored
Ara 10, 2001
tarafından
Michael W. Hudson
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Fix for
[ #409430 ] pydoc install broken
üst
52306a78
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
11 additions
and
2 deletions
+11
-2
build_scripts.py
Lib/distutils/command/build_scripts.py
+11
-2
No files found.
Lib/distutils/command/build_scripts.py
Dosyayı görüntüle @
fb173cd4
...
...
@@ -7,6 +7,7 @@ Implements the Distutils 'build_scripts' command."""
__revision__
=
"$Id$"
import
sys
,
os
,
re
from
distutils
import
sysconfig
from
distutils.core
import
Command
from
distutils.dep_util
import
newer
from
distutils.util
import
convert_path
...
...
@@ -86,8 +87,16 @@ class build_scripts (Command):
(
script
,
self
.
build_dir
))
if
not
self
.
dry_run
:
outf
=
open
(
outfile
,
"w"
)
outf
.
write
(
"#!
%
s
%
s
\n
"
%
(
os
.
path
.
normpath
(
sys
.
executable
),
post_interp
))
if
not
sysconfig
.
python_build
:
outf
.
write
(
"#!
%
s
%
s
\n
"
%
(
os
.
path
.
normpath
(
sys
.
executable
),
post_interp
))
else
:
outf
.
write
(
"#!
%
s
%
s"
%
(
os
.
path
.
join
(
sysconfig
.
get_config_var
(
"BINDIR"
),
"python"
+
sysconfig
.
get_config_var
(
"EXE"
)),
post_interp
))
outf
.
writelines
(
f
.
readlines
())
outf
.
close
()
if
f
:
...
...
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