~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/_static_tuple_c.c

  • Committer: John Arbash Meinel
  • Date: 2009-10-12 18:14:21 UTC
  • mto: This revision was merged to the branch mainline in revision 4736.
  • Revision ID: john@arbash-meinel.com-20091012181421-6s3yxopo9s40wqjr
NEWS entry for StaticTuple class.

Show diffs side-by-side

added added

removed removed

Lines of Context:
167
167
 
168
168
 
169
169
static PyObject *
170
 
StaticTuple_new(PyTypeObject *type, PyObject *args, PyObject *kwds)
 
170
StaticTuple_new_constructor(PyTypeObject *type, PyObject *args, PyObject *kwds)
171
171
{
172
172
    StaticTuple *self;
173
173
    PyObject *obj = NULL;
623
623
    0,                                           /* tp_dictoffset */
624
624
    0,                                           /* tp_init */
625
625
    0,                                           /* tp_alloc */
626
 
    StaticTuple_new,                             /* tp_new */
 
626
    StaticTuple_new_constructor,                 /* tp_new */
627
627
};
628
628
 
629
629