diff options
author | Georg Brandl <georg@python.org> | 2010-12-04 19:02:20 (GMT) |
---|---|---|
committer | Georg Brandl <georg@python.org> | 2010-12-04 19:02:20 (GMT) |
commit | 950b3d898cfe676d239f3b7105eb25301a803672 (patch) | |
tree | abebbf643762b4222d1b60d3c54d8315c6e93d38 | |
parent | 0960bc586ee5a2a53c5c8c92bd17f03d4d75efef (diff) | |
download | cpython-950b3d898cfe676d239f3b7105eb25301a803672.zip cpython-950b3d898cfe676d239f3b7105eb25301a803672.tar.gz cpython-950b3d898cfe676d239f3b7105eb25301a803672.tar.bz2 |
Add missing label.
-rw-r--r-- | Doc/library/collections.rst | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Doc/library/collections.rst b/Doc/library/collections.rst index d78e7c9..e0b6121 100644 --- a/Doc/library/collections.rst +++ b/Doc/library/collections.rst @@ -853,6 +853,8 @@ original insertion position is changed and moved to the end:: OrderedDict.__setitem__(self, key, value) +.. _abstract-base-classes: + ABCs - abstract base classes ---------------------------- |