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
b08495bb
Commit
b08495bb
authored
Jul 07, 2013
by
Ezio Melotti
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
#17198: Fix a NameError in the dbm module. Patch by Valentina Mukhamedzhanova.
parent
331c3fd8
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
24 additions
and
2 deletions
+24
-2
Lib/dbm/__init__.py
Lib/dbm/__init__.py
+5
-0
Lib/test/test_dbm.py
Lib/test/test_dbm.py
+16
-2
Misc/NEWS
Misc/NEWS
+3
-0
No files found.
Lib/dbm/__init__.py
View file @
b08495bb
...
...
@@ -44,6 +44,11 @@ _modules = {}
error
=
(
error
,
IOError
)
try
:
from
dbm
import
ndbm
except
ImportError
:
ndbm
=
None
def
open
(
file
,
flag
=
'r'
,
mode
=
0o666
):
"""Open or create database at path given by *file*.
...
...
Lib/test/test_dbm.py
View file @
b08495bb
...
...
@@ -9,6 +9,11 @@ import test.support
# Skip tests if dbm module doesn't exist.
dbm
=
test
.
support
.
import_module
(
'dbm'
)
try
:
from
dbm
import
ndbm
except
ImportError
:
ndbm
=
None
_fname
=
test
.
support
.
TESTFN
#
...
...
@@ -130,7 +135,7 @@ class WhichDBTestCase(unittest.TestCase):
delete_files
()
f
=
module
.
open
(
_fname
,
'c'
)
f
.
close
()
self
.
assertEqual
(
name
,
dbm
.
whichdb
(
_fname
))
self
.
assertEqual
(
name
,
self
.
dbm
.
whichdb
(
_fname
))
# Now add a key
f
=
module
.
open
(
_fname
,
'w'
)
f
[
b"1"
]
=
b"1"
...
...
@@ -139,7 +144,15 @@ class WhichDBTestCase(unittest.TestCase):
# and read it
self
.
assertTrue
(
f
[
b"1"
]
==
b"1"
)
f
.
close
()
self
.
assertEqual
(
name
,
dbm
.
whichdb
(
_fname
))
self
.
assertEqual
(
name
,
self
.
dbm
.
whichdb
(
_fname
))
@
unittest
.
skipUnless
(
ndbm
,
reason
=
'Test requires ndbm'
)
def
test_whichdb_ndbm
(
self
):
# Issue 17198: check that ndbm which is referenced in whichdb is defined
db_file
=
'{}_ndbm.db'
.
format
(
_fname
)
with
open
(
db_file
,
'w'
):
self
.
addCleanup
(
test
.
support
.
unlink
,
db_file
)
self
.
assertIsNone
(
self
.
dbm
.
whichdb
(
db_file
[:
-
3
]))
def
tearDown
(
self
):
delete_files
()
...
...
@@ -149,6 +162,7 @@ class WhichDBTestCase(unittest.TestCase):
self
.
filename
=
test
.
support
.
TESTFN
self
.
d
=
dbm
.
open
(
self
.
filename
,
'c'
)
self
.
d
.
close
()
self
.
dbm
=
test
.
support
.
import_fresh_module
(
'dbm'
)
def
test_keys
(
self
):
self
.
d
=
dbm
.
open
(
self
.
filename
,
'c'
)
...
...
Misc/NEWS
View file @
b08495bb
...
...
@@ -41,6 +41,9 @@ Core and Builtins
Library
-------
- Issue #17198: Fix a NameError in the dbm module. Patch by Valentina
Mukhamedzhanova.
- Issue #18013: Fix cgi.FieldStorage to parse the W3C sample form.
- Issue #18347: ElementTree'
s
html
serializer
now
preserves
the
case
of
...
...
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