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

« back to all changes in this revision

Viewing changes to Objects/genobject.c

  • 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:
306
306
"Return the name of the generator's associated code object.");
307
307
 
308
308
static PyGetSetDef gen_getsetlist[] = {
309
 
        {"__name__", (getter)gen_get_name, NULL, NULL, gen__name__doc__},
 
309
        {"__name__", (getter)gen_get_name, NULL, gen__name__doc__},
310
310
        {NULL}
311
311
};
312
312