From a9952a38cff720b3ce6fe0c0c26ca3aed1469833 Mon Sep 17 00:00:00 2001 From: arvidn Date: Thu, 7 Apr 2016 02:23:21 -0400 Subject: [PATCH] fix python test --- bindings/python/test.py | 5 +++++ 1 file changed, 5 insertions(+) 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()