Path: csiph.com!usenet.pasdenom.info!news.franciliens.net!news.muarf.org!news.ecp.fr!feeder1.cambriumusenet.nl!82.197.223.108.MISMATCH!feeder2.cambriumusenet.nl!feed.tweaknews.nl!194.109.133.83.MISMATCH!newsfeed.xs4all.nl!newsfeed4a.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.033 X-Spam-Evidence: '*H*': 0.94; '*S*': 0.01; '21,': 0.07; 'python3': 0.07; 'url:blog': 0.10; 'cc:addr:python-list': 0.11; 'python': 0.11; 'jan': 0.12; '11:09': 0.16; '2.7.3': 0.16; 'from:addr:rosuav': 0.16; 'from:name:chris angelico': 0.16; 'worst': 0.16; 'wrote:': 0.18; 'wed,': 0.18; 'bit': 0.19; '>>>': 0.22; 'cc:addr:python.org': 0.22; 'unicode': 0.24; 'looks': 0.24; 'cc:2**0': 0.24; 'header:In-Reply-To:1': 0.27; 'message- id:@mail.gmail.com': 0.30; 'skip:( 20': 0.30; 'linux': 0.33; 'received:google.com': 0.35; 'described': 0.36; 'url:org': 0.36; 'pm,': 0.38; 'first': 0.61; 'more': 0.64; 'here': 0.66; 'mar': 0.68; 'apart': 0.72; 'bag': 0.74; '2014,': 0.84; '2015': 0.84; 'url:2014': 0.84; 'to:none': 0.92; 'wait,': 0.93 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:in-reply-to:references:date:message-id:subject:from:cc :content-type:content-transfer-encoding; bh=dd1NvD39PbKjqR9nVv9RrlhAaktTj7Z/XqthTkgxdNI=; b=MVDwDKqWZyy7cz9IKSAEWym9ItvVnR2JsnpZAhtMQGUXkga9HXCP7ZtNRvK+5wf5UH XPMvV1f3TDfoEBYZmDmzlI946acM3kiuolDW931/5BIrPX9k9K5zODrDKNNRBHpcOP6n AH0y4wsRB9juejsIbF53YzfjRlzVusX2FiwSTOv0tt/ffGAtT+FsML27e5gXo2C4+uBb yEM0m+dktenybmW04IAmytPMllK4WORSzN5KM6Gf6S8lsQmNRd+XSUCOM9NRIXi52RzB chAbvuEi+V6I6zQsnyUfdhjvA2n1GQmKIXkY3w9+/ZlD/uBfeJ3HO8oF508YfyUVPp81 Fcgg== MIME-Version: 1.0 X-Received: by 10.224.172.198 with SMTP id m6mr66991956qaz.11.1421843747018; Wed, 21 Jan 2015 04:35:47 -0800 (PST) In-Reply-To: References: <87ppa9944t.fsf@elektro.pacujo.net> Date: Wed, 21 Jan 2015 23:35:46 +1100 Subject: Re: Trees From: Chris Angelico Cc: "python-list@python.org" Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: quoted-printable 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: 30 NNTP-Posting-Host: 2001:888:2000:d::a6 X-Trace: 1421843755 news.xs4all.nl 2917 [2001:888:2000:d::a6]:51276 X-Complaints-To: abuse@xs4all.nl Xref: csiph.com comp.lang.python:84113 On Wed, Jan 21, 2015 at 11:09 PM, Rustom Mody wrote= : > I would like a set to be {1,2,3} or at worst =E2=A6=831,2,3=E2=A6=84 > and a bag to be =E2=9F=851,2,3=E2=9F=86 > > Apart from the unicode niceness that Ive described here > http://blog.languager.org/2014/04/unicoded-python.html > > Its a bit of a nuisance that we have to write set([1,2,3]) for the first Wait, what? rosuav@sikorsky:~$ python Python 2.7.3 (default, Mar 13 2014, 11:03:55) [GCC 4.7.2] on linux2 Type "help", "copyright", "credits" or "license" for more information. >>> type({1,2,3}) >>> rosuav@sikorsky:~$ python3 Python 3.5.0a0 (default:4709290253e3, Jan 20 2015, 21:48:07) [GCC 4.7.2] on linux Type "help", "copyright", "credits" or "license" for more information. >>> type({1,2,3}) >>> Looks like {1,2,3} works for me. ChrisA