diff options
author | Georg Brandl <georg@python.org> | 2008-04-07 19:17:06 (GMT) |
---|---|---|
committer | Georg Brandl <georg@python.org> | 2008-04-07 19:17:06 (GMT) |
commit | 23e8db57e7213f88d68b3f7ccb8db5e3b6d9a693 (patch) | |
tree | ebb33093929aee3872ca06ee93b9db57338d331f /Doc/glossary.rst | |
parent | dc21db36cb481a192cc259b21e80e8d84f45f5d3 (diff) | |
download | cpython-23e8db57e7213f88d68b3f7ccb8db5e3b6d9a693.zip cpython-23e8db57e7213f88d68b3f7ccb8db5e3b6d9a693.tar.gz cpython-23e8db57e7213f88d68b3f7ccb8db5e3b6d9a693.tar.bz2 |
#2567: remove new-style/old-style class docs.
Diffstat (limited to 'Doc/glossary.rst')
-rw-r--r-- | Doc/glossary.rst | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/Doc/glossary.rst b/Doc/glossary.rst index 13c254c..77e586f 100644 --- a/Doc/glossary.rst +++ b/Doc/glossary.rst @@ -39,10 +39,6 @@ Glossary "intermediate language" is said to run on a "virtual machine" that calls the subroutines corresponding to each bytecode. - classic class - One of the two flavors of classes in earlier Python versions. Since - Python 3.0, there are no classic classes anymore. - complex number An extension of the familiar real number system in which all numbers are expressed as a sum of a real part and an imaginary part. Imaginary @@ -367,8 +363,6 @@ Glossary versatile features like :attr:`__slots__`, descriptors, properties, :meth:`__getattribute__`, class methods, and static methods. - More information can be found in :ref:`newstyle`. - positional argument The arguments assigned to local names inside a function or method, determined by the order in which they were given in the call. ``*`` is |