Support print() function with Python 2 in more files.
authorArfrever Frehtes Taifersar Arahesis <arfrever@gentoo.org>
Sun, 20 Sep 2009 16:41:30 +0000 (16:41 -0000)
committerArfrever Frehtes Taifersar Arahesis <arfrever@gentoo.org>
Sun, 20 Sep 2009 16:41:30 +0000 (16:41 -0000)
svn path=/main/trunk/; revision=14295

19 files changed:
pym/_emerge/Scheduler.py
pym/_emerge/actions.py
pym/_emerge/countdown.py
pym/_emerge/depgraph.py
pym/_emerge/emergelog.py
pym/_emerge/help.py
pym/_emerge/main.py
pym/_emerge/search.py
pym/_emerge/unmerge.py
pym/_emerge/userquery.py
pym/portage/__init__.py
pym/portage/cache/util.py
pym/portage/cvstree.py
pym/portage/dbapi/porttree.py
pym/portage/dbapi/vartree.py
pym/portage/dispatch_conf.py
pym/portage/elog/mod_echo.py
pym/portage/sets/__init__.py
pym/portage/sets/libs.py

index 4655be7ffebaa62916a72ae7101c58a690b14c29..337a14f6151ed38b2b8958d1a9b1e71c742663a5 100644 (file)
@@ -2,6 +2,8 @@
 # Distributed under the terms of the GNU General Public License v2
 # $Id$
 
+from __future__ import print_function
+
 import codecs
 import logging
 import sys
index fda9f3d81f0a599892af60e1028e99810165e5c9..7366b82c78c3be93c3defa00acf78fb55825a529 100644 (file)
@@ -2,6 +2,8 @@
 # Distributed under the terms of the GNU General Public License v2
 # $Id$
 
+from __future__ import print_function
+
 try:
        from subprocess import getstatusoutput as subprocess_getstatusoutput
 except ImportError:
index 28352ff434c68ac36c8a04d54dc654b423cf4d25..12c3e2c07f878465bb1b43f5e2f5fe98b35cc2bd 100644 (file)
@@ -2,6 +2,8 @@
 # Distributed under the terms of the GNU General Public License v2
 # $Id$
 
+from __future__ import print_function
+
 import sys
 import time
 
index 5d90ff0fb1452affb941c5db486fdd4e482066a1..33cb7b5ee5ba0cf3b6866f2330c4b11f3d649d66 100644 (file)
@@ -2,6 +2,8 @@
 # Distributed under the terms of the GNU General Public License v2
 # $Id$
 
+from __future__ import print_function
+
 import gc
 import logging
 import re
index 5b026bf6c8b82bcdd2835a3d3136e2676504f3ad..dbb0812ff355ddbc2ef3f291fcbf0fafd6e6945b 100644 (file)
@@ -2,6 +2,8 @@
 # Distributed under the terms of the GNU General Public License v2
 # $Id$
 
+from __future__ import print_function
+
 import codecs
 import sys
 import time
index 6e634f0cdd4e00bfac9227858ed74c2a50e84a39..f34691682f8fbd9a1ab9c404ad6710bfca77ae86 100644 (file)
@@ -2,6 +2,8 @@
 # Distributed under the terms of the GNU General Public License v2
 # $Id$
 
+from __future__ import print_function
+
 from portage.output import bold, turquoise, green
 
 def shorthelp():
index 9503146620d9c04b7b02a3778f768a97ef1314f7..2ed7667ef6f9879338697cbb26e7baf11354f924 100644 (file)
@@ -2,6 +2,8 @@
 # Distributed under the terms of the GNU General Public License v2
 # $Id$
 
+from __future__ import print_function
+
 import logging
 import signal
 import sys
index 1b43fbb8009e8852d47ea90cc094f0f02935b987..82c49b39c4c8892d5040560a8a425c0f03e855fa 100644 (file)
@@ -2,6 +2,8 @@
 # Distributed under the terms of the GNU General Public License v2
 # $Id$
 
+from __future__ import print_function
+
 import re
 from itertools import izip
 import portage
index f9ad5060634874c2e9eb378875575ceccaf6a2c3..bb6224fe7c6a6e995b42a19380d71db5d1895d78 100644 (file)
@@ -2,6 +2,8 @@
 # Distributed under the terms of the GNU General Public License v2
 # $Id$
 
