diff options
author | Serhiy Storchaka <storchaka@gmail.com> | 2016-10-19 13:43:42 (GMT) |
---|---|---|
committer | Serhiy Storchaka <storchaka@gmail.com> | 2016-10-19 13:43:42 (GMT) |
commit | a97cd2eb17e0dc829e02119ea6f04198a419ed20 (patch) | |
tree | ef03c46125b86e2cec7846b4d8fb4c071728067b /Doc/library/shelve.rst | |
parent | ecf41da83e5db98734b19f205899168cc56da943 (diff) | |
download | cpython-a97cd2eb17e0dc829e02119ea6f04198a419ed20.zip cpython-a97cd2eb17e0dc829e02119ea6f04198a419ed20.tar.gz cpython-a97cd2eb17e0dc829e02119ea6f04198a419ed20.tar.bz2 |
Issue #19795: Mark up True and False as literal text instead of bold.
Diffstat (limited to 'Doc/library/shelve.rst')
-rw-r--r-- | Doc/library/shelve.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/library/shelve.rst b/Doc/library/shelve.rst index db66a63..f08c581 100644 --- a/Doc/library/shelve.rst +++ b/Doc/library/shelve.rst @@ -31,7 +31,7 @@ lots of shared sub-objects. The keys are ordinary strings. Because of Python semantics, a shelf cannot know when a mutable persistent-dictionary entry is modified. By default modified objects are written *only* when assigned to the shelf (see :ref:`shelve-example`). If the - optional *writeback* parameter is set to *True*, all entries accessed are also + optional *writeback* parameter is set to ``True``, all entries accessed are also cached in memory, and written back on :meth:`~Shelf.sync` and :meth:`~Shelf.close`; this can make it handier to mutate mutable entries in the persistent dictionary, but, if many entries are accessed, it can consume |