/external/python/cpython3/Tools/scripts/ |
D | pickle2db.py | 29 import bsddb 31 bsddb = None variable 82 dbopen = bsddb.hashopen 88 dbopen = bsddb.btopen 94 dbopen = bsddb.rnopen 117 if bsddb is None: 122 dbopen = bsddb.hashopen 126 except bsddb.error:
|
D | db2pickle.py | 24 import bsddb 26 bsddb = None variable 77 dbopen = bsddb.hashopen 83 dbopen = bsddb.btopen 89 dbopen = bsddb.rnopen 112 if bsddb is None: 117 dbopen = bsddb.hashopen 121 except bsddb.error:
|
/external/python/cpython2/Tools/scripts/ |
D | db2pickle.py | 24 import bsddb 26 bsddb = None variable 77 dbopen = bsddb.hashopen 83 dbopen = bsddb.btopen 89 dbopen = bsddb.rnopen 112 if bsddb is None: 117 dbopen = bsddb.hashopen 121 except bsddb.error:
|
D | pickle2db.py | 29 import bsddb 31 bsddb = None variable 82 dbopen = bsddb.hashopen 88 dbopen = bsddb.btopen 94 dbopen = bsddb.rnopen 117 if bsddb is None: 122 dbopen = bsddb.hashopen 126 except bsddb.error:
|
/external/python/cpython2/Lib/bsddb/test/ |
D | test_all.py | 9 import bsddb3 as bsddb namespace 12 import bsddb 213 self._db = bsddb._db.DB_orig(*args, **kwargs) 355 if (key != bsddb._db.DB_DONOTINDEX) : 380 self._dbenv = bsddb._db.DBEnv_orig(*args, **kwargs) 401 self._dbsequence = bsddb._db.DBSequence_orig(db._db, *args, **kwargs) 415 bsddb._db.DBEnv_orig = bsddb._db.DBEnv 416 bsddb._db.DB_orig = bsddb._db.DB 417 if bsddb.db.version() <= (4, 3) : 418 bsddb._db.DBSequence_orig = None [all …]
|
/external/python/cpython2/Doc/library/ |
D | bsddb.rst | 2 :mod:`bsddb` --- Interface to Berkeley DB library 5 .. module:: bsddb 10 The :mod:`bsddb` module has been removed in Python 3. 13 The :mod:`bsddb` module provides an interface to the Berkeley DB library. Users 20 The :mod:`bsddb` module requires a Berkeley DB library version from 4.0 thru 27 The website with documentation for the :mod:`bsddb.db` Python Berkeley DB 35 :mod:`bsddb.db` module which closely matches the Berkeley DB C API documented at 36 the above URLs. Additional features provided by the :mod:`bsddb.db` API include 39 The following is a description of the legacy :mod:`bsddb` interface compatible 40 with the old Python bsddb module. Starting in Python 2.5 this interface should [all …]
|
D | shelve.rst | 91 module: bsddb 94 :mod:`gdbm` or :mod:`bsddb`) depends on which interface is available. Therefore 131 the :mod:`bsddb` module but not in other database modules. The *dict* object 133 accomplished by calling one of :func:`bsddb.hashopen`, :func:`bsddb.btopen` or 134 :func:`bsddb.rnopen`. The optional *protocol* and *writeback* parameters have 191 Module :mod:`bsddb` 195 Thin layer around the :mod:`bsddb` which provides an :func:`~dbhash.open`
|
D | dbhash.rst | 11 .. index:: module: bsddb 15 modules that provide access to DBM-style databases. The :mod:`bsddb` module is 24 for :exc:`bsddb.error`. 63 Module :mod:`bsddb`
|
D | persistence.rst | 12 formats that store a mapping of strings to other strings. The :mod:`bsddb` 30 bsddb.rst
|
D | anydbm.rst | 15 module: bsddb 21 :mod:`dbhash` (requires :mod:`bsddb`), :mod:`gdbm`, or :mod:`dbm`. If none of
|
D | dumbdbm.rst | 23 :mod:`bsddb`, no external library is required. As with other persistent
|
/external/python/cpython2/Lib/ |
D | dbhash.py | 7 import bsddb 15 error = bsddb.error # Exported for anydbm 18 return bsddb.hashopen(file, flag, mode)
|
/external/python/cpython2/Lib/test/ |
D | test_bsddb.py | 11 bsddb = test_support.import_module('bsddb', deprecated=True) variable 308 self.assertIs(self.openmethod[0], bsddb.btopen) 319 openmethod = [bsddb.btopen] 323 openmethod = [bsddb.btopen] 331 openmethod = [bsddb.btopen] 338 openmethod = [bsddb.hashopen] 345 openmethod = [bsddb.hashopen]
|
D | test_bsddb3.py | 62 from bsddb import db 63 from bsddb.test import test_all
|
D | test___all__.py | 10 bsddb = support.import_module('bsddb', deprecated=True) variable
|
/external/python/cpython2/Misc/NEWS.d/next/Core and Builtins/ |
D | 2018-07-18-23-40-32.bpo-25943.Zgf99y.rst | 1 Fix potential heap corruption in the :mod:`bsddb` module. Patch by Zackery
|
/external/python/cpython3/Doc/library/ |
D | shelve.rst | 138 in the third-party :mod:`bsddb` module from `pybsddb 142 :func:`bsddb.hashopen`, :func:`bsddb.btopen` or :func:`bsddb.rnopen`. The
|
/external/python/cpython2/PC/VC6/ |
D | readme.txt | 135 To use the version of bsddb that Python is built with by default, invoke 158 To run extensive tests, pass "-u bsddb" to regrtest.py. test_bsddb3.py 170 XXX test02_SimpleLocks (bsddb.test.test_thread.HashSimpleThreaded) ... 177 XXX File "C:\Code\python\lib\bsddb\test\test_thread.py", line 268, in
|
/external/python/cpython2/PCbuild/ |
D | build.bat | 37 echo. --no-bsddb Do not attempt to build _bsddb 81 if "%~1"=="--no-bsddb" (set IncludeBsddb=false) & shift & goto CheckOpts
|
D | get_externals.bat | 49 if NOT "%IncludeBsddb%"=="false" set libraries=%libraries% bsddb-4.7.25.0
|
/external/python/cpython2/PC/VS7.1/ |
D | readme.txt | 143 To use the version of bsddb that Python is built with by default, invoke 180 To run extensive tests, pass "-u bsddb" to regrtest.py. test_bsddb3.py 192 XXX test02_SimpleLocks (bsddb.test.test_thread.HashSimpleThreaded) ... 199 XXX File "C:\Code\python\lib\bsddb\test\test_thread.py", line 268, in 398 The bsddb library can then be build with the command
|
/external/python/cpython2/PC/ |
D | dllbase_nt.txt | 19 - bsddb 1e180000 - 1e188000
|
/external/python/cpython2/Doc/faq/ |
D | library.rst | 767 .. XXX remove bsddb in py3k, fix other module names 769 Python 2.3 includes the :mod:`bsddb` package which provides an interface to the 809 If my program crashes with a bsddb (or anydbm) database open, it gets corrupted. How come? 812 Databases opened for write access with the bsddb module (and often by the anydbm 813 module, since it will preferentially use bsddb) must explicitly be closed using 817 If you have initialized a new bsddb database but not written anything to it 822 I tried to open Berkeley DB file, but bsddb produces bsddb.error: (22, 'Invalid argument'). Help! H…
|
/external/python/cpython2/Misc/NEWS.d/ |
D | 2.6b1.rst | 219 bsddb module updated to version 4.7.3. 230 Fix potential memory corruption when bsddb.db.DBEnv.lock_get and other 231 bsddb.db object constructors raised an exception. 240 bsddb/__init__.py iteration no longer silently fails when the database has
|
/external/python/cpython2/PC/os2emx/ |
D | README.os2emx | 154 bug fixes for the BSD DB library. The bsddb module included in this 392 library, with the intent of superceding the BSDDB 1.85 module (bsddb). 399 BSD DB (bsddb) module, linked against the DB v1.85 library from EMX, 411 Any code you have which uses the v1.85 bsddb module can be modified to 414 import bsddb 418 import bsddb185 as bsddb
|