_defaultmod = None
_modules = {}
-error = (error, IOError)
+error = (error, OSError)
+ 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*.
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 #18020: improve html.escape speed by an order of magnitude.
+ Patch by Matt Bryant.
+
- Issue #18347: ElementTree's html serializer now preserves the case of
closing tags.