-
Notifications
You must be signed in to change notification settings - Fork 44
Open
Description
Hi I just installed biblib and run the following simple example from the tutorials
import biblib
db = biblib.FileBibDB('path/to/file.bib', mode='r')
for entry in db.values():
print(entry)
I get the following error
Traceback (most recent call last):
File "/python3.6/site-packages/biblib/_entry.py", line 48, in __new__
return cls._registeredTypes[inputdict['ENTRYTYPE']](inputdict)
File "/python3.6/site-packages/biblib/_entry.py", line 48, in __new__
return cls._registeredTypes[inputdict['ENTRYTYPE']](inputdict)
File "/python3.6/site-packages/biblib/_entry.py", line 48, in __new__
return cls._registeredTypes[inputdict['ENTRYTYPE']](inputdict)
[Previous line repeated 997 more times]
RecursionError: maximum recursion depth exceeded while calling a Python object
Even tried increasing the recursion stack but nothing
import sys
sys.setrecursionlimit(10000)
Any ideas?
Metadata
Metadata
Assignees
Labels
No labels