@@ -122,6 +122,8 @@ are always available. They are listed here in alphabetical order.
122122
123123 Without an argument, an array of size 0 is created.
124124
125+ See also :ref: `binaryseq ` and :ref: `typebytearray `.
126+
125127
126128.. _func-bytes :
127129.. function :: bytes([source[, encoding[, errors]]])
@@ -135,6 +137,8 @@ are always available. They are listed here in alphabetical order.
135137
136138 Bytes objects can also be created with literals, see :ref: `strings `.
137139
140+ See also :ref: `binaryseq `, :ref: `typebytes `, and :ref: `bytes-methods `.
141+
138142
139143.. function :: callable(object)
140144
@@ -687,6 +691,8 @@ are always available. They are listed here in alphabetical order.
687691 method; if the value returned is equal to *sentinel *, :exc: `StopIteration `
688692 will be raised, otherwise the value will be returned.
689693
694+ See also :ref: `typeiter `.
695+
690696 One useful application of the second form of :func: `iter ` is to read lines of
691697 a file until a certain line is reached. The following example reads a file
692698 until the :meth: `readline ` method returns an empty string::
@@ -707,7 +713,7 @@ are always available. They are listed here in alphabetical order.
707713 :noindex:
708714
709715 Rather than being a function, :class: `list ` is actually a mutable
710- sequence type, as documented in :ref: `typesseq `.
716+ sequence type, as documented in :ref: `typesseq-list ` and :ref: ` typesseq `.
711717
712718
713719.. function :: locals()
@@ -1081,7 +1087,7 @@ are always available. They are listed here in alphabetical order.
10811087 :noindex:
10821088
10831089 Rather than being a function, :class: `range ` is actually an immutable
1084- sequence type, as documented in :ref: `typesseq `.
1090+ sequence type, as documented in :ref: `typesseq-range ` and :ref: ` typesseq `.
10851091
10861092
10871093.. function :: repr(object)
@@ -1309,7 +1315,7 @@ are always available. They are listed here in alphabetical order.
13091315 :noindex:
13101316
13111317 Rather than being a function, :class: `tuple ` is actually an immutable
1312- sequence type, as documented in :ref: `typesseq `.
1318+ sequence type, as documented in :ref: `typesseq-tuple ` and :ref: ` typesseq `.
13131319
13141320
13151321.. function :: type(object)
@@ -1342,6 +1348,8 @@ are always available. They are listed here in alphabetical order.
13421348 ...
13431349 >>> X = type (' X' , (object ,), dict (a = 1 ))
13441350
1351+ See also :ref: `bltin-type-objects `.
1352+
13451353
13461354.. function :: vars([object])
13471355
0 commit comments