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
94487d45
Unverified
Kaydet (Commit)
94487d45
authored
Tem 20, 2018
tarafından
Vinay Sajip
Kaydeden (comit)
GitHub
Tem 20, 2018
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
bpo-34011: Update code copying DLLs and init.tcl into venvs. (GH-8253)
üst
cb5f3fdb
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
9 additions
and
1 deletion
+9
-1
__init__.py
Lib/venv/__init__.py
+5
-1
2018-07-11-15-58-06.bpo-34011.Ho_d5T.rst
...S.d/next/Windows/2018-07-11-15-58-06.bpo-34011.Ho_d5T.rst
+4
-0
No files found.
Lib/venv/__init__.py
Dosyayı görüntüle @
94487d45
...
...
@@ -9,6 +9,7 @@ import os
import
shutil
import
subprocess
import
sys
import
sysconfig
import
types
logger
=
logging
.
getLogger
(
__name__
)
...
...
@@ -207,7 +208,10 @@ class EnvBuilder:
copier
(
context
.
env_exe
,
path
,
relative_symlinks_ok
=
True
)
if
not
os
.
path
.
islink
(
path
):
os
.
chmod
(
path
,
0
o755
)
else
:
elif
sysconfig
.
is_python_build
(
True
):
# See bpo-34011. This copying code should only be needed when a
# venv is created from a source Python build (i.e. not an installed
# Python)
subdir
=
'DLLs'
include
=
self
.
include_binary
files
=
[
f
for
f
in
os
.
listdir
(
dirname
)
if
include
(
f
)]
...
...
Misc/NEWS.d/next/Windows/2018-07-11-15-58-06.bpo-34011.Ho_d5T.rst
0 → 100644
Dosyayı görüntüle @
94487d45
A suite of code has been changed which copied across DLLs and init.tcl from
the running Python location into a venv being created. These copies are needed
only when running from a Python source build, and the copying code is now only
run when that is the case, rather than whenever a venv is created.
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