553c553
< cxx_type = 'Range<Addr>'
---
> cxx_type = 'AddrRange'
597c597
< code('#include "base/range.hh"')
---
> code('#include "base/addr_range.hh"')
602d601
< code('%import "python/swig/range.i"')
604a604,605
> # Go from the Python class to the wrapped C++ class generated
> # by swig
607,610c608
< value = AddrRange()
< value.start = long(self.start)
< value.end = long(self.end)
< return value
---
> return AddrRange(long(self.start), long(self.end))