Path: csiph.com!v102.xanadu-bbs.net!xanadu-bbs.net!feeder.erje.net!eu.feeder.erje.net!newsfeed.xs4all.nl!newsfeed2.news.xs4all.nl!xs4all!post.news.xs4all.nl!not-for-mail Return-Path: X-Original-To: python-list@python.org Delivered-To: python-list@mail.python.org X-Spam-Status: OK 0.001 X-Spam-Evidence: '*H*': 1.00; '*S*': 0.00; 'fixes': 0.07; 'ascii': 0.09; 'received:80.91': 0.09; 'received:80.91.229': 0.09; 'received:gmane.org': 0.09; 'received:list': 0.09; 'try:': 0.09; '__future__': 0.16; 'nameerror:': 0.16; 'received:80.91.229.3': 0.16; 'received:plane.gmane.org': 0.16; 'repr': 0.16; 'subject:3.3': 0.16; 'subject:python': 0.16; 'wrote:': 0.18; 'import': 0.22; 'cc:addr:gmail.com': 0.22; 'header:User-Agent:1': 0.23; 'cc:2**0': 0.24; 'header:X-Complaints-To:1': 0.27; 'header :In-Reply-To:1': 0.27; 'function': 0.29; 'apparently': 0.31; 'except': 0.35; 'to:addr:python-list': 0.38; 'rather': 0.38; 'to:addr:python.org': 0.39; 'received:org': 0.40; 'received:109': 0.72 X-Injected-Via-Gmane: http://gmane.org/ To: python-list@python.org From: Robin Becker Subject: Re: python 3.3 repr Date: Fri, 15 Nov 2013 14:52:02 +0000 References: Mime-Version: 1.0 Content-Type: text/plain; charset=UTF-8; format=flowed Content-Transfer-Encoding: 7bit X-Gmane-NNTP-Posting-Host: 109.174.168.73 User-Agent: Mozilla/5.0 (Windows NT 5.1; rv:24.0) Gecko/20100101 Thunderbird/24.1.0 In-Reply-To: Cc: Serhiy Storchaka X-BeenThere: python-list@python.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: General discussion list for the Python programming language List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Newsgroups: comp.lang.python Message-ID: Lines: 26 NNTP-Posting-Host: 2001:888:2000:d::a6 X-Trace: 1384527134 news.xs4all.nl 15904 [2001:888:2000:d::a6]:48613 X-Complaints-To: abuse@xs4all.nl Xref: csiph.com comp.lang.python:59528 On 15/11/2013 14:40, Serhiy Storchaka wrote: ...... >> and then use repr throughout. > > Or rather > > try: > ascii > except NameError: > ascii = repr > > and then use ascii throughout. > > apparently you can import ascii from future_builtins and the print() function is available as from __future__ import print_function nothing fixes all those %r formats to be %a though :( -- Robin Becker