Axiom patch for MSW makes examples work
Werner Thie <[email protected]> Wed, 20 Feb 2008 09:10:25 +0100
| Newsgroups | gmane.comp.python.quotient.dev |
|---|---|
| Message-ID | <[email protected]> |
Hi Just plowing ahead in a database minefield I got curious by your discussion and gave axiom a quick try (on MSW, as I usually do). Too bad that the examples fail, but could you please apply the the fix for making it work on MSW (there is no package pysqlite2): 11c11,14 < from pysqlite2 import dbapi2 --- > try: > from sqlite3 import dbapi2 > except ImportError: > from pysqlite2 import dbapi2 This patch and an updated twisted do the trick, the examples rock and it's powerup which interests me most. Thxs, Werner