~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/_static_tuple_c.pxd

  • Committer: Vincent Ladeuil
  • Date: 2010-03-10 09:33:04 UTC
  • mto: (5082.1.1 integration)
  • mto: This revision was merged to the branch mainline in revision 5083.
  • Revision ID: v.ladeuil+lp@free.fr-20100310093304-4245t4tazd4sxoav
Cleanup test from overly cautious checks.

Show diffs side-by-side

added added

removed removed

Lines of Context:
33
33
    int import_static_tuple_c() except -1
34
34
    StaticTuple StaticTuple_New(Py_ssize_t)
35
35
    StaticTuple StaticTuple_Intern(StaticTuple)
36
 
    StaticTuple StaticTuple_FromSequence(object)
37
36
 
38
37
    # Steals a reference and val must be a valid type, no checking is done
39
38
    void StaticTuple_SET_ITEM(StaticTuple key, Py_ssize_t offset, object val)
43
42
    # not an 'object' return value.
44
43
    void *StaticTuple_GET_ITEM(StaticTuple key, Py_ssize_t offset)
45
44
    int StaticTuple_CheckExact(object)
46
 
    Py_ssize_t StaticTuple_GET_SIZE(StaticTuple key)