To get this branch, use:
bzr branch
http://gegoxaren.bato24.eu/bzr/brz/remove-bazaar
« 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
removed
169
169
static PyObject *
170
StaticTuple_new(PyTypeObject *type, PyObject *args, PyObject *kwds)
170
StaticTuple_new_constructor(PyTypeObject *type, PyObject *args, PyObject *kwds)
172
172
StaticTuple *self;
173
173
PyObject *obj = NULL;
623
623
0, /* tp_dictoffset */
625
625
0, /* tp_alloc */
626
StaticTuple_new, /* tp_new */
626
StaticTuple_new_constructor, /* tp_new */