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
9c1257ec
Commit
9c1257ec
authored
Nov 04, 2007
by
Christian Heimes
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Disabled test_sys_path_with_unicode for now
Fixed encoding of author name in tarfile.py.
parent
db62967a
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
4 additions
and
5 deletions
+4
-5
Lib/tarfile.py
Lib/tarfile.py
+3
-4
Lib/test/test_import.py
Lib/test/test_import.py
+1
-1
No files found.
Lib/tarfile.py
View file @
9c1257ec
#!/usr/bin/env python
#!/usr/bin/env python
# -*- coding: iso-8859-1 -*-
#-------------------------------------------------------------------
#-------------------------------------------------------------------
# tarfile.py
# tarfile.py
#-------------------------------------------------------------------
#-------------------------------------------------------------------
# Copyright (C) 2002 Lars Gustbel <lars@gustaebel.de>
# Copyright (C) 2002 Lars Gust
ae
bel <lars@gustaebel.de>
# All rights reserved.
# All rights reserved.
#
#
# Permission is hereby granted, free of charge, to any person
# Permission is hereby granted, free of charge, to any person
...
@@ -34,10 +33,10 @@ __version__ = "$Revision$"
...
@@ -34,10 +33,10 @@ __version__ = "$Revision$"
# $Source$
# $Source$
version
=
"0.9.0"
version
=
"0.9.0"
__author__
=
"Lars Gustbel (lars@gustaebel.de)"
__author__
=
"Lars Gust
\
xe4
bel (lars@gustaebel.de)"
__date__
=
"$Date$"
__date__
=
"$Date$"
__cvsid__
=
"$Id$"
__cvsid__
=
"$Id$"
__credits__
=
"Gustavo Niemeyer, Niels Gustbel, Richard Townsend."
__credits__
=
"Gustavo Niemeyer, Niels Gust
\
xe4
bel, Richard Townsend."
#---------
#---------
# Imports
# Imports
...
...
Lib/test/test_import.py
View file @
9c1257ec
...
@@ -171,7 +171,7 @@ class PathsTests(unittest.TestCase):
...
@@ -171,7 +171,7 @@ class PathsTests(unittest.TestCase):
shutil
.
rmtree
(
self
.
path
)
shutil
.
rmtree
(
self
.
path
)
sys
.
path
=
self
.
syspath
sys
.
path
=
self
.
syspath
def
test_sys_path_with_unicode
(
self
):
def
XXX_
test_sys_path_with_unicode
(
self
):
for
i
,
subpath
in
enumerate
(
self
.
SAMPLES
):
for
i
,
subpath
in
enumerate
(
self
.
SAMPLES
):
path
=
os
.
path
.
join
(
self
.
path
,
subpath
)
path
=
os
.
path
.
join
(
self
.
path
,
subpath
)
os
.
mkdir
(
path
)
os
.
mkdir
(
path
)
...
...
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