Author: christian.heimes Date: Fri Nov 2 15:27:09 2007 New Revision: 58772
Modified: python/branches/py3k-pep3137/Lib/tarfile.py Log: Fixed encoding of tarfile.py. I've removed the iso-8859-1 encoding flag, too. Modified: python/branches/py3k-pep3137/Lib/tarfile.py ============================================================================== --- python/branches/py3k-pep3137/Lib/tarfile.py (original) +++ python/branches/py3k-pep3137/Lib/tarfile.py Fri Nov 2 15:27:09 2007 @@ -1,9 +1,8 @@ #!/usr/bin/env python -# -*- coding: iso-8859-1 -*- #------------------------------------------------------------------- # tarfile.py #------------------------------------------------------------------- -# Copyright (C) 2002 Lars Gust�bel <[EMAIL PROTECTED]> +# Copyright (C) 2002 Lars Gustaebel <[EMAIL PROTECTED]> # All rights reserved. # # Permission is hereby granted, free of charge, to any person @@ -31,13 +30,12 @@ """ __version__ = "$Revision$" -# $Source$ version = "0.9.0" -__author__ = "Lars Gust�bel ([EMAIL PROTECTED])" +__author__ = "Lars Gust\u00e4bel ([EMAIL PROTECTED])" __date__ = "$Date$" __cvsid__ = "$Id$" -__credits__ = "Gustavo Niemeyer, Niels Gust�bel, Richard Townsend." +__credits__ = "Gustavo Niemeyer, Niels Gust\u00e4bel, Richard Townsend." #--------- # Imports _______________________________________________ Python-3000-checkins mailing list [email protected] http://mail.python.org/mailman/listinfo/python-3000-checkins
