Re: Computed attribute names

2009-04-09 Thread Peter Pearson
On Wed, 8 Apr 2009 19:47:46 +0100, Dale Amon wrote: [snip] > self.IBM029 = re.compile([^acharset] > self.IBM026 = re.compile([^anothercharset] Whoa! Thanks for the trip down memory lane. And a cheery IEFBR14 to you, too. -- To email me, substitute nowhere->spamcop, invalid->net. -- ht

Re: Computed attribute names

2009-04-08 Thread Dale Amon
On Wed, Apr 08, 2009 at 09:03:00PM +0200, paul wrote: > I'd say you can use: Thanks. I could hardly ask for a faster response on a HowTo than this! signature.asc Description: Digital signature -- http://mail.python.org/mailman/listinfo/python-list

Re: Computed attribute names

2009-04-08 Thread paul
Dale Amon schrieb: There are a number of things which I have been used to doing in other OO languages which I have not yet figured out how to do in Python, the most important of which is passing method names as args and inserting them into method calls. Here are two cases I have been trying to fi

Re: Computed attribute names

2009-04-08 Thread Albert Hopkins
On Wed, 2009-04-08 at 19:47 +0100, Dale Amon wrote: > There are a number of things which I have been used > to doing in other OO languages which I have not yet > figured out how to do in Python, the most important > of which is passing method names as args and inserting > them into method calls. He

Computed attribute names

2009-04-08 Thread Dale Amon
There are a number of things which I have been used to doing in other OO languages which I have not yet figured out how to do in Python, the most important of which is passing method names as args and inserting them into method calls. Here are two cases I have been trying to figure out for a curren