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
bf9183ee
Kaydet (Commit)
bf9183ee
authored
Mar 31, 2001
tarafından
Moshe Zadka
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
- distutils/command/install.py - make .get_outputs() produce a list of unique
filenames
üst
6aae5c30
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
9 additions
and
2 deletions
+9
-2
install.py
Lib/distutils/command/install.py
+5
-1
NEWS
Misc/NEWS
+4
-1
No files found.
Lib/distutils/command/install.py
Dosyayı görüntüle @
bf9183ee
...
@@ -529,7 +529,11 @@ class install (Command):
...
@@ -529,7 +529,11 @@ class install (Command):
outputs
=
[]
outputs
=
[]
for
cmd_name
in
self
.
get_sub_commands
():
for
cmd_name
in
self
.
get_sub_commands
():
cmd
=
self
.
get_finalized_command
(
cmd_name
)
cmd
=
self
.
get_finalized_command
(
cmd_name
)
outputs
.
extend
(
cmd
.
get_outputs
())
# Add the contents of cmd.get_outputs(), ensuring
# that outputs doesn't contain duplicate entries
for
filename
in
cmd
.
get_outputs
():
if
filename
not
in
outputs
:
outputs
.
append
(
filename
)
return
outputs
return
outputs
...
...
Misc/NEWS
Dosyayı görüntüle @
bf9183ee
...
@@ -146,10 +146,13 @@ http://sourceforge.net/tracker/index.php?func=detail&aid=<id>&group_id=5470&atid
...
@@ -146,10 +146,13 @@ http://sourceforge.net/tracker/index.php?func=detail&aid=<id>&group_id=5470&atid
- urllib.py - provide simple recovery/escape from apparent redirect recursion
- urllib.py - provide simple recovery/escape from apparent redirect recursion
- #129288 - urllib.py - chan
ign
%02x to %02X in quoting
- #129288 - urllib.py - chan
ging
%02x to %02X in quoting
- urllib.py - HTTPS now works with string URLs
- urllib.py - HTTPS now works with string URLs
- distutils/command/install.py - make .get_outputs() produce a list of unique
filenames
What's New in Python 2.0?
What's New in Python 2.0?
=========================
=========================
...
...
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