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
f3c5611f
Kaydet (Commit)
f3c5611f
authored
Eyl 18, 2004
tarafından
Martin v. Löwis
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Patch #1029061: Always extract member names from the tarinfo.
üst
39a31789
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
19 additions
and
25 deletions
+19
-25
tarfile.py
Lib/tarfile.py
+16
-25
NEWS
Misc/NEWS
+3
-0
No files found.
Lib/tarfile.py
Dosyayı görüntüle @
f3c5611f
...
...
@@ -814,7 +814,6 @@ class TarFile(object):
# Init datastructures
self
.
closed
=
False
self
.
members
=
[]
# list of members as TarInfo objects
self
.
membernames
=
[]
# names of members
self
.
_loaded
=
False
# flag if all members have been read
self
.
offset
=
0L
# current position in the archive file
self
.
inodes
=
{}
# dictionary caching the inodes of
...
...
@@ -1034,12 +1033,10 @@ class TarFile(object):
than once in the archive, its last occurence is assumed to be the
most up-to-date version.
"""
self
.
_check
()
if
name
not
in
self
.
membernames
and
not
self
.
_loaded
:
self
.
_load
()
if
name
not
in
self
.
membernames
:
tarinfo
=
self
.
_getmember
(
name
)
if
tarinfo
is
None
:
raise
KeyError
,
"filename
%
r not found"
%
name
return
self
.
_getmember
(
name
)
return
tarinfo
def
getmembers
(
self
):
"""Return the members of the archive as a list of TarInfo objects. The
...
...
@@ -1055,10 +1052,7 @@ class TarFile(object):
"""Return the members of the archive as a list of their names. It has
the same order as the list returned by getmembers().
"""
self
.
_check
()
if
not
self
.
_loaded
:
self
.
_load
()
return
self
.
membernames
return
[
tarinfo
.
name
for
tarinfo
in
self
.
getmembers
()]
def
gettarinfo
(
self
,
name
=
None
,
arcname
=
None
,
fileobj
=
None
):
"""Create a TarInfo object for either the file `name' or the file
...
...
@@ -1307,7 +1301,7 @@ class TarFile(object):
blocks
+=
1
self
.
offset
+=
blocks
*
BLOCKSIZE
self
.
_record_member
(
tarinfo
)
self
.
members
.
append
(
tarinfo
)
def
extract
(
self
,
member
,
path
=
""
):
"""Extract a member from the archive to the current working directory,
...
...
@@ -1632,7 +1626,7 @@ class TarFile(object):
# some old tar programs don't know DIRTYPE
tarinfo
.
type
=
DIRTYPE
self
.
_record_member
(
tarinfo
)
self
.
members
.
append
(
tarinfo
)
return
tarinfo
#--------------------------------------------------------------------------
...
...
@@ -1647,8 +1641,8 @@ class TarFile(object):
# if there is data to follow.
# 2. set self.offset to the position where the next member's header will
# begin.
# 3.
call self._record_member() if the tarinfo object is supposed to
# a
ppear a
s a member of the TarFile object.
# 3.
append the tarinfo object to self.members, if it is supposed to appear
# as a member of the TarFile object.
# 4. return tarinfo or another valid TarInfo object.
def
proc_gnulong
(
self
,
tarinfo
):
...
...
@@ -1729,7 +1723,7 @@ class TarFile(object):
self
.
offset
+=
self
.
_block
(
tarinfo
.
size
)
tarinfo
.
size
=
origsize
self
.
_record_member
(
tarinfo
)
self
.
members
.
append
(
tarinfo
)
return
tarinfo
# The type mapping for the next() method. The keys are single character
...
...
@@ -1757,20 +1751,17 @@ class TarFile(object):
"""Find an archive member by name from bottom to top.
If tarinfo is given, it is used as the starting point.
"""
# Ensure that all members have been loaded.
members
=
self
.
getmembers
()
if
tarinfo
is
None
:
end
=
len
(
self
.
members
)
end
=
len
(
members
)
else
:
end
=
self
.
members
.
index
(
tarinfo
)
end
=
members
.
index
(
tarinfo
)
for
i
in
xrange
(
end
-
1
,
-
1
,
-
1
):
if
name
==
self
.
membernames
[
i
]:
return
self
.
members
[
i
]
def
_record_member
(
self
,
tarinfo
):
"""Record a tarinfo object in the internal datastructures.
"""
self
.
members
.
append
(
tarinfo
)
self
.
membernames
.
append
(
tarinfo
.
name
)
if
name
==
members
[
i
]
.
name
:
return
members
[
i
]
def
_load
(
self
):
"""Read through the entire archive file and look for readable
...
...
Misc/NEWS
Dosyayı görüntüle @
f3c5611f
...
...
@@ -22,6 +22,9 @@ Extension modules
Library
-------
- The (undocumented) tarfile.Tarfile.membernames has been removed;
applications should use the getmember function.
- httplib now offers symbolic constants for the HTTP status codes.
- SF bug #1028306: Trying to compare a ``datetime.date`` to a
...
...
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