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
a5076a25
Kaydet (Commit)
a5076a25
authored
Kas 29, 2009
tarafından
Tarek Ziadé
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Fixed #7408: dropped group ownership checking because it relies on os-specific rules
üst
c4ab8339
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
8 additions
and
1 deletion
+8
-1
test_sdist.py
Lib/distutils/tests/test_sdist.py
+4
-1
NEWS
Misc/NEWS
+4
-0
No files found.
Lib/distutils/tests/test_sdist.py
Dosyayı görüntüle @
a5076a25
...
@@ -336,10 +336,13 @@ class SDistTestCase(PyPIRCCommandTestCase):
...
@@ -336,10 +336,13 @@ class SDistTestCase(PyPIRCCommandTestCase):
# making sure we have the good rights
# making sure we have the good rights
archive_name
=
join
(
self
.
tmp_dir
,
'dist'
,
'fake-1.0.tar.gz'
)
archive_name
=
join
(
self
.
tmp_dir
,
'dist'
,
'fake-1.0.tar.gz'
)
archive
=
tarfile
.
open
(
archive_name
)
archive
=
tarfile
.
open
(
archive_name
)
# note that we are not testing the group ownership here
# because, depending on the platforms and the container
# rights (see #7408)
try
:
try
:
for
member
in
archive
.
getmembers
():
for
member
in
archive
.
getmembers
():
self
.
assertEquals
(
member
.
uid
,
os
.
getuid
())
self
.
assertEquals
(
member
.
uid
,
os
.
getuid
())
self
.
assertEquals
(
member
.
gid
,
os
.
getgid
())
finally
:
finally
:
archive
.
close
()
archive
.
close
()
...
...
Misc/NEWS
Dosyayı görüntüle @
a5076a25
...
@@ -487,6 +487,10 @@ Core and Builtins
...
@@ -487,6 +487,10 @@ Core and Builtins
Library
Library
-------
-------
- Issue #7408: Fixed distutils.tests.sdist so it doesn't check for group
ownership when the group is not forced, because the group may be different
from the user's group and inherit from its container when the test is run.
- Issue #1515: Enable use of deepcopy() with instance methods. Patch by
- Issue #1515: Enable use of deepcopy() with instance methods. Patch by
Robert Collins.
Robert Collins.
...
...
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