~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/_static_tuple_c.pxd

  • Committer: Canonical.com Patch Queue Manager
  • Date: 2010-02-11 04:02:41 UTC
  • mfrom: (5017.2.2 tariff)
  • Revision ID: pqm@pqm.ubuntu.com-20100211040241-w6n021dz0uus341n
(mbp) add import-tariff tests

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
# Copyright (C) 2009, 2010 Canonical Ltd
 
1
# Copyright (C) 2009 Canonical Ltd
2
2
#
3
3
# This program is free software; you can redistribute it and/or modify
4
4
# it under the terms of the GNU General Public License as published by
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)