[Python-Dev] Python 3.0: can we make dbm's .keys() return an iterator?

2008-09-11 Thread Gerhard Häring
As far as I can see, the specification of the dbm interface is the module docstring in dbm/__init__.py, which reads: """ [...] It has the following interface (key and data are strings): d[key] = data # store data at key (may override data at # existing key)

Re: [Python-Dev] HTTPS read-only SVN access is denied?

2008-09-11 Thread Olemis Lang
2008/9/7, "Martin v. Löwis" <[EMAIL PROTECTED]>: > Not necessarily - as you say, it's undocumented (and will remain so); > in any case, I have now granted anonymous read access to that > repository, through https. > Thnx a lot... Formerly I could not access anything because of the aforementione

Re: [Python-Dev] HTTPS read-only SVN access is denied?

2008-09-11 Thread Fredrik Lundh
Olemis Lang wrote: Fetching external item into 'docutils' svn: Can't connect to host 'svn.berlios.de': A connection attempt failed because the connected party did not properly respond after a period of time, or established connection failed because connected host has failed to respond. > Pleas

Re: [Python-Dev] HTTPS read-only SVN access is denied?

2008-09-11 Thread Martin v. Löwis
> then check if you can reach http://svn.berlios.de via your browser, or > if some firewall rule gets in the way. He probably can, but the firewall still gets in the way when he tries to do the svn checkout - his firewall is incapable of forwarding OPTIONS and other methods used by subversion. He

Re: [Python-Dev] Python 3.0: can we make dbm's .keys() return an iterator?

2008-09-11 Thread Josiah Carlson
On Thu, Sep 11, 2008 at 2:40 AM, Gerhard Häring <[EMAIL PROTECTED]> wrote: > As far as I can see, the specification of the dbm interface is the module > docstring in dbm/__init__.py, which reads: > > """ > [...] > It has the following interface (key and data are strings): > >d[key] = data