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

@ -104,6 +104,7 @@ release 0.14.9
* disabled feature to drop requests after having been skipped too many times
* fixed range request bug for files larger than 2 GB in web seeds
* don't crash when trying to create torrents with 0 files
* fixed big_number __init__ in python bindings
release 0.14.8

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*>())
;
}