Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > comp.lang.python > #38098
| Path | csiph.com!v102.xanadu-bbs.net!xanadu-bbs.net!us.feeder.erje.net!feeder.erje.net!eu.feeder.erje.net!news2.arglkargh.de!newsfeed.straub-nv.de!newsreader4.netcologne.de!news.netcologne.de!newsfeed.freenet.ag!news2.euro.net!newsgate.cistron.nl!newsgate.news.xs4all.nl!194.109.133.83.MISMATCH!newsfeed.xs4all.nl!newsfeed4.news.xs4all.nl!xs4all!post.news.xs4all.nl!not-for-mail |
|---|---|
| Return-Path | <rosuav@gmail.com> |
| X-Original-To | python-list@python.org |
| Delivered-To | python-list@mail.python.org |
| X-Spam-Status | OK 0.076 |
| X-Spam-Evidence | '*H*': 0.85; '*S*': 0.00; 'already.': 0.09; 'from:addr:rosuav': 0.16; 'from:name:chris angelico': 0.16; 'subject:dictionaries': 0.16; 'wrote:': 0.17; 'mechanism': 0.17; '>>>': 0.18; 'feb': 0.19; 'tuples': 0.22; 'so.': 0.24; 'header:In- Reply-To:1': 0.25; 'looks': 0.26; 'message-id:@mail.gmail.com': 0.27; 'fine': 0.28; 'to:addr:python-list': 0.33; 'received:google.com': 0.34; 'list': 0.35; 'pm,': 0.35; 'received:209.85': 0.35; 'explain': 0.36; 'michael': 0.36; 'subject:Please': 0.36; 'why': 0.37; 'received:209': 0.37; 'subject:: ': 0.38; 'skip:l 20': 0.38; 'to:addr:python.org': 0.39; 'your': 0.60; 'burden': 0.65; '2013': 0.84; 'subject:better': 0.84; 'subject:provide': 0.84 |
| DKIM-Signature | v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:x-received:in-reply-to:references:date:message-id :subject:from:to:content-type; bh=B9U2b/5SNGlH64PYJoJFuiookncUm6hoTybJ3nIA8vc=; b=LijaiL/Eu/OyfhVAHGMUEOqNGOcPQUWXc/hLJxCMcO3eSTxUQ3uw/hhho547n9zX+z 0Ql4iUrCc0Ri6OcVQluApY97803uKmukW8+opOdfscWDP3Fvp6c6yHZQOye1JuyCIUh7 cjGVRVgiM0uiZEFRoUd0Fh3k+6wap+STHYWBkBFuzAvxMP4cSfpjyGfwvo1uImhvWX4Q Q+pdN80OZAcHE3IeQWROxgcMlSqOMQ4iUQLHkfEBQnk+r5n4/VjZWhiJQDXFGBOZ/nHz MAXQQyYlsNc9A2t4LylhhsqYei/17EihUOwLDWHGdsGBeGUYcGCtWvgG8jvnylt2VNjy j08w== |
| MIME-Version | 1.0 |
| X-Received | by 10.52.88.197 with SMTP id bi5mr14885615vdb.58.1359876107006; Sat, 02 Feb 2013 23:21:47 -0800 (PST) |
| In-Reply-To | <510E0E56.8030007@gmail.com> |
| References | <hKCdnWgrOqkwFpXMnZ2dnUVZ_qadnZ2d@o1.com> <36061bf4-2a65-4ac2-91a1-30f8348f4b0d@googlegroups.com> <510E0E56.8030007@gmail.com> |
| Date | Sun, 3 Feb 2013 18:21:46 +1100 |
| Subject | Re: Please provide a better explanation of tuples and dictionaries |
| From | Chris Angelico <rosuav@gmail.com> |
| To | python-list@python.org |
| Content-Type | text/plain; charset=ISO-8859-1 |
| X-BeenThere | python-list@python.org |
| X-Mailman-Version | 2.1.15 |
| Precedence | list |
| List-Id | General discussion list for the Python programming language <python-list.python.org> |
| List-Unsubscribe | <http://mail.python.org/mailman/options/python-list>, <mailto:python-list-request@python.org?subject=unsubscribe> |
| List-Archive | <http://mail.python.org/pipermail/python-list/> |
| List-Post | <mailto:python-list@python.org> |
| List-Help | <mailto:python-list-request@python.org?subject=help> |
| List-Subscribe | <http://mail.python.org/mailman/listinfo/python-list>, <mailto:python-list-request@python.org?subject=subscribe> |
| Newsgroups | comp.lang.python |
| Message-ID | <mailman.1308.1359876109.2939.python-list@python.org> (permalink) |
| Lines | 12 |
| NNTP-Posting-Host | 2001:888:2000:d::a6 |
| X-Trace | 1359876109 news.xs4all.nl 6864 [2001:888:2000:d::a6]:60378 |
| X-Complaints-To | abuse@xs4all.nl |
| Xref | csiph.com comp.lang.python:38098 |
Show key headers only | View raw
On Sun, Feb 3, 2013 at 6:14 PM, Michael Torrie <torriem@gmail.com> wrote: > TL;DR: I find your list freezing proposal to be needlessly complicated. > No the burden of proof is not on me to explain why tuples are so. We have a list-freezing mechanism already. >>> list=[1,2,3,'logical'] >>> staticList=tuple(list) Et voila! Looks fine to me. ChrisA
Back to comp.lang.python | Previous | Next — Previous in thread | Find similar | Unroll thread
Please provide a better explanation of tuples and dictionaries "Daniel W. Rouse Jr." <dwrousejr@nethere.comNOSPAM> - 2013-01-29 18:55 -0800
Re: Please provide a better explanation of tuples and dictionaries Chris Angelico <rosuav@gmail.com> - 2013-01-30 14:11 +1100
Re: Please provide a better explanation of tuples and dictionaries "Daniel W. Rouse Jr." <dwrousejr@nethere.comNOSPAM> - 2013-01-29 19:42 -0800
Re: Please provide a better explanation of tuples and dictionaries Chris Angelico <rosuav@gmail.com> - 2013-01-30 14:51 +1100
Re: Please provide a better explanation of tuples and dictionaries Mitya Sirenef <msirenef@lightbird.net> - 2013-01-29 22:51 -0500
Re: Please provide a better explanation of tuples and dictionaries John Gordon <gordon@panix.com> - 2013-01-30 05:15 +0000
Re: Please provide a better explanation of tuples and dictionaries "Daniel W. Rouse Jr." <dwrousejr@nethere.comNOSPAM> - 2013-01-29 22:14 -0800
Re: Please provide a better explanation of tuples and dictionaries Chris Angelico <rosuav@gmail.com> - 2013-01-30 17:25 +1100
Re: Please provide a better explanation of tuples and dictionaries Steven D'Aprano <steve+comp.lang.python@pearwood.info> - 2013-01-30 07:12 +0000
Re: Please provide a better explanation of tuples and dictionaries rusi <rustompmody@gmail.com> - 2013-01-30 00:14 -0800
Re: Please provide a better explanation of tuples and dictionaries Rick Johnson <rantingrickjohnson@gmail.com> - 2013-02-02 21:20 -0800
Re: Please provide a better explanation of tuples and dictionaries Michael Torrie <torriem@gmail.com> - 2013-02-03 00:14 -0700
Re: Please provide a better explanation of tuples and dictionaries Chris Angelico <rosuav@gmail.com> - 2013-02-03 18:21 +1100
csiph-web