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
a47ca08a
Kaydet (Commit)
a47ca08a
authored
Agu 20, 2016
tarafından
Jason R. Coombs
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Issue #27819: Simply default to gztar for sdist formats by default on all platforms.
üst
3766572a
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
4 additions
and
11 deletions
+4
-11
sdist.py
Lib/distutils/command/sdist.py
+1
-11
NEWS
Misc/NEWS
+3
-0
No files found.
Lib/distutils/command/sdist.py
Dosyayı görüntüle @
a47ca08a
...
...
@@ -91,9 +91,6 @@ class sdist(Command):
negative_opt
=
{
'no-defaults'
:
'use-defaults'
,
'no-prune'
:
'prune'
}
default_format
=
{
'posix'
:
'gztar'
,
'nt'
:
'zip'
}
sub_commands
=
[(
'check'
,
checking_metadata
)]
def
initialize_options
(
self
):
...
...
@@ -110,7 +107,7 @@ class sdist(Command):
self
.
manifest_only
=
0
self
.
force_manifest
=
0
self
.
formats
=
None
self
.
formats
=
[
'gztar'
]
self
.
keep_temp
=
0
self
.
dist_dir
=
None
...
...
@@ -126,13 +123,6 @@ class sdist(Command):
self
.
template
=
"MANIFEST.in"
self
.
ensure_string_list
(
'formats'
)
if
self
.
formats
is
None
:
try
:
self
.
formats
=
[
self
.
default_format
[
os
.
name
]]
except
KeyError
:
raise
DistutilsPlatformError
(
"don't know how to create source distributions "
"on platform
%
s"
%
os
.
name
)
bad_format
=
archive_util
.
check_archive_formats
(
self
.
formats
)
if
bad_format
:
...
...
Misc/NEWS
Dosyayı görüntüle @
a47ca08a
...
...
@@ -20,6 +20,9 @@ Core and Builtins
Library
-------
- Issue #27819: In distutils sdists, simply produce the "gztar" (gzipped tar
format) distributions on all platforms unless "formats" is supplied.
- Issue #2466: posixpath.ismount now correctly recognizes mount points which
the user does not have permission to access.
...
...
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