diff --git a/bindings/python/test.py b/bindings/python/test.py index 635b652db..3a29a06cf 100644 --- a/bindings/python/test.py +++ b/bindings/python/test.py @@ -46,6 +46,11 @@ class test_torrent_info(unittest.TestCase): self.assertTrue(len(ti.hash_for_piece(0)) != 0) def test_iterable_files(self): + + # this detects whether libtorrent was built with deprecated APIs + # the file_strage object is only iterable for backwards compatibility + if not hasattr(lt, 'version'): return + ses = lt.session({'alert_mask': lt.alert.category_t.all_categories}) ti = lt.torrent_info('url_seed_multi.torrent'); files = ti.files()