diff options
author | Georg Brandl <georg@python.org> | 2010-03-21 11:53:50 (GMT) |
---|---|---|
committer | Georg Brandl <georg@python.org> | 2010-03-21 11:53:50 (GMT) |
commit | 53b95e77e059ad1858341cd07c84a212652e32b2 (patch) | |
tree | 323c0e42025f5ee69e82e5a0efb64c7bc43f25fd | |
parent | 7bc6e4fd068eecfd28196d224b501aad6a506c0f (diff) | |
download | cpython-53b95e77e059ad1858341cd07c84a212652e32b2.zip cpython-53b95e77e059ad1858341cd07c84a212652e32b2.tar.gz cpython-53b95e77e059ad1858341cd07c84a212652e32b2.tar.bz2 |
Merged revisions 79192 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk
........
r79192 | georg.brandl | 2010-03-21 12:50:58 +0100 (So, 21 Mär 2010) | 1 line
Remove leftover word.
........
-rw-r--r-- | Doc/library/stdtypes.rst | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Doc/library/stdtypes.rst b/Doc/library/stdtypes.rst index b64ff41..586fc8f 100644 --- a/Doc/library/stdtypes.rst +++ b/Doc/library/stdtypes.rst @@ -1705,8 +1705,8 @@ altered after it is created; it can therefore be used as a dictionary key or as an element of another set. Non-empty sets (not frozensets) can be created by placing a comma-separated list -of elements pairs within braces, for example: ``{'jack', 'sjoerd'}``, in -addition to the :class:`set` constructor. +of elements within braces, for example: ``{'jack', 'sjoerd'}``, in addition to the +:class:`set` constructor. The constructors for both classes work the same: |