summaryrefslogtreecommitdiffstats
path: root/Lib/tarfile.py
diff options
context:
space:
mode:
authorChristian Heimes <christian@cheimes.de>2007-11-04 11:37:22 (GMT)
committerChristian Heimes <christian@cheimes.de>2007-11-04 11:37:22 (GMT)
commit9c1257ecf83cc52986995367cedbb093fda140af (patch)
tree729765b673ecac5aaf090ecad25fadd6fed534be /Lib/tarfile.py
parentdb62967a46e3ced2c731a5f4dc7846ac696827f2 (diff)
downloadcpython-9c1257ecf83cc52986995367cedbb093fda140af.zip
cpython-9c1257ecf83cc52986995367cedbb093fda140af.tar.gz
cpython-9c1257ecf83cc52986995367cedbb093fda140af.tar.bz2
Disabled test_sys_path_with_unicode for now
Fixed encoding of author name in tarfile.py.
Diffstat (limited to 'Lib/tarfile.py')
-rw-r--r--Lib/tarfile.py7
1 files changed, 3 insertions, 4 deletions
diff --git a/Lib/tarfile.py b/Lib/tarfile.py
index 188b61e..4864d97 100644
--- a/Lib/tarfile.py
+++ b/Lib/tarfile.py
@@ -1,9 +1,8 @@
#!/usr/bin/env python
-# -*- coding: iso-8859-1 -*-
#-------------------------------------------------------------------
# tarfile.py
#-------------------------------------------------------------------
-# Copyright (C) 2002 Lars Gustäbel <lars@gustaebel.de>
+# Copyright (C) 2002 Lars Gustaebel <lars@gustaebel.de>
# All rights reserved.
#
# Permission is hereby granted, free of charge, to any person
@@ -34,10 +33,10 @@ __version__ = "$Revision$"
# $Source$
version = "0.9.0"
-__author__ = "Lars Gustäbel (lars@gustaebel.de)"
+__author__ = "Lars Gust\xe4bel (lars@gustaebel.de)"
__date__ = "$Date$"
__cvsid__ = "$Id$"
-__credits__ = "Gustavo Niemeyer, Niels Gustäbel, Richard Townsend."
+__credits__ = "Gustavo Niemeyer, Niels Gust\xe4bel, Richard Townsend."
#---------
# Imports