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
b5cf301b
Commit
b5cf301b
authored
Sep 25, 2008
by
Amaury Forgeot d'Arc
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
#3929: dbm.open() would try to raise a tuple. This does not work anymore with python 3.0.
Reviewed by Georg Brandl.
parent
7de5f299
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
11 additions
and
4 deletions
+11
-4
Lib/dbm/__init__.py
Lib/dbm/__init__.py
+4
-4
Lib/test/test_dbm.py
Lib/test/test_dbm.py
+3
-0
Misc/NEWS
Misc/NEWS
+4
-0
No files found.
Lib/dbm/__init__.py
View file @
b5cf301b
...
...
@@ -76,13 +76,13 @@ def open(file, flag = 'r', mode = 0o666):
# file doesn't exist and the new flag was used so use default type
mod
=
_defaultmod
else
:
raise
error
(
"need 'c' or 'n' flag to open new db"
)
raise
error
[
0
]
(
"need 'c' or 'n' flag to open new db"
)
elif
result
==
""
:
# db type cannot be determined
raise
error
(
"db type could not be determined"
)
raise
error
[
0
]
(
"db type could not be determined"
)
elif
result
not
in
_modules
:
raise
error
(
"db type is {0}, but the module is not "
"available"
.
format
(
result
))
raise
error
[
0
]
(
"db type is {0}, but the module is not "
"available"
.
format
(
result
))
else
:
mod
=
_modules
[
result
]
return
mod
.
open
(
file
,
flag
,
mode
)
...
...
Lib/test/test_dbm.py
View file @
b5cf301b
...
...
@@ -57,6 +57,9 @@ class AnyDBMTestCase(unittest.TestCase):
def
test_error
(
self
):
self
.
assert_
(
issubclass
(
self
.
module
.
error
,
IOError
))
def
test_anydbm_not_existing
(
self
):
self
.
assertRaises
(
dbm
.
error
,
dbm
.
open
,
_fname
)
def
test_anydbm_creation
(
self
):
f
=
dbm
.
open
(
_fname
,
'c'
)
self
.
assertEqual
(
list
(
f
.
keys
()),
[])
...
...
Misc/NEWS
View file @
b5cf301b
...
...
@@ -20,6 +20,10 @@ Core and Builtins
Library
-------
- Issue #3929: When the database cannot be opened, dbm.open() would incorrectly
raise a TypeError: "'tuple' object is not callable" instead of the expected
dbm.error.
- Bug #3884: Make the turtle module toplevel again.
- Issue #3547: Fixed ctypes structures bitfields of varying integer
...
...
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