From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: Davis Herring Newsgroups: gmane.emacs.devel Subject: Re: Dynamic loading progress Date: Fri, 13 Feb 2015 17:49:13 -0700 Organization: XCP-1 Message-ID: <54DE9B89.6070604@lanl.gov> References: <87y4t9m76w.fsf@lifelogs.com> <85k31coixa.fsf@stephe-leake.org> <85oapy5kt6.fsf@stephe-leake.org> <83y4oiiw81.fsf@gnu.org> <838ugdf251.fsf@gnu.org> <87bnl1vmqf.fsf@lifelogs.com> <87vbj8tow4.fsf@lifelogs.com> <87r3twtagf.fsf@lifelogs.com> <85siebl7ws.fsf@stephe-leake.org> <85k2znknxy.fsf@stephe-leake.org> NNTP-Posting-Host: plane.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 7bit X-Trace: ger.gmane.org 1423874987 5904 80.91.229.3 (14 Feb 2015 00:49:47 GMT) X-Complaints-To: usenet@ger.gmane.org NNTP-Posting-Date: Sat, 14 Feb 2015 00:49:47 +0000 (UTC) Cc: emacs-devel@gnu.org To: Stephen Leake Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Sat Feb 14 01:49:37 2015 Return-path: Envelope-to: ged-emacs-devel@m.gmane.org Original-Received: from lists.gnu.org ([208.118.235.17]) by plane.gmane.org with esmtp (Exim 4.69) (envelope-from ) id 1YMQvN-0001cQ-BZ for ged-emacs-devel@m.gmane.org; Sat, 14 Feb 2015 01:49:33 +0100 Original-Received: from localhost ([::1]:58365 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1YMQvM-00056K-EA for ged-emacs-devel@m.gmane.org; Fri, 13 Feb 2015 19:49:32 -0500 Original-Received: from eggs.gnu.org ([2001:4830:134:3::10]:50529) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1YMQv9-00053F-Ky for emacs-devel@gnu.org; Fri, 13 Feb 2015 19:49:20 -0500 Original-Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1YMQv6-0004wT-A2 for emacs-devel@gnu.org; Fri, 13 Feb 2015 19:49:19 -0500 Original-Received: from proofpoint5.lanl.gov ([2001:400:4210:400::a5]:54224) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1YMQv6-0004vw-07 for emacs-devel@gnu.org; Fri, 13 Feb 2015 19:49:16 -0500 Original-Received: from mailrelay2.lanl.gov (mailrelay2.lanl.gov [128.165.4.103]) by mailgate5.lanl.gov (8.14.7/8.14.7) with ESMTP id t1E0nDjD006386; Fri, 13 Feb 2015 17:49:13 -0700 Original-Received: from localhost (localhost.localdomain [127.0.0.1]) by mailrelay2.lanl.gov (Postfix) with ESMTP id A1860E9ECD9; Fri, 13 Feb 2015 17:49:13 -0700 (MST) X-NIE-2-Virus-Scanner: amavisd-new at mailrelay2.lanl.gov Original-Received: from [128.165.123.145] (xray-r10.lanl.gov [128.165.123.145]) by mailrelay2.lanl.gov (Postfix) with ESMTP id 717D6E9ECD3; Fri, 13 Feb 2015 17:49:13 -0700 (MST) User-Agent: Mozilla/5.0 (X11; U; Linux x86_64; en-US; rv:1.9.2.18) Gecko/20110717 Lanikai/3.1.11 In-Reply-To: <85k2znknxy.fsf@stephe-leake.org> X-Proofpoint-Virus-Version: vendor=fsecure engine=2.50.10432:5.13.68, 1.0.33, 0.0.0000 definitions=2015-02-13_07:2015-02-13, 2015-02-13, 1970-01-01 signatures=0 X-detected-operating-system: by eggs.gnu.org: Error: Malformed IPv6 address (bad octet value). X-Received-From: 2001:400:4210:400::a5 X-BeenThere: emacs-devel@gnu.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: "Emacs development discussions." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Original-Sender: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Xref: news.gmane.org gmane.emacs.devel:183036 Archived-At: > $ ./tests.py > File "./tests.py", line 47 > print "" > ^ > SyntaxError: invalid syntax [...] > So I'm assuming this is a python 2/3 incompatibility; is there a simple > way to accomodate both? print("") means the same thing in each. For more complicated cases, one can write "from __future__ import print_function" to make Python >=2.6 act like Python 3. Davis -- This product is sold by volume, not by mass. If it appears too dense or too sparse, it is because mass-energy conversion has occurred during shipping.