Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > comp.lang.python > #60382
| Path | csiph.com!v102.xanadu-bbs.net!xanadu-bbs.net!feeder.erje.net!eu.feeder.erje.net!news.stack.nl!newsfeed.xs4all.nl!newsfeed2.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.078 |
| X-Spam-Evidence | '*H*': 0.86; '*S*': 0.02; 'subject:()': 0.09; 'yeah,': 0.09; '1:48': 0.16; 'from:addr:rosuav': 0.16; 'from:name:chris angelico': 0.16; 'magic': 0.16; 'wrote:': 0.18; 'mon,': 0.24; 'header:In-Reply-To:1': 0.27; 'am,': 0.29; 'message- id:@mail.gmail.com': 0.30; '25,': 0.31; 'marc': 0.31; 'interface': 0.32; 'but': 0.35; 'received:google.com': 0.35; "i'll": 0.36; 'nov': 0.38; 'to:addr:python-list': 0.38; 'to:addr:python.org': 0.39; 'worth': 0.66; 'hassle.': 0.84; 'subject:skip:o 10': 0.84; '2013': 0.98 |
| 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:to :content-type; bh=+3pCmHbpGhYUxxLyJPt7ovLFUrLtcxsKTzJ97DkRr54=; b=MYAG3mp9hmhtZflHz/Z1TtWvwNxFt2plNqHlGw9s48mKotRdOi4RGN1JTmKTBmzCwu SLIn6Qlg+fQbSgH0U5tcStUwKIXQWJ1rgImAvRkJ4Xw1p2XeMnD7ErElg5t/7EHiosXS FqcAFyDYxOopRH6U0hTPR7TerW0XoBCGlrGC6NLJeD5YqK5DXTpLHuDFB9cSoUOJEixN Vq92DoCgw/2xXrrKCGZ98zgCIiL8uHCEJgP98H/kYiw1ZrPq28xmPh54OlM6+gE4f8LX KQh1AWQxvCEQvsUZSny34mHoeUm6JI5fMnKoj/71pbsO9s6Ono8EMSm8EJGgVbc4OeAi MPnA== |
| MIME-Version | 1.0 |
| X-Received | by 10.68.193.131 with SMTP id ho3mr13240949pbc.81.1385305072926; Sun, 24 Nov 2013 06:57:52 -0800 (PST) |
| In-Reply-To | <CA+DCN_viL68Po8geodRHtHx437Wf=jnS6qg+07OcYD219Gd0hg@mail.gmail.com> |
| References | <CA+DCN_uqn5OukuZ5QWWjJCUTksaFw50L03ZU7uqdm4a6ZOn7CA@mail.gmail.com> <mailman.3128.1385298299.18130.python-list@python.org> <529202e3$0$29993$c3e8da3$5496439d@news.astraweb.com> <CA+DCN_uGQt1dj+Ab+CkA_8oPD8DG2c1YVGUfWbaRJAJ6+hiRBQ@mail.gmail.com> <CAPTjJmoS44uVhBpb73ev49_rYQmyLLrX7n77YmJBcOCJ1xzp0w@mail.gmail.com> <CA+DCN_viL68Po8geodRHtHx437Wf=jnS6qg+07OcYD219Gd0hg@mail.gmail.com> |
| Date | Mon, 25 Nov 2013 01:57:52 +1100 |
| Subject | Re: Implement logic on object.attribute and object.attribute() |
| 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 | <https://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 | <https://mail.python.org/mailman/listinfo/python-list>, <mailto:python-list-request@python.org?subject=subscribe> |
| Newsgroups | comp.lang.python |
| Message-ID | <mailman.3140.1385305076.18130.python-list@python.org> (permalink) |
| Lines | 7 |
| NNTP-Posting-Host | 2001:888:2000:d::a6 |
| X-Trace | 1385305076 news.xs4all.nl 15912 [2001:888:2000:d::a6]:49293 |
| X-Complaints-To | abuse@xs4all.nl |
| Xref | csiph.com comp.lang.python:60382 |
Show key headers only | View raw
On Mon, Nov 25, 2013 at 1:48 AM, Marc Aymerich <glicerinu@gmail.com> wrote: > But still I'll reconsider an interface with less magic :P Yeah, I would definitely recommend that :) Magic can be fun sometimes, but it's often not worth the hassle. ChrisA
Back to comp.lang.python | Previous | Next — Previous in thread | Find similar | Unroll thread
Re: Implement logic on object.attribute and object.attribute() Devin Jeanpierre <jeanpierreda@gmail.com> - 2013-11-24 05:04 -0800
Re: Implement logic on object.attribute and object.attribute() Steven D'Aprano <steve+comp.lang.python@pearwood.info> - 2013-11-24 13:45 +0000
Re: Implement logic on object.attribute and object.attribute() Devin Jeanpierre <jeanpierreda@gmail.com> - 2013-11-24 06:04 -0800
Re: Implement logic on object.attribute and object.attribute() Chris Angelico <rosuav@gmail.com> - 2013-11-25 01:13 +1100
Re: Implement logic on object.attribute and object.attribute() Roy Smith <roy@panix.com> - 2013-11-24 09:21 -0500
Re: Implement logic on object.attribute and object.attribute() Chris Angelico <rosuav@gmail.com> - 2013-11-25 01:31 +1100
Re: Implement logic on object.attribute and object.attribute() Chris Angelico <rosuav@gmail.com> - 2013-11-25 01:13 +1100
Re: Implement logic on object.attribute and object.attribute() Marc Aymerich <glicerinu@gmail.com> - 2013-11-24 15:16 +0100
Re: Implement logic on object.attribute and object.attribute() Chris Angelico <rosuav@gmail.com> - 2013-11-25 01:37 +1100
Re: Implement logic on object.attribute and object.attribute() Steven D'Aprano <steve+comp.lang.python@pearwood.info> - 2013-11-24 15:11 +0000
Re: Implement logic on object.attribute and object.attribute() Marc Aymerich <glicerinu@gmail.com> - 2013-11-24 15:34 +0100
Re: Implement logic on object.attribute and object.attribute() Marc Aymerich <glicerinu@gmail.com> - 2013-11-24 15:48 +0100
Re: Implement logic on object.attribute and object.attribute() Chris Angelico <rosuav@gmail.com> - 2013-11-25 01:57 +1100
csiph-web