Difference between revisions of "Interesting Python"
Jump to navigation
Jump to search
PeterHarding (talk | contribs) |
PeterHarding (talk | contribs) |
||
(One intermediate revision by the same user not shown) | |||
Line 20: | Line 20: | ||
Found this lying around somewhere and thought it was worth preserving... | Found this lying around somewhere and thought it was worth preserving... | ||
It is by Andrea Griffini - agriff@tin.it - see Readme.txt, below... | |||
* http://www.performiq.com.au/kb/images/Basic.py | * http://www.performiq.com.au/kb/images/Basic.py |
Latest revision as of 10:46, 21 October 2008
Some Twisty Code
field_values = ", ".join(['%s="%%(%s)s"' % (f, f) for f in self.field_names if f != self.primary_key_name])
return [self.syn_record_class(list(r) + [s[1](self.record_class(r)) for s in self.syn_fields]) for r in c.fetchall()]
Some Manuals
A BASIC Interpreter
Found this lying around somewhere and thought it was worth preserving...
It is by Andrea Griffini - agriff@tin.it - see Readme.txt, below...