Skip to content
Projeler
Gruplar
Parçacıklar
Yardım
Yükleniyor...
Oturum aç / Kaydol
Gezinmeyi değiştir
C
cpython
Proje
Proje
Ayrıntılar
Etkinlik
Cycle Analytics
Depo (repository)
Depo (repository)
Dosyalar
Kayıtlar (commit)
Dallar (branch)
Etiketler
Katkıda bulunanlar
Grafik
Karşılaştır
Grafikler
Konular (issue)
0
Konular (issue)
0
Liste
Pano
Etiketler
Kilometre Taşları
Birleştirme (merge) Talepleri
0
Birleştirme (merge) Talepleri
0
CI / CD
CI / CD
İş akışları (pipeline)
İşler
Zamanlamalar
Grafikler
Paketler
Paketler
Wiki
Wiki
Parçacıklar
Parçacıklar
Üyeler
Üyeler
Collapse sidebar
Close sidebar
Etkinlik
Grafik
Grafikler
Yeni bir konu (issue) oluştur
İşler
Kayıtlar (commit)
Konu (issue) Panoları
Kenar çubuğunu aç
Batuhan Osman TASKAYA
cpython
Commits
9a46cab6
Kaydet (Commit)
9a46cab6
authored
Eyl 08, 2008
tarafından
Benjamin Peterson
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
remove some more bsddb references
üst
bd18fd67
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
11 additions
and
19 deletions
+11
-19
collections.rst
Doc/library/collections.rst
+0
-3
dbm.rst
Doc/library/dbm.rst
+3
-3
shelve.rst
Doc/library/shelve.rst
+6
-10
datamodel.rst
Doc/reference/datamodel.rst
+2
-3
No files found.
Doc/library/collections.rst
Dosyayı görüntüle @
9a46cab6
...
...
@@ -23,9 +23,6 @@ be useful when inheriting directly from :class:`dict` or
The specialized containers provided in this module provide alternatives
to Python's general purpose built-in containers, :class:`dict`,
:class:`list`, :class:`set`, and :class:`tuple`.
Besides the containers provided here, the optional :mod:`bsddb`
module offers the ability to create in-memory or file based ordered
dictionaries with string keys using the :meth:`bsddb.btopen` method.
In addition to containers, the collections module provides some ABCs
(abstract base classes) that can be used to test whether a class
...
...
Doc/library/dbm.rst
Dosyayı görüntüle @
9a46cab6
...
...
@@ -268,9 +268,9 @@ to simplify building this module.
database modules.
The :mod:`dbm.dumb` module provides a persistent dictionary-like interface which
is written entirely in Python. Unlike other modules such as :mod:`gdbm`
and
:mod:`bsddb`, no external library is required. As with other persistent
mappings, the keys and
values must always be strings.
is written entirely in Python. Unlike other modules such as :mod:`gdbm`
no
external library is required. As with other persistent mappings, the keys and
values must always be strings.
The module defines the following:
...
...
Doc/library/shelve.rst
Dosyayı görüntüle @
9a46cab6
...
...
@@ -55,15 +55,14 @@ Restrictions
.. index::
module: dbm.ndbm
module: dbm.gnu
module: bsddb
* The choice of which database package will be used (such as :mod:`dbm.ndbm`
,
:mod:`dbm.gnu`
or :mod:`bsddb`) depends on which interface is available. Therefore
it is not safe to open the database directly using :mod:`dbm`. The database is
also
(unfortunately) subject to the limitations of :mod:`dbm`, if it is used ---
* The choice of which database package will be used (such as :mod:`dbm.ndbm`
or
:mod:`dbm.gnu`
) depends on which interface is available. Therefore it is not
safe to open the database directly using :mod:`dbm`. The database is also
(unfortunately) subject to the limitations of :mod:`dbm`, if it is used ---
this means that (the pickled representation of) the objects stored in the
database should be fairly small, and in rare cases key collisions may cause
the
database to refuse updates.
database should be fairly small, and in rare cases key collisions may cause
the
database to refuse updates.
* Depending on the implementation, closing a persistent dictionary may or may
not be necessary to flush changes to disk. The :meth:`__del__` method of the
...
...
@@ -155,9 +154,6 @@ object)::
Module :mod:`dbm`
Generic interface to ``dbm``-style databases.
Module :mod:`bsddb`
BSD ``db`` database interface.
Module :mod:`pickle`
Object serialization used by :mod:`shelve`.
...
...
Doc/reference/datamodel.rst
Dosyayı görüntüle @
9a46cab6
...
...
@@ -405,10 +405,9 @@ Mappings
.. index::
module: dbm.ndbm
module: dbm.gnu
module: bsddb
The extension modules :mod:`dbm.ndbm`
, :mod:`dbm.gnu`, and :mod:`bsddb`
provide
additional examples of mapping types, as does the :mod:`collections`
The extension modules :mod:`dbm.ndbm`
and :mod:`dbm.gnu` provide
additional examples of mapping types, as does the :mod:`collections`
module.
Callable types
...
...
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