From mboxrd@z Thu Jan  1 00:00:00 1970
Received: from pigeon.gentoo.org ([208.92.234.80] helo=lists.gentoo.org)
	by finch.gentoo.org with esmtp (Exim 4.60)
	(envelope-from <gentoo-user+bounces-138990-garchives=archives.gentoo.org@lists.gentoo.org>)
	id 1Sci25-0007qu-P6
	for garchives@archives.gentoo.org; Thu, 07 Jun 2012 19:06:11 +0000
Received: from pigeon.gentoo.org (localhost [127.0.0.1])
	by pigeon.gentoo.org (Postfix) with SMTP id AC5B1E0025;
	Thu,  7 Jun 2012 19:05:50 +0000 (UTC)
Received: from vergina.dyndns.org (cust-218-222.on4.ontelecoms.gr [92.118.218.222])
	by pigeon.gentoo.org (Postfix) with ESMTP id A6551E0663
	for <gentoo-user@lists.gentoo.org>; Thu,  7 Jun 2012 19:03:28 +0000 (UTC)
Received: from [192.168.0.1] (viper.vergina.dyndns.org [192.168.0.1])
	by viper.vergina.dyndns.org (Postfix) with ESMTP id C35E029E5;
	Thu,  7 Jun 2012 22:03:27 +0300 (EEST)
Message-ID: <4FD0FAFF.5090703@asyr.hopto.org>
Date: Thu, 07 Jun 2012 22:03:27 +0300
From: Thanasis <thanasis@asyr.hopto.org>
User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:10.0.4) Gecko/20120521 Thunderbird/10.0.4
Precedence: bulk
List-Post: <mailto:gentoo-user@lists.gentoo.org>
List-Help: <mailto:gentoo-user+help@lists.gentoo.org>
List-Unsubscribe: <mailto:gentoo-user+unsubscribe@lists.gentoo.org>
List-Subscribe: <mailto:gentoo-user+subscribe@lists.gentoo.org>
List-Id: Gentoo Linux mail <gentoo-user.gentoo.org>
X-BeenThere: gentoo-user@lists.gentoo.org
Reply-to: gentoo-user@lists.gentoo.org
MIME-Version: 1.0
To: gentoo-user@lists.gentoo.org
CC: Michael Mol <mikemol@gmail.com>
Subject: Re: [gentoo-user] resume_list.py
References: <4FD0F233.2060200@asyr.hopto.org> <CA+czFiDuVYiEtVM5XoG3CVR5HHJrmrgC4pR+KpVMdZzUSQ-_Ow@mail.gmail.com>
In-Reply-To: <CA+czFiDuVYiEtVM5XoG3CVR5HHJrmrgC4pR+KpVMdZzUSQ-_Ow@mail.gmail.com>
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-Archives-Salt: 65139b0f-84c4-421b-b7a9-c73cc97bb56a
X-Archives-Hash: 6ef342b524596d73aed7126a9e9a1d2c

on 06/07/2012 09:41 PM Michael Mol wrote the following:
> 
> In Python 3.x, 'print' is a function, not a builtin. So it'd be
> 
> print( "blah" )
> 
> instead of
> 
> print "blah"
> 
> There are standard scripts out there for converting between py2 and py3, FWIW.
> 

Correct!  Thanks!