Skip to content

Commit 47faef6

Browse files
committed
Fix documentation links.
1 parent 5121fc1 commit 47faef6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

doc/reference/indexing.qbk

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ The `indexing_suite` class is the base class for the management of C++ container
3838
[[__iter__(self)]
3939
[This method is called when an iterator is required for a container. This method should return a new iterator object that can iterate over all the objects in the container. For mappings, it should iterate over the keys of the container, and should also be made available as the method iterkeys().
4040

41-
Iterator objects also need to implement this method; they are required to return themselves. For more information on iterator objects, see [@http://www.python.org/doc/current/lib/typeiter.html Iterator Types] in the [@http://www.python.org/doc/current/lib/lib.html Python Library Reference].]]
41+
Iterator objects also need to implement this method; they are required to return themselves. For more information on iterator objects, see [@https://docs.python.org/3/library/stdtypes.html#iterator-types Iterator Types] in the [@https://docs.python.org/3/library/index.html Python Library Reference].]]
4242

4343
[[__contains__(self, item)]
4444
[Called to implement membership test operators. Should return true if item is in self, false otherwise. For mapping objects, this should consider the keys of the mapping rather than the values or the key-item pairs.]]

0 commit comments

Comments
 (0)