diff options
author | Andre Delfino <adelfino@gmail.com> | 2019-03-07 05:23:21 (GMT) |
---|---|---|
committer | Serhiy Storchaka <storchaka@gmail.com> | 2019-03-07 05:23:21 (GMT) |
commit | e942e7b5c91995ae1ad967ef2c0f116a5d8555de (patch) | |
tree | 5d15da4e709a9dfa0c8a5f4f2de1ad2a55ee9b0e /Doc | |
parent | ecc161d1209bf6d21f0fd6bef28476eda7cdaf79 (diff) | |
download | cpython-e942e7b5c91995ae1ad967ef2c0f116a5d8555de.zip cpython-e942e7b5c91995ae1ad967ef2c0f116a5d8555de.tar.gz cpython-e942e7b5c91995ae1ad967ef2c0f116a5d8555de.tar.bz2 |
Fix the documentation for set.copy() (GH-12176)
Remove 's' mention as there's no argument.
Diffstat (limited to 'Doc')
-rw-r--r-- | Doc/library/stdtypes.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/library/stdtypes.rst b/Doc/library/stdtypes.rst index d1b1b8c6..c9fbfd0 100644 --- a/Doc/library/stdtypes.rst +++ b/Doc/library/stdtypes.rst @@ -4020,7 +4020,7 @@ The constructors for both classes work the same: .. method:: copy() - Return a new set with a shallow copy of *s*. + Return a shallow copy of the set. Note, the non-operator versions of :meth:`union`, :meth:`intersection`, |