Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6fe1299 commit 3cb68a2Copy full SHA for 3cb68a2
1 file changed
Doc/lib/libtypes.tex
@@ -5,7 +5,7 @@ \section{\module{types} ---
5
\modulesynopsis{Names for built-in types.}
6
7
8
-This module defines names for types some object types that are used by
+This module defines names for some object types that are used by
9
the standard Python interpreter, but not for the types defined by various
10
extension modules. Also, it does not include some of the types that
11
arise during processing such the \code{listiterator} type.
@@ -35,9 +35,9 @@ \section{\module{types} ---
35
\begin{verbatim}
36
def delete(mylist, item):
37
if isinstance(item, int):
38
- del list[item]
+ del mylist[item]
39
else:
40
- list.remove(item)
+ mylist.remove(item)
41
\end{verbatim}
42
43
The module defines the following names:
0 commit comments