+from __future__ import print_function
+
 import logging
 import sys
 import textwrap
index 9a62551df6be796daec6bb72245044fe83f93a21..db8cc4c792107d60e4e15819700b99650668c3aa 100644 (file)
@@ -2,6 +2,8 @@
 # Distributed under the terms of the GNU General Public License v2
 # $Id$
 
+from __future__ import print_function
+
 import sys
 
 from portage.output import bold, create_color_func
index deb7b2ff9994cceb4e88337e00625346a8a5f2ec..aa7520eddc8c855203d274aab90ac6c9328b42a9 100644 (file)
@@ -10,6 +10,8 @@ VERSION="$Rev$"[6:-2] + "-svn"
 # START OF IMPORTS -- START OF IMPORTS -- START OF IMPORTS -- START OF IMPORT
 # ===========================================================================
 
+from __future__ import print_function
+
 try:
        import sys
        import codecs
index 8eee5971d1e03160b0cbb6a9715e6d74578460b7..55bcb015ca6755ec6e08320a37867459c01c52b1 100644 (file)
@@ -3,6 +3,8 @@
 # License: GPL2
 # $Id$
 
+from __future__ import print_function
+
 __all__ = ["mirror_cache", "non_quiet_mirroring", "quiet_mirroring"]
 
 from itertools import chain
index de448fdd1c99136279afe2e815b06354076ecd09..1ecffa493486aecc4aedc8f4c8c1b6b53252a321 100644 (file)
@@ -3,6 +3,8 @@
 # Distributed under the terms of the GNU General Public License v2
 # $Id$
 
+from __future__ import print_function
+
 import codecs
 import re
 import time
index 9a1d6574635e474efb45f7d8409612ca69661c93..b46abb2cc01c0813edb833fe29846a7d54be2693 100644 (file)
@@ -2,6 +2,8 @@
 # Distributed under the terms of the GNU General Public License v2
 # $Id$
 
+from __future__ import print_function
+
 __all__ = ["portdbapi", "close_portdbapi_caches", "portagetree"]
 
 import portage
index 00a68312945e38d8cf1cc0148ba739c4aa04e321..74d12c99a0cf5906a7c634a370510e927d366c69 100644 (file)
@@ -2,6 +2,8 @@
 # Distributed under the terms of the GNU General Public License v2
 # $Id$
 
+from __future__ import print_function
+
 __all__ = ["PreservedLibsRegistry", "LinkageMap",
        "vardbapi", "vartree", "dblink"] + \
        ["write_contents", "tar_contents"]
index 971f9eb5f82200d9ee394ab93d336a854ad33c69..096ce0a7c9f7c8031346945b26e98c3484da5631 100644 (file)
@@ -7,6 +7,8 @@
 # Library by Wayne Davison <gentoo@blorf.net>, derived from code
 # written by Jeremy Wohl (http://igmus.org)
 
+from __future__ import print_function
+
 import os, sys, shutil
 try:
        from subprocess import getoutput as subprocess_getoutput
index f699e630c5d13f0c1c682131bb7d149039009a56..28d77649e489ec7668a0f9c2dbfb3b7da1d38aa3 100644 (file)
@@ -3,6 +3,8 @@
 # Distributed under the terms of the GNU General Public License v2
 # $Id$
 
+from __future__ import print_function
+
 from portage.output import EOutput, colorize
 from portage.const import EBUILD_PHASES
 from portage.localization import _
index 20923ca2ebc38980902ccc530696ca47deb1427e..c617efc3a5a2fe43b9db4ad7d5afb0ba902e74b2 100644 (file)
@@ -5,6 +5,8 @@
 __all__ = ["SETPREFIX", "get_boolean", "SetConfigError",
        "SetConfig", "load_default_config"]
 
+from __future__ import print_function
+
 try:
        from configparser import SafeConfigParser, NoOptionError
 except ImportError:
index ede1227255e008478f89b69236362d86d97d314e..d7e4c731a77971d65998e14bdb166bdff503a645 100644 (file)
@@ -2,6 +2,8 @@
 # Distributed under the terms of the GNU General Public License v2
 # $Id$
 
+from __future__ import print_function
+
 from portage.localization import _
 from portage.sets.base import PackageSet
 from portage.sets import get_boolean