Get rid of multi-row cells.

This commit is contained in:
Georg Brandl 2010-04-13 06:43:54 +00:00
parent d5c50b32aa
commit d0731072a9
1 changed files with 10 additions and 10 deletions

View File

@ -323,16 +323,16 @@ becomes ``f(*args)``.
This chart summarizes the binding and its two most useful variants: This chart summarizes the binding and its two most useful variants:
+-----------------+--------------+----------------------+------------------+ +-----------------+----------------------+------------------+
| Transformation | | Called from an | Called from a | | Transformation | Called from an | Called from a |
| | | Object | Class | | | Object | Class |
+=================+==============+======================+==================+ +=================+======================+==================+
| | function | f(obj, \*args) | f(\*args) | | function | f(obj, \*args) | f(\*args) |
+ +--------------+----------------------+------------------+ +-----------------+----------------------+------------------+
| Descriptor | staticmethod | f(\*args) | f(\*args) | | staticmethod | f(\*args) | f(\*args) |
+ +--------------+----------------------+------------------+ +-----------------+----------------------+------------------+
| | classmethod | f(type(obj), \*args) | f(klass, \*args) | | classmethod | f(type(obj), \*args) | f(klass, \*args) |
+-----------------+--------------+----------------------+------------------+ +-----------------+----------------------+------------------+
Static methods return the underlying function without changes. Calling either Static methods return the underlying function without changes. Calling either
``c.f`` or ``C.f`` is the equivalent of a direct lookup into ``c.f`` or ``C.f`` is the equivalent of a direct lookup into