Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
C
cpython
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
cpython
Commits
2f5097bb
Commit
2f5097bb
authored
Jan 04, 2008
by
Lars Gustäbel
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Issue #1735: TarFile.extractall() now correctly sets
directory permissions and times. (will backport to 2.5)
parent
a58ab963
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
24 additions
and
4 deletions
+24
-4
Lib/tarfile.py
Lib/tarfile.py
+4
-4
Lib/test/test_tarfile.py
Lib/test/test_tarfile.py
+17
-0
Misc/NEWS
Misc/NEWS
+3
-0
No files found.
Lib/tarfile.py
View file @
2f5097bb
...
...
@@ -2037,11 +2037,11 @@ class TarFile(object):
# Set correct owner, mtime and filemode on directories.
for tarinfo in directories:
path = os.path.join(path, tarinfo.name)
dir
path = os.path.join(path, tarinfo.name)
try:
self.chown(tarinfo, path)
self.utime(tarinfo, path)
self.chmod(tarinfo, path)
self.chown(tarinfo,
dir
path)
self.utime(tarinfo,
dir
path)
self.chmod(tarinfo,
dir
path)
except ExtractError, e:
if self.errorlevel > 1:
raise
...
...
Lib/test/test_tarfile.py
View file @
2f5097bb
...
...
@@ -244,6 +244,23 @@ class MiscReadTest(ReadTest):
data
=
open
(
os
.
path
.
join
(
TEMPDIR
,
"ustar/symtype"
),
"rb"
).
read
()
self
.
assertEqual
(
md5sum
(
data
),
md5_regtype
)
def
test_extractall
(
self
):
# Test if extractall() correctly restores directory permissions
# and times (see issue1735).
if
sys
.
platform
==
"win32"
:
# Win32 has no support for utime() on directories or
# fine grained permissions.
return
tar
=
tarfile
.
open
(
tarname
,
encoding
=
"iso8859-1"
)
directories
=
[
t
for
t
in
tar
if
t
.
isdir
()]
tar
.
extractall
(
TEMPDIR
,
directories
)
for
tarinfo
in
directories
:
path
=
os
.
path
.
join
(
TEMPDIR
,
tarinfo
.
name
)
self
.
assertEqual
(
tarinfo
.
mode
&
0777
,
os
.
stat
(
path
).
st_mode
&
0777
)
self
.
assertEqual
(
tarinfo
.
mtime
,
os
.
path
.
getmtime
(
path
))
tar
.
close
()
class
StreamReadTest
(
ReadTest
):
...
...
Misc/NEWS
View file @
2f5097bb
...
...
@@ -342,6 +342,9 @@ Core and builtins
Library
-------
- Issue #1735: TarFile.extractall() now correctly sets directory permissions
and times.
- Bug #1713: posixpath.ismount() claims symlink to a mountpoint is a mountpoint.
- Bug #1687: Fxed plistlib.py restricts <integer> to Python int when writing
...
...
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