~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/_chk_map_pyx.pyx

Capitolize StaticTuple_Intern to conform more to the python C apis.

Show diffs side-by-side

added added

removed removed

Lines of Context:
63
63
# local names to access them.
64
64
from _static_tuple_c cimport StaticTuple,\
65
65
    import_static_tuple_c, STATIC_TUPLE_ALL_STRING, StaticTuple_New, \
66
 
    StaticTuple_intern, StaticTuple_SET_ITEM, StaticTuple_CheckExact
 
66
    StaticTuple_Intern, StaticTuple_SET_ITEM, StaticTuple_CheckExact
67
67
 
68
68
 
69
69
from bzrlib import _static_tuple_c
323
323
            raise AssertionError(
324
324
                'Incorrect number of elements (%d vs %d)'
325
325
                % (len(entry_bits)+1, width + 1))
326
 
        entry_bits = StaticTuple_intern(entry_bits)
 
326
        entry_bits = StaticTuple_Intern(entry_bits)
327
327
        PyDict_SetItem(items, entry_bits, value)
328
328
    if len(items) != length:
329
329
        raise ValueError("item count (%d) mismatch for key %s,"