2
0
mirror of https://github.com/boostorg/python.git synced 2026-01-22 17:32:55 +00:00

Remove tabs in file.

[SVN r24043]
This commit is contained in:
Rene Rivera
2004-07-25 17:12:17 +00:00
parent d6325d902e
commit 3e76482713
6 changed files with 220 additions and 220 deletions

View File

@@ -16,22 +16,22 @@ slice_base::slice_base(PyObject* start, PyObject* stop, PyObject* step)
object
slice_base::start() const
{
return object( detail::borrowed_reference(
((PySliceObject*)this->ptr())->start));
return object( detail::borrowed_reference(
((PySliceObject*)this->ptr())->start));
}
object
slice_base::stop() const
{
return object( detail::borrowed_reference(
((PySliceObject*)this->ptr())->stop));
return object( detail::borrowed_reference(
((PySliceObject*)this->ptr())->stop));
}
object
slice_base::step() const
{
return object( detail::borrowed_reference(
((PySliceObject*)this->ptr())->step));
return object( detail::borrowed_reference(
((PySliceObject*)this->ptr())->step));
}
} } } // !namespace boost::python::detail