diff options
author | Raymond Hettinger <python@rcn.com> | 2013-03-10 16:51:37 (GMT) |
---|---|---|
committer | Raymond Hettinger <python@rcn.com> | 2013-03-10 16:51:37 (GMT) |
commit | 6584a1e72c0aa4fa4ed7068625cfa4d3f164071a (patch) | |
tree | ea19b8772eaaad681753bc109ff24ddca9b6e14f /Doc/howto | |
parent | e238b889eb3fb035775ef71d359058c64f4479f9 (diff) | |
parent | 686aae484175ac05c18b8840e0c26ab602a31c88 (diff) | |
download | cpython-6584a1e72c0aa4fa4ed7068625cfa4d3f164071a.zip cpython-6584a1e72c0aa4fa4ed7068625cfa4d3f164071a.tar.gz cpython-6584a1e72c0aa4fa4ed7068625cfa4d3f164071a.tar.bz2 |
merge
Diffstat (limited to 'Doc/howto')
-rw-r--r-- | Doc/howto/descriptor.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/howto/descriptor.rst b/Doc/howto/descriptor.rst index 923bbe8..cc1b78d 100644 --- a/Doc/howto/descriptor.rst +++ b/Doc/howto/descriptor.rst @@ -401,7 +401,7 @@ is to create alternate class constructors. In Python 2.3, the classmethod :func:`dict.fromkeys` creates a new dictionary from a list of keys. The pure Python equivalent is:: - class Dict: + class Dict(object): . . . def fromkeys(klass, iterable, value=None): "Emulate dict_fromkeys() in Objects/dictobject.c" |