fixes bug where priorities where lost when force-rechecking.
[libtorrent.git] / bindings / python / src / big_number.cpp
blob4e41df521cf68db111cc78b82625cd82fd7e9fcf
1 // Copyright Daniel Wallin 2006. Use, modification and distribution is
2 // subject to the Boost Software License, Version 1.0. (See accompanying
3 // file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
5 #include <libtorrent/peer_id.hpp>
6 #include <boost/python.hpp>
8 void bind_big_number()
10 using namespace boost::python;
11 using namespace libtorrent;
13 class_<big_number>("big_number")
14 .def(self == self)
15 .def(self != self)
16 .def(self < self)
17 .def(self_ns::str(self))