Fix incorrect return type comment for dict.values() (#58)

pull/63/head
Ashwin Kandel 2018-09-15 07:32:57 +10:00 committed by Donne Martin
parent fdd2cf59ec
commit 6f8bd3d60e
1 changed files with 1 additions and 1 deletions

View File

@ -1007,7 +1007,7 @@
"cell_type": "markdown",
"metadata": {},
"source": [
"Get the list of values in no particular order (although values() outputs the keys in the same order). In Python 3, keys() returns an iterator instead of a list."
"Get the list of values in no particular order (although values() outputs the keys in the same order). In Python 3, values() returns a [view object](https://docs.python.org/3/library/stdtypes.html?highlight=dictview#dictionary-view-objects) instead of a list."
]
},
{