2
0
mirror of https://github.com/boostorg/python.git synced 2026-02-10 11:42:26 +00:00

bug fix in error reporting of __init__

[SVN r8316]
This commit is contained in:
Ullrich Köthe
2000-11-24 12:44:17 +00:00
parent 0bcf6cfba1
commit 6638efe5a2
6 changed files with 19 additions and 6 deletions

View File

@@ -33,4 +33,9 @@ namespace python { namespace detail {
return none();
}
string init::arguments_as_string(tuple arguments) const
{
return argument_tuple_as_string(arguments.slice(1, arguments.size()));
}
}} // namespace python::detail