Re: [ZODB-Dev] API question

2013-01-14 Thread Tres Seaver
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 On 01/14/2013 03:33 PM, Marius Gedminas wrote: > Can you demonstrate the ambiguity? As I've shown before, I was > unable to find it, at least with Python 2.x. On the filesystem: $ find src/ZODB/FileStorage/ -name "*.py" src/ZODB/FileStorage/fspack

Re: [ZODB-Dev] API question

2013-01-14 Thread Alex Clark
On 2013-01-14 20:33:25 +, Marius Gedminas said: On Mon, Jan 14, 2013 at 01:32:07PM -0500, Tres Seaver wrote: While working on preparation for a Py3k port, I've stumbled across a fundamental issue with how ZODB structures its API. Do we intend that client code do the following:: from ZDOB

Re: [ZODB-Dev] API question

2013-01-14 Thread Marius Gedminas
On Mon, Jan 14, 2013 at 01:32:07PM -0500, Tres Seaver wrote: > While working on preparation for a Py3k port, I've stumbled across a > fundamental issue with how ZODB structures its API. Do we intend that > client code do the following:: > > from ZDOB import DB, FileStorage > db = DB(FileStora

[ZODB-Dev] API question

2013-01-14 Thread Tres Seaver
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 While working on preparation for a Py3k port, I've stumbled across a fundamental issue with how ZODB structures its API. Do we intend that client code do the following:: from ZDOB import DB, FileStorage db = DB(FileStorage('/path/to/Data.fs')) o