This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

classification
Title: python 2.2 shelve
Type: Stage:
Components: Extension Modules Versions: Python 2.2
process
Status: closed Resolution: duplicate
Dependencies: Superseder:
Assigned To: Nosy List: loewis, tarski9
Priority: normal Keywords:

Created on 2002-01-16 10:34 by tarski9, last changed 2022-04-10 16:04 by admin. This issue is now closed.

Messages (2)
msg8802 - (view) Author: tarski (tarski9) Date: 2002-01-16 10:34
I've created a shelve 'db-test' under Red Hat Linux 7.1
and Python 2.1.1. When I want to open this shelve under
Win2k with Python 2.1.1 or Python 2.2, following occurs.


>>> db = shelve.open("C:\db-test")
Traceback (most recent call last):
  File "<pyshell#4>", line 1, in ?
    db = shelve.open("C:\db-test")
  File "C:\PROGRAMS\PYTHON22\lib\shelve.py", line 158,
in open
    return DbfilenameShelf(filename, flag)
  File "C:\PROGRAMS\PYTHON22\lib\shelve.py", line 148,
in __init__
    Shelf.__init__(self, anydbm.open(filename, flag))
  File "C:\PROGRAMS\PYTHON22\lib\anydbm.py", line 86,
in open
    return mod.open(file, flag, mode)
  File "C:\PROGRAMS\PYTHON22\lib\dbhash.py", line 16,
in open
    return bsddb.hashopen(file, flag, mode)
error: (22, 'Invalid argument')


Is there a bug in the bsddb.lib under Windows? Is there
a solution to create shelves under Linux and to use
them under Windows?

Thanks

tarski
msg8803 - (view) Author: Martin v. Löwis (loewis) * (Python committer) Date: 2002-01-16 11:52
Logged In: YES 
user_id=21627

Duplicate of #504282.
History
Date User Action Args
2022-04-10 16:04:53adminsetgithub: 35929
2002-01-16 10:34:17tarski9create