fixed big_number __init__ in python bindings

This commit is contained in:
Andrew Resch
2010-01-31 23:16:56 +00:00
parent f68b45bae6
commit 172f6c2513
2 changed files with 2 additions and 0 deletions

View File

@@ -15,6 +15,7 @@ void bind_big_number()
.def(self != self)
.def(self < self)
.def(self_ns::str(self))
.def(init<char const*>())
;
}