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

detail-ification

[SVN r8270]
This commit is contained in:
Dave Abrahams
2000-11-21 06:54:33 +00:00
parent b34a2a3754
commit 9e376229d8
24 changed files with 577 additions and 568 deletions

View File

@@ -97,7 +97,7 @@ Tuple::Tuple(std::size_t n)
: Object(Ptr(PyTuple_New(n)))
{
for (std::size_t i = 0; i < n; ++i)
PyTuple_SET_ITEM(get(), i, none());
PyTuple_SET_ITEM(get(), i, detail::none());
}
Tuple::Tuple(Ptr p)