Warn that dbm.dumb.open() can crash Python (GH-6047)

This commit is contained in:
Brett Cannon 2018-03-09 15:58:40 -08:00 committed by GitHub
parent f7a6ff6fca
commit 10485ebd40
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 5 additions and 0 deletions

View File

@ -361,6 +361,11 @@ The module defines the following:
database has to be created. It defaults to octal ``0o666`` (and will be modified
by the prevailing umask).
.. warning::
It is possible to crash the Python interpreter when loading a database
with a sufficiently large/complex entry due to stack depth limitations in
Python's AST compiler.
.. versionchanged:: 3.5
:func:`.open` always creates a new database when the flag has the value
``'n'``.