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
f638486c
Kaydet (Commit)
f638486c
authored
Eki 03, 2009
tarafından
Tarek Ziadé
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
removing the last remaning apply() calls
üst
1b48671e
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
3 additions
and
3 deletions
+3
-3
archive_util.py
Lib/distutils/archive_util.py
+1
-1
dir_util.py
Lib/distutils/dir_util.py
+1
-1
filelist.py
Lib/distutils/filelist.py
+1
-1
No files found.
Lib/distutils/archive_util.py
Dosyayı görüntüle @
f638486c
...
...
@@ -233,7 +233,7 @@ def make_archive(base_name, format, root_dir=None, base_dir=None, verbose=0,
kwargs
[
'owner'
]
=
owner
kwargs
[
'group'
]
=
group
filename
=
apply
(
func
,
(
base_name
,
base_dir
),
kwargs
)
filename
=
func
(
base_name
,
base_dir
,
**
kwargs
)
if
root_dir
is
not
None
:
log
.
debug
(
"changing back to '
%
s'"
,
save_cwd
)
os
.
chdir
(
save_cwd
)
...
...
Lib/distutils/dir_util.py
Dosyayı görüntüle @
f638486c
...
...
@@ -190,7 +190,7 @@ def remove_tree(directory, verbose=1, dry_run=0):
_build_cmdtuple
(
directory
,
cmdtuples
)
for
cmd
in
cmdtuples
:
try
:
apply
(
cmd
[
0
],
(
cmd
[
1
],)
)
cmd
[
0
](
cmd
[
1
]
)
# remove dir from cache if it's already there
abspath
=
os
.
path
.
abspath
(
cmd
[
1
])
if
abspath
in
_path_created
:
...
...
Lib/distutils/filelist.py
Dosyayı görüntüle @
f638486c
...
...
@@ -61,7 +61,7 @@ class FileList:
sortable_files
.
sort
()
self
.
files
=
[]
for
sort_tuple
in
sortable_files
:
self
.
files
.
append
(
apply
(
os
.
path
.
join
,
sort_tuple
))
self
.
files
.
append
(
os
.
path
.
join
(
*
sort_tuple
))
# -- Other miscellaneous utility methods ---------------------------
...
...
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