diff options
author | Zac Medico <zmedico@gentoo.org> | 2011-10-14 08:30:17 -0700 |
---|---|---|
committer | Zac Medico <zmedico@gentoo.org> | 2011-10-14 08:30:17 -0700 |
commit | 41f95b75ceb77d33f0335455788a93c68c58aa69 (patch) | |
tree | 235c06edf27fbb1ec29fc45dec98d2e3b339fda1 | |
parent | d60105f611515f32b53b1eb4afa65f3a0d8a9056 (diff) | |
download | portage-41f95b75ceb77d33f0335455788a93c68c58aa69.tar.gz portage-41f95b75ceb77d33f0335455788a93c68c58aa69.tar.bz2 portage-41f95b75ceb77d33f0335455788a93c68c58aa69.zip |
Revert "Use plain ascii encoding for this file"
This reverts commit 2a4b07c8d0105ea7418ea3afc9e777a7a396fc46.
Current python ebuilds no longer remove the encodings directory when
USE=ebuild is enabled, so now it's possible to use UTF8 encoding in
python source files without triggering unsightly SyntaxError messages
when python_mod_optimize is compiling byte-code files.
-rw-r--r-- | pym/portage/cache/ebuild_xattr.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/pym/portage/cache/ebuild_xattr.py b/pym/portage/cache/ebuild_xattr.py index 6b388faaf..0086e40a3 100644 --- a/pym/portage/cache/ebuild_xattr.py +++ b/pym/portage/cache/ebuild_xattr.py @@ -1,5 +1,6 @@ +# -*- coding: UTF8 -*- # Copyright: 2009-2011 Gentoo Foundation -# Author(s): Petteri Räty (betelgeuse@gentoo.org) +# Author(s): Petteri Räty (betelgeuse@gentoo.org) # License: GPL2 __all__ = ['database'] |