/brz/remove-bazaar

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.h

  • Committer: Robert Collins
  • Date: 2010-05-05 00:05:29 UTC
  • mto: This revision was merged to the branch mainline in revision 5206.
  • Revision ID: robertc@robertcollins.net-20100505000529-ltmllyms5watqj5u
Make 'pydoc bzrlib.tests.build_tree_shape' useful.

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
67
67
#define StaticTuple_SET_ITEM(key, offset, val) \
68
68
    ((((StaticTuple*)(key))->items[(offset)]) = ((PyObject *)(val)))
69
69
#define StaticTuple_GET_ITEM(key, offset) (((StaticTuple*)key)->items[offset])
70
 
#define StaticTuple_GET_SIZE(key) (((StaticTuple*)key)->size)
71
70
 
72
71
 
73
72
#ifdef STATIC_TUPLE_MODULE
109
108
    struct type_description types[] = {
110
109
        {"StaticTuple", &_p_StaticTuple_Type},
111
110
        {NULL}};
112
 
    return _import_extension_module("breezy._static_tuple_c",
 
111
    return _import_extension_module("bzrlib._static_tuple_c",
113
112
        functions, types);
114
113
}
115
114