Lines Matching refs:UserDict
1 :mod:`UserDict` --- Class wrapper for dictionary objects
4 .. module:: UserDict
8 **Source code:** :source:`Lib/UserDict.py`
17 This module also defines a class, :class:`~UserDict.UserDict`, that acts as a wrapper
21 :class:`dict`, the :class:`~UserDict.UserDict` class was used to create dictionary-like
25 The :mod:`UserDict` module defines the :class:`~UserDict.UserDict` class and
29 .. class:: UserDict([initialdata])
33 :class:`~UserDict.UserDict` instances. If *initialdata* is provided, :attr:`data` is
39 For backward compatibility, instances of :class:`~UserDict.UserDict` are not iterable.
44 Subclass of :class:`~UserDict.UserDict` that supports direct iteration (e.g. ``for key in
48 :ref:`typesmapping`), :class:`~UserDict.UserDict` and :class:`IterableUserDict` instances
54 A real dictionary used to store the contents of the :class:`~UserDict.UserDict` class.