Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
C
cpython
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
cpython
Commits
7a3bae41
Commit
7a3bae41
authored
Nov 19, 2002
by
Martin v. Löwis
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Replace bsddb3 and _db occurrences.
parent
1c6b1a2b
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
4 additions
and
4 deletions
+4
-4
Lib/bsddb/db.py
Lib/bsddb/db.py
+2
-2
Lib/bsddb/dbshelve.py
Lib/bsddb/dbshelve.py
+1
-1
Lib/bsddb/dbtables.py
Lib/bsddb/dbtables.py
+1
-1
No files found.
Lib/bsddb/db.py
View file @
7a3bae41
...
...
@@ -37,8 +37,8 @@
# case we ever want to augment the stuff in _db in any way. For now
# it just simply imports everything from _db.
from
_db
import
*
from
_db
import
__version__
from
_
bsd
db
import
*
from
_
bsd
db
import
__version__
if
version
()
<
(
3
,
1
,
0
):
raise
ImportError
,
"BerkeleyDB 3.x symbols not found. Perhaps python was statically linked with an older version?"
Lib/bsddb/dbshelve.py
View file @
7a3bae41
...
...
@@ -31,7 +31,7 @@ storage.
#------------------------------------------------------------------------
import
cPickle
from
bsddb
3
import
db
from
bsddb
import
db
#------------------------------------------------------------------------
...
...
Lib/bsddb/dbtables.py
View file @
7a3bae41
...
...
@@ -28,7 +28,7 @@ import xdrlib
import
re
import
copy
from
bsddb
3
.db
import
*
from
bsddb.db
import
*
class
TableDBError
(
StandardError
):
pass
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment