~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/_static_tuple_c.pxd

Capitolize StaticTuple_Intern to conform more to the python C apis.

Show diffs side-by-side

added added

removed removed

Lines of Context:
38
38
    int STATIC_TUPLE_ALL_STRING
39
39
 
40
40
    StaticTuple StaticTuple_New(Py_ssize_t)
41
 
    StaticTuple StaticTuple_intern(StaticTuple)
 
41
    StaticTuple StaticTuple_Intern(StaticTuple)
42
42
    # Steals a reference and Val must be a PyStringObject, no checking is done
43
43
    void StaticTuple_SET_ITEM(StaticTuple key, Py_ssize_t offset, object val)
44
44
    object StaticTuple_GET_ITEM(StaticTuple key, Py_ssize_t offset)