~ubuntu-branches/ubuntu/lucid/python2.6/lucid

« back to all changes in this revision

Viewing changes to Doc/c-api/typeobj.rst

  • Committer: Bazaar Package Importer
  • Author(s): Matthias Klose
  • Date: 2009-04-08 02:29:05 UTC
  • mto: (10.1.3 experimental)
  • mto: This revision was merged to the branch mainline in revision 23.
  • Revision ID: james.westby@ubuntu.com-20090408022905-xa5zbe8821m2o77o
Tags: upstream-2.6.2~rc1
ImportĀ upstreamĀ versionĀ 2.6.2~rc1

Show diffs side-by-side

added added

removed removed

Lines of Context:
743
743
   :attr:`__weakref__`, the type inherits its :attr:`tp_weaklistoffset` from its
744
744
   base type.
745
745
 
746
 
The next two fields only exist if the :const:`Py_TPFLAGS_HAVE_CLASS` flag bit is
 
746
The next two fields only exist if the :const:`Py_TPFLAGS_HAVE_ITER` flag bit is
747
747
set.
748
748
 
749
749
 
1180
1180
            binaryfunc nb_inplace_add;
1181
1181
            binaryfunc nb_inplace_subtract;
1182
1182
            binaryfunc nb_inplace_multiply;
 
1183
            binaryfunc nb_inplace_divide;
1183
1184
            binaryfunc nb_inplace_remainder;
1184
1185
            ternaryfunc nb_inplace_power;
1185
1186
            binaryfunc nb_inplace_lshift;