Re: Fastest way to detect a non-ASCII character in a list of strings.

2010-10-19 Thread Stefan Behnel
Dun Peal, 20.10.2010 02:07: On Mon, Oct 18, 2010 at 1:41 AM, Stefan Behnel wrote: Or, a bit shorter, using Cython 0.13: def only_allowed_characters(list strings): cdef unicode s return any((c< 31 or c> 127) for s in strings for c in s) Very cool, this

Re: Spreadsheet-style dependency tracking

2010-10-19 Thread Carl Banks
On Oct 19, 8:59 pm, Lawrence D'Oliveiro wrote: > In message > , Carl > > Banks wrote: > > On Oct 18, 4:15 pm, Lawrence D'Oliveiro > > wrote: > > >> In message > >> <42d82f8a-4ee6-44a7-914d-86dfc21f1...@a36g2000yqc.googlegroups.com>, > >> Fuzzyman wrote: > > >>> Allowing calculations to complete e

<    1   2