Python module (submodule repositary), which provides content (video streams) from various online stream sources to corresponding Enigma2, Kodi, Plex plugins

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286
  1. #!wing
  2. #!version=6.0
  3. ##################################################################
  4. # Wing IDE project file #
  5. ##################################################################
  6. [project attributes]
  7. proj.directory-list = [{'dirloc': loc('.'),
  8. 'excludes': (),
  9. 'filter': '*',
  10. 'include_hidden': False,
  11. 'recursive': True,
  12. 'watch_for_changes': True}]
  13. proj.file-type = 'normal'
  14. proj.launch-config = {loc('ContentSources.py'): ('project',
  15. (u'config::home streams_bernu.cfg',
  16. '')),
  17. loc('Downloader.py'): ('project',
  18. (u'http://player.tvnet.lv/stream/amlst:75136/playlist.m3u8 downloads\\ccc',
  19. '')),
  20. loc('iub_db.py'): ('project',
  21. (u'-d 90 -s -o',
  22. '')),
  23. loc('iub_db2.py'): ('project',
  24. (u'-p 1 2 --debug ',
  25. '')),
  26. loc('iub_email.py'): ('project',
  27. (u'-i --debug',
  28. '')),
  29. loc('iubx.py'): ('project',
  30. (u'-s -d30',
  31. '')),
  32. loc('iubx2.py'): ('project',
  33. (u'-sgr -d 10',
  34. '')),
  35. loc('kivy_test.py'): ('project',
  36. (u'https://walterebert.com/playground/video/hls/sintel-trailer.m3u8',
  37. '')),
  38. loc('run.py'): ('project',
  39. (u'config::home ftp://user:Kaskade7@home.blue.lv/hdd/streams.cfg',
  40. '')),
  41. loc('sources/lmt.py'): ('project',
  42. (u'home',
  43. ''))}
  44. [user attributes]
  45. debug.breakpoints = {loc('Downloader.py'): {182L: (0,
  46. None,
  47. 1,
  48. 0),
  49. 231: (0,
  50. None,
  51. 1,
  52. 0)},
  53. loc('iub.py'): {102: (0,
  54. None,
  55. 1,
  56. 0),
  57. 146: (0,
  58. None,
  59. 1,
  60. 0)},
  61. loc('iub_db.py'): {209: (0,
  62. None,
  63. 1,
  64. 0),
  65. 376: (0,
  66. None,
  67. 1,
  68. 0)},
  69. loc('kivy_test.py'): {67L: (0,
  70. None,
  71. 1,
  72. 0),
  73. 118L: (0,
  74. None,
  75. 1,
  76. 0)},
  77. loc('resolvers/cloudsany.py'): {48L: (0,
  78. None,
  79. 1,
  80. 0),
  81. 56L: (0,
  82. None,
  83. 1,
  84. 0),
  85. 89L: (0,
  86. None,
  87. 1,
  88. 0),
  89. 112L: (0,
  90. None,
  91. 1,
  92. 0),
  93. 120L: (0,
  94. None,
  95. 1,
  96. 0)},
  97. loc('run.py'): {111L: (0,
  98. None,
  99. 1,
  100. 0),
  101. 238: (0,
  102. None,
  103. 1,
  104. 0),
  105. 277L: (0,
  106. None,
  107. 1,
  108. 0),
  109. 408L: (0,
  110. None,
  111. 1,
  112. 0),
  113. 413: (0,
  114. None,
  115. 1,
  116. 0),
  117. 632L: (0,
  118. None,
  119. 1,
  120. 0)},
  121. loc('sources/config.py'): {56: (0,
  122. None,
  123. 1,
  124. 0),
  125. 107L: (0,
  126. None,
  127. 1,
  128. 0),
  129. 116L: (0,
  130. None,
  131. 1,
  132. 0)},
  133. loc('sources/euronews.py'): {161L: (0,
  134. None,
  135. 1,
  136. 0)},
  137. loc('sources/filmon.py'): {49L: (0,
  138. None,
  139. 1,
  140. 0)},
  141. loc('sources/replay.py'): {255L: (0,
  142. None,
  143. 1,
  144. 0)},
  145. loc('sources/tvdom.py'): {292L: (0,
  146. None,
  147. 1,
  148. 0)},
  149. loc('test_sources.py'): {7L: (0,
  150. None,
  151. 1,
  152. 0)},
  153. loc('untitled-1.py'): {10: (0,
  154. None,
  155. 1,
  156. 0)},
  157. loc('../untitled-1.py'): {1: (0,
  158. None,
  159. 1,
  160. 0),
  161. 2: (0,
  162. None,
  163. 1,
  164. 0),
  165. 3: (0,
  166. None,
  167. 1,
  168. 0)},
  169. loc('unknown:<untitled> #2'): {2: (0,
  170. None,
  171. 1,
  172. 0)},
  173. loc('unknown:<untitled> #1'): {10: (0,
  174. None,
  175. 1,
  176. 0)}}
  177. debug.err-values = {None: {},
  178. loc('ContentSources.py'): {},
  179. loc('iub_db.py'): {},
  180. loc('iub_email.py'): {},
  181. loc('iubx.py'): {},
  182. loc('kivy_test2.py'): {},
  183. loc('run.py'): {},
  184. loc('sources/cinemalive.py'): {},
  185. loc('sources/euronews.py'): {},
  186. loc('sources/filmix.py'): {},
  187. loc('sources/ltc.py'): {},
  188. loc('sources/replay.py'): {},
  189. loc('test_sources2.py'): {}}
  190. debug.recent-run-args = {loc('ContentSources.py'): [u'config::home streams_bernu.cfg',
  191. u'ltc::home',
  192. u'config::home'],
  193. loc('Downloader.py'): [u'http://player.tvnet.lv/stream/amlst:75136/playlist.m3u8 downloads\\ccc',
  194. u'http://player.tvnet.lv/stream/amlst:75136/playlist.m3u8 downloads\\bbb',
  195. u'http://player.tvnet.lv/stream/amlst:75136/playlist.m3u8 aaa.mp4'],
  196. loc('iub_db.py'): [u'-d 90 -s -o',
  197. u'-d 40 -rg -o',
  198. u'-d 40 -s -o',
  199. u'-d 40 -r -o',
  200. u'-d 40 -g -o',
  201. u'-d 60 -s -o',
  202. u'-d 10 -r -o',
  203. u'-d 3 --slud -o',
  204. u'-d 10 --rez -o',
  205. u'-d 10 --rez',
  206. u'-d 10 --groz',
  207. u'-d 20 --groz',
  208. u'-d 20 --slud',
  209. u'-d 10 --slud',
  210. u'-d 3 --slud',
  211. u'-d 3'],
  212. loc('iub_db2.py'): [u'-p 1 2 --debug ',
  213. u'-d 1 --debug ',
  214. u'-p 51 53 --debug -o',
  215. u'-p 50 53 --debug -o',
  216. u'-d 3 --debug -o',
  217. u'-d 1 --debug -o',
  218. u'-d 1 --debug -o',
  219. u'-d 1 --debug',
  220. u'-d 1',
  221. u'-h'],
  222. loc('iub_email.py'): [u'-i --debug',
  223. u'-i ',
  224. u'-i',
  225. u'-p'],
  226. loc('iubx.py'): [u'-s -d30',
  227. u'-s -d10',
  228. u'-s -d3',
  229. u'-s -d40',
  230. '-s -d 10\n'],
  231. loc('iubx2.py'): [u'-sgr -d 10',
  232. u'-sgr',
  233. u'--sgr',
  234. u'--slud'],
  235. loc('kivy_test.py'): [u'https://walterebert.com/playground/video/hls/sintel-trailer.m3u8',
  236. u'https://dl4.sanii.co/files/2/60e13omc1cpph2/video.mp4'],
  237. loc('run.py'): [u'config::home ftp://user:Kaskade7@home.blue.lv/hdd/streams.cfg',
  238. u'config::home sources\\cfg0\\streams_al.cfg',
  239. u'config::home ',
  240. u'config::home ftp://user:Kaskade7@home.blue.lv/hdd/streams_al.cfg',
  241. u'config::home ftps://user:Kaskade7@home.blue.lv/hdd/streams_al.cfg',
  242. u'config::home ftp://user:Kaskade7@home.blue.lv/hdd/streams_al.cfg2',
  243. u'config::home ftp://home.blue.lv/hdd/streams_al.cfg',
  244. u'config::home ',
  245. u'config::home streams_bernu.cfg',
  246. u'ltc::home',
  247. u'ltc::videonoma',
  248. u'ltc::video ',
  249. u'config::home streams_bernu.cfg',
  250. u'config::home'],
  251. loc('sources/lmt.py'): [u'home',
  252. u'home cli'],
  253. loc('sources/ltc.py'): [u'ltc::videonoma']}
  254. debug.run-args = {}
  255. debug.var-col-widths = [0.41872791519434627,
  256. 0.5812720848056537]
  257. edit.bookmarks = {'list_action': (loc('run.py'),
  258. {'attrib-starts': [('Main',
  259. 17),
  260. ('Main.list_action',
  261. 95)],
  262. 'first-line': 98L,
  263. 'sel-line': 124L})}
  264. guimgr.overall-gui-state = {'windowing-policy': 'combined-window',
  265. 'windows': [{'name': 'F8FpRDICw7YHXG3HV2rBc63asU'\
  266. 'LBT7JH',
  267. 'size-state': 'maximized',
  268. 'type': 'dock',
  269. 'view': {'area': 'tall',
  270. 'constraint': None,
  271. 'current_pages': [0,
  272. 2],
  273. 'full-screen': False,
  274. 'notebook_display': 'normal',
  275. 'notebook_percent': 0.17992831541218635,
  276. 'override_title': None,
  277. 'pagelist': [('project',
  278. 'tall',
  279. 0,
  280. {'tree-state': {'file-sort-method': 'by name',
  281. 'list-files-first': 0,
  282. 'tree-states': {'deep': {'expanded-nodes': [],
  283. 'selected-nodes': [(9,)],
  284. 'top-node': (0,)}},
  285. 'tree-style': 'deep'}}),
  286. ('snippets',
  287. 'tall',
  288. 0,
  289. {'tree-states': {u'c': [],
  290. u'html': [],
  291. u'py': [['class',
  292. 'all',
  293. '']]}}),
  294. ('browser',
  295. 'tall',
  296. 0,
  297. {'all_tree_states': {loc('../../../$Setup/Python/Libs/pyglet-1.0-docs/examples/programming_guide/hello_world.py'): {'c'\
  298. 'olumn-widths': [1.0],
  299. 'expanded-nodes': [],
  300. 'selected-nodes': [],
  301. 'top-node': [('generic attribute',
  302. loc('../../../$Setup/Python/Libs/pyglet-1.0-docs/examples/programming_guide/hello_world.py'),
  303. 'ft')]},
  304. loc('../../../Documents and Settings/User/Application Data/Wing IDE 3/x-wingide-zip:/C:/Python25/Lib/site-packages/simplejson-1.8.1-py2.5-win32.egg/simplejson/decoder.py'): {'c'\
  305. 'olumn-widths': [1.0],
  306. 'expanded-nodes': [],
  307. 'selected-nodes': [],
  308. 'top-node': [('generic attribute',
  309. loc('../../../Documents and Settings/User/Application Data/Wing IDE 3/x-wingide-zip:/C:/Python25/Lib/site-packages/simplejson-1.8.1-py2.5-win32.egg/simplejson/decoder.py'),
  310. 'ANYTHING')]},
  311. loc('../../../Python25/Lib/BeautifulSoup.py'): {'column-widths': [1.0],
  312. 'expanded-nodes': [],
  313. 'selected-nodes': [],
  314. 'top-node': [('class def',
  315. loc('../../../Python25/Lib/BeautifulSoup.py'),
  316. 'BeautifulSOAP')]},
  317. loc('../../../Python25/Lib/ConfigParser.py'): {'column-widths': [1.0],
  318. 'expanded-nodes': [],
  319. 'selected-nodes': [],
  320. 'top-node': [('class def',
  321. loc('../../../Python25/Lib/ConfigParser.py'),
  322. 'ConfigParser')]},
  323. loc('../../../Python25/Lib/StringIO.py'): {'column-widths': [1.0],
  324. 'expanded-nodes': [],
  325. 'selected-nodes': [],
  326. 'top-node': [('class def',
  327. loc('../../../Python25/Lib/StringIO.py'),
  328. 'StringIO')]},
  329. loc('../../../Python25/Lib/dircache.py'): {'column-widths': [1.0],
  330. 'expanded-nodes': [],
  331. 'selected-nodes': [],
  332. 'top-node': [('function def',
  333. loc('../../../Python25/Lib/dircache.py'),
  334. 'annotate')]},
  335. loc('../../../Python25/Lib/encodings/cp1257.py'): {'column-widths': [1.0],
  336. 'expanded-nodes': [],
  337. 'selected-nodes': [],
  338. 'top-node': [('class def',
  339. loc('../../../Python25/Lib/encodings/cp1257.py'),
  340. 'Codec')]},
  341. loc('../../../Python25/Lib/encodings/utf_8.py'): {'column-widths': [1.0],
  342. 'expanded-nodes': [],
  343. 'selected-nodes': [],
  344. 'top-node': [('function def',
  345. loc('../../../Python25/Lib/encodings/utf_8.py'),
  346. 'decode')]},
  347. loc('../../../Python25/Lib/ntpath.py'): {'column-widths': [1.0],
  348. 'expanded-nodes': [],
  349. 'selected-nodes': [],
  350. 'top-node': [('function def',
  351. loc('../../../Python25/Lib/ntpath.py'),
  352. 'abspath')]},
  353. loc('../../../Python25/Lib/re.py'): {'column-widths': [1.0],
  354. 'expanded-nodes': [],
  355. 'selected-nodes': [],
  356. 'top-node': [('generic attribute',
  357. loc('../../../Python25/Lib/re.py'),
  358. 'c')]},
  359. loc('../../../Python25/Lib/sgmllib.py'): {'column-widths': [1.0],
  360. 'expanded-nodes': [],
  361. 'selected-nodes': [],
  362. 'top-node': [('generic attribute',
  363. loc('../../../Python25/Lib/sgmllib.py'),
  364. 'attrfind')]},
  365. loc('../../../Python25/Lib/site-packages/PIL/BmpImagePlugin.py'): {'c'\
  366. 'olumn-widths': [1.0],
  367. 'expanded-nodes': [],
  368. 'selected-nodes': [],
  369. 'top-node': [('generic attribute',
  370. loc('../../../Python25/Lib/site-packages/PIL/BmpImagePlugin.py'),
  371. 'BIT2MODE')]},
  372. loc('../../../Python25/Lib/site-packages/PIL/GifImagePlugin.py'): {'c'\
  373. 'olumn-widths': [1.0],
  374. 'expanded-nodes': [],
  375. 'selected-nodes': [],
  376. 'top-node': [('function def',
  377. loc('../../../Python25/Lib/site-packages/PIL/GifImagePlugin.py'),
  378. 'getdata')]},
  379. loc('../../../Python25/Lib/site-packages/PIL/Image.py'): {'column-wi'\
  380. 'dths': [1.0],
  381. 'expanded-nodes': [],
  382. 'selected-nodes': [[('generic attribute',
  383. loc('../../../Python25/Lib/site-packages/PIL/Image.py'),
  384. '_initialized')]],
  385. 'top-node': [('generic attribute',
  386. loc('../../../Python25/Lib/site-packages/PIL/Image.py'),
  387. 'ADAPTIVE')]},
  388. loc('../../../Python25/Lib/site-packages/PIL/ImageFile.py'): {'colum'\
  389. 'n-widths': [1.0],
  390. 'expanded-nodes': [],
  391. 'selected-nodes': [],
  392. 'top-node': [('generic attribute',
  393. loc('../../../Python25/Lib/site-packages/PIL/ImageFile.py'),
  394. 'ERRORS')]},
  395. loc('../../../Python25/Lib/site-packages/PIL/ImagePalette.py'): {'co'\
  396. 'lumn-widths': [1.0],
  397. 'expanded-nodes': [],
  398. 'selected-nodes': [],
  399. 'top-node': [('class def',
  400. loc('../../../Python25/Lib/site-packages/PIL/ImagePalette.py'),
  401. 'ImagePalette')]},
  402. loc('../../../Python25/Lib/site-packages/argparse.py'): {'column-wid'\
  403. 'ths': [1.0],
  404. 'expanded-nodes': [],
  405. 'selected-nodes': [],
  406. 'top-node': [('class def',
  407. loc('../../../Python25/Lib/site-packages/argparse.py'),
  408. 'Action')]},
  409. loc('../../../Python25/Lib/site-packages/pdo.py'): {'column-widths': [1.0],
  410. 'expanded-nodes': [],
  411. 'selected-nodes': [],
  412. 'top-node': [('class def',
  413. loc('../../../Python25/Lib/site-packages/pdo.py'),
  414. 'connect')]},
  415. loc('../../../Python25/Lib/struct.py'): {'column-widths': [1.0],
  416. 'expanded-nodes': [],
  417. 'selected-nodes': [],
  418. 'top-node': [('function def',
  419. loc('../../../Python25/Lib/struct.py'),
  420. 'calcsize')]},
  421. loc('../../../Python27/Lib/site-packages/psycopg2/extras.py'): {'exp'\
  422. 'anded-nodes': [],
  423. 'selected-nodes': [],
  424. 'top-node': [('class def',
  425. loc('../../../Python27/Lib/site-packages/psycopg2/extras.py'),
  426. 'CompositeCaster')]},
  427. loc('../../../Python27/Lib/site-packages/win32com/client/dynamic.py'): {'e'\
  428. 'xpanded-nodes': [],
  429. 'selected-nodes': [],
  430. 'top-node': [('generic attribute',
  431. loc('../../../Python27/Lib/site-packages/win32com/client/dynamic.py'),
  432. 'ALL_INVOKE_TYPES')]},
  433. loc('../$test/test2.py'): {'column-widths': [1.0],
  434. 'expanded-nodes': [],
  435. 'selected-nodes': [],
  436. 'top-node': [('generic attribute',
  437. loc('../$test/test2.py'),
  438. 'con')]},
  439. loc('../$test/test3.py'): {'column-widths': [1.0],
  440. 'expanded-nodes': [],
  441. 'selected-nodes': [],
  442. 'top-node': [('generic attribute',
  443. loc('../$test/test3.py'),
  444. 'area')]},
  445. loc('../$test/test4.py'): {'column-widths': [1.0],
  446. 'expanded-nodes': [],
  447. 'selected-nodes': [],
  448. 'top-node': [('generic attribute',
  449. loc('../$test/test4.py'),
  450. 'con')]},
  451. loc('../5streets/5streets.py'): {'column-widths': [1.0],
  452. 'expanded-nodes': [],
  453. 'selected-nodes': [],
  454. 'top-node': [('generic attribute',
  455. loc('../5streets/5streets.py'),
  456. 'dlat')]},
  457. loc('../JS2/JSData.py'): {'column-widths': [1.0],
  458. 'expanded-nodes': [],
  459. 'selected-nodes': [],
  460. 'top-node': [('generic attribute',
  461. loc('../JS2/JSData.py'),
  462. 'db')]},
  463. loc('../JS2/const.py'): {'column-widths': [1.0],
  464. 'expanded-nodes': [],
  465. 'selected-nodes': [],
  466. 'top-node': [('generic attribute',
  467. loc('../JS2/const.py'),
  468. 'config')]},
  469. loc('../JS2/js2gif2.py'): {'column-widths': [1.0],
  470. 'expanded-nodes': [],
  471. 'selected-nodes': [],
  472. 'top-node': [('generic attribute',
  473. loc('../JS2/js2gif2.py'),
  474. 'argc')]},
  475. loc('../JS2/js3.py'): {'column-widths': [1.0],
  476. 'expanded-nodes': [],
  477. 'selected-nodes': [],
  478. 'top-node': [('function def',
  479. loc('../JS2/js3.py'),
  480. 'deg')]},
  481. loc('../JS2/js3s.py'): {'column-widths': [1.0],
  482. 'expanded-nodes': [],
  483. 'selected-nodes': [],
  484. 'top-node': [('function def',
  485. loc('../JS2/js3s.py'),
  486. 'deg')]},
  487. loc('../JS2/js_2gif.py'): {'column-widths': [1.0],
  488. 'expanded-nodes': [],
  489. 'selected-nodes': [],
  490. 'top-node': [('generic attribute',
  491. loc('../JS2/js_2gif.py'),
  492. 'argc')]},
  493. loc('../JS2/js_db.py'): {'column-widths': [1.0],
  494. 'expanded-nodes': [],
  495. 'selected-nodes': [],
  496. 'top-node': [('generic attribute',
  497. loc('../JS2/js_db.py'),
  498. 'bks93')]},
  499. loc('../JS2/js_map.py'): {'column-widths': [1.0],
  500. 'expanded-nodes': [],
  501. 'selected-nodes': [[('function def',
  502. loc('../JS2/js_map.py'),
  503. 'deg')]],
  504. 'top-node': [('function def',
  505. loc('../JS2/js_map.py'),
  506. 'deg')]},
  507. loc('../JS2/js_map2.py'): {'column-widths': [1.0],
  508. 'expanded-nodes': [],
  509. 'selected-nodes': [],
  510. 'top-node': [('function def',
  511. loc('../JS2/js_map2.py'),
  512. 'deg')]},
  513. loc('../JS2/js_map3.py'): {'column-widths': [1.0],
  514. 'expanded-nodes': [],
  515. 'selected-nodes': [],
  516. 'top-node': [('function def',
  517. loc('../JS2/js_map3.py'),
  518. 'deg')]},
  519. loc('../JS2/js_map4.py'): {'column-widths': [1.0],
  520. 'expanded-nodes': [],
  521. 'selected-nodes': [],
  522. 'top-node': [('function def',
  523. loc('../JS2/js_map4.py'),
  524. 'create_map')]},
  525. loc('../JS2/js_shp.py'): {'column-widths': [1.0],
  526. 'expanded-nodes': [],
  527. 'selected-nodes': [],
  528. 'top-node': [('generic attribute',
  529. loc('../JS2/js_shp.py'),
  530. 'cx')]},
  531. loc('../JS2/js_unpack.py'): {'column-widths': [1.0],
  532. 'expanded-nodes': [],
  533. 'selected-nodes': [],
  534. 'top-node': [('generic attribute',
  535. loc('../JS2/js_unpack.py'),
  536. 'argc')]},
  537. loc('../JS2/jsdb2.py'): {'column-widths': [1.0],
  538. 'expanded-nodes': [],
  539. 'selected-nodes': [],
  540. 'top-node': [('generic attribute',
  541. loc('../JS2/jsdb2.py'),
  542. 'bks93')]},
  543. loc('../JS2/jsunpack2.py'): {'column-widths': [1.0],
  544. 'expanded-nodes': [],
  545. 'selected-nodes': [],
  546. 'top-node': [('generic attribute',
  547. loc('../JS2/jsunpack2.py'),
  548. 'argc')]},
  549. loc('../JS2/ozimap.py'): {'column-widths': [1.0],
  550. 'expanded-nodes': [],
  551. 'selected-nodes': [],
  552. 'top-node': [('generic attribute',
  553. loc('../JS2/ozimap.py'),
  554. 'epilog')]},
  555. loc('../JS2/test PIL.py'): {'column-widths': [1.0],
  556. 'expanded-nodes': [],
  557. 'selected-nodes': [],
  558. 'top-node': [('function def',
  559. loc('../JS2/test PIL.py'),
  560. 'get_pp')]},
  561. loc('BeautifulSoup.py'): {'expanded-nodes': [],
  562. 'selected-nodes': [],
  563. 'top-node': [('class def',
  564. loc('BeautifulSoup.py'),
  565. 'BeautifulSOAP')]},
  566. loc('ContentSources.py'): {'expanded-nodes': [],
  567. 'selected-nodes': [],
  568. 'top-node': [('class def',
  569. loc('ContentSources.py'),
  570. 'ContentSources')]},
  571. loc('config.py'): {'expanded-nodes': [],
  572. 'selected-nodes': [],
  573. 'top-node': [('generic attribute',
  574. loc('config.py'),
  575. 'config')]},
  576. loc('database.py'): {'expanded-nodes': [],
  577. 'selected-nodes': [],
  578. 'top-node': [('class def',
  579. loc('database.py'),
  580. 'Database')]},
  581. loc('excel3.py'): {'expanded-nodes': [],
  582. 'selected-nodes': [],
  583. 'top-node': [('class def',
  584. loc('excel3.py'),
  585. 'Excel')]},
  586. loc('iub_db.py'): {'expanded-nodes': [],
  587. 'selected-nodes': [],
  588. 'top-node': [('function def',
  589. loc('iub_db.py'),
  590. 'add_rec')]},
  591. loc('iub_db2.py'): {'expanded-nodes': [],
  592. 'selected-nodes': [[('generic attribute',
  593. loc('iub_db2.py'),
  594. 'version')]],
  595. 'top-node': [('generic attribute',
  596. loc('iub_db2.py'),
  597. 'config')]},
  598. loc('iubx.ini'): {'expanded-nodes': [],
  599. 'selected-nodes': [],
  600. 'top-node': None},
  601. loc('iubx.py'): {'column-widths': None,
  602. 'expanded-nodes': [],
  603. 'selected-nodes': [],
  604. 'top-node': [('function def',
  605. loc('iubx.py'),
  606. 'check_cpv')]},
  607. loc('iubx0.py'): {'column-widths': [1.0],
  608. 'expanded-nodes': [],
  609. 'selected-nodes': [[('generic attribute',
  610. loc('iubx0.py'),
  611. 'config')]],
  612. 'top-node': [('generic attribute',
  613. loc('iubx0.py'),
  614. 'config')]},
  615. loc('latvian.xml'): {'expanded-nodes': [],
  616. 'selected-nodes': [],
  617. 'top-node': None},
  618. loc('record.py'): {'expanded-nodes': [],
  619. 'selected-nodes': [],
  620. 'top-node': [('generic attribute',
  621. loc('record.py'),
  622. 'r1')]},
  623. loc('run.py'): {'expanded-nodes': [],
  624. 'selected-nodes': [[('class def',
  625. loc('run.py'),
  626. 'ChoiceBox')]],
  627. 'top-node': [('class def',
  628. loc('run.py'),
  629. 'ChoiceBox')]},
  630. loc('sources/SourceBase.py'): {'expanded-nodes': [],
  631. 'selected-nodes': [],
  632. 'top-node': [('generic attribute',
  633. loc('sources/SourceBase.py'),
  634. 'headers2dict')]},
  635. loc('sources/euronews.py'): {'expanded-nodes': [],
  636. 'selected-nodes': [],
  637. 'top-node': [('generic attribute',
  638. loc('sources/euronews.py'),
  639. 'c')]},
  640. loc('sources/filmas.py'): {'expanded-nodes': [],
  641. 'selected-nodes': [],
  642. 'top-node': [('generic attribute',
  643. loc('sources/filmas.py'),
  644. 'c')]},
  645. loc('sources/filmix.py'): {'expanded-nodes': [],
  646. 'selected-nodes': [],
  647. 'top-node': [('generic attribute',
  648. loc('sources/filmix.py'),
  649. 'data')]},
  650. loc('sources/iplayer.py'): {'expanded-nodes': [],
  651. 'selected-nodes': [],
  652. 'top-node': [('generic attribute',
  653. loc('sources/iplayer.py'),
  654. 'API_URL')]},
  655. loc('sources/iub.py'): {'expanded-nodes': [],
  656. 'selected-nodes': [[('class def',
  657. loc('sources/iub.py'),
  658. 'Source')]],
  659. 'top-node': [('generic attribute',
  660. loc('sources/iub.py'),
  661. 'h')]},
  662. loc('sources/lmt.py'): {'expanded-nodes': [],
  663. 'selected-nodes': [],
  664. 'top-node': [('generic attribute',
  665. loc('sources/lmt.py'),
  666. 'data')]},
  667. loc('sources/ltc.py'): {'expanded-nodes': [],
  668. 'selected-nodes': [[('generic attribute',
  669. loc('sources/ltc.py'),
  670. 'vid2')]],
  671. 'top-node': [('generic attribute',
  672. loc('sources/ltc.py'),
  673. 'API_URL')]},
  674. loc('sources/replay.py'): {'expanded-nodes': [],
  675. 'selected-nodes': [[('class def',
  676. loc('sources/replay.py'),
  677. 'Source')]],
  678. 'top-node': [('generic attribute',
  679. loc('sources/replay.py'),
  680. 'API_URL')]},
  681. loc('sources/tvdom.py'): {'expanded-nodes': [],
  682. 'selected-nodes': [],
  683. 'top-node': [('generic attribute',
  684. loc('sources/tvdom.py'),
  685. 'data')]},
  686. loc('test1.py'): {'expanded-nodes': [],
  687. 'selected-nodes': [],
  688. 'top-node': [('generic attribute',
  689. loc('test1.py'),
  690. 'conn')]},
  691. loc('test_sources.py'): {'expanded-nodes': [],
  692. 'selected-nodes': [],
  693. 'top-node': [('class def',
  694. loc('test_sources.py'),
  695. 'App')]},
  696. loc('test_sources2.py'): {'expanded-nodes': [],
  697. 'selected-nodes': [],
  698. 'top-node': [('generic attribute',
  699. loc('test_sources2.py'),
  700. 'data')]},
  701. loc('util.py'): {'expanded-nodes': [],
  702. 'selected-nodes': [[('function def',
  703. loc('util.py'),
  704. '_substitute_entity')]],
  705. 'top-node': [('generic attribute',
  706. loc('util.py'),
  707. 'CACHE_COOKIES')]},
  708. loc('utils.py'): {'expanded-nodes': [],
  709. 'selected-nodes': [],
  710. 'top-node': [('function def',
  711. loc('utils.py'),
  712. 'check_cpv')]},
  713. loc('../fakemap/fakemap.py'): {'column-widths': [1.0],
  714. 'expanded-nodes': [],
  715. 'selected-nodes': [],
  716. 'top-node': [('generic attribute',
  717. loc('../fakemap/fakemap.py'),
  718. 'dir')]},
  719. loc('../getpics/ggg2.py'): {'column-widths': [1.0],
  720. 'expanded-nodes': [],
  721. 'selected-nodes': [],
  722. 'top-node': [('generic attribute',
  723. loc('../getpics/ggg2.py'),
  724. 'con')]},
  725. loc('../ozi/ozi.py'): {'column-widths': [1.0],
  726. 'expanded-nodes': [],
  727. 'selected-nodes': [],
  728. 'top-node': [('generic attribute',
  729. loc('../ozi/ozi.py'),
  730. 'epilog')]},
  731. loc('../ozi/ozimap.py'): {'column-widths': [1.0],
  732. 'expanded-nodes': [],
  733. 'selected-nodes': [],
  734. 'top-node': [('generic attribute',
  735. loc('../ozi/ozimap.py'),
  736. 'epilog')]},
  737. loc('../theyr/ikite/ikite.py'): {'column-widths': [1.0],
  738. 'expanded-nodes': [],
  739. 'selected-nodes': [],
  740. 'top-node': [('generic attribute',
  741. loc('../theyr/ikite/ikite.py'),
  742. 'day')]},
  743. loc('../vietas/vietas.py'): {'column-widths': [1.0],
  744. 'expanded-nodes': [],
  745. 'selected-nodes': [],
  746. 'top-node': [('generic attribute',
  747. loc('../vietas/vietas.py'),
  748. 'count')]},
  749. loc('../vietas/vietas0.py'): {'column-widths': [1.0],
  750. 'expanded-nodes': [],
  751. 'selected-nodes': [],
  752. 'top-node': [('generic attribute',
  753. loc('../vietas/vietas0.py'),
  754. 'c')]},
  755. loc('../vietas/vietas2.py'): {'column-widths': [1.0],
  756. 'expanded-nodes': [],
  757. 'selected-nodes': [],
  758. 'top-node': [('generic attribute',
  759. loc('../vietas/vietas2.py'),
  760. 'd_lat')]},
  761. loc('../../SplashData/remdup.py'): {'column-widths': [1.0],
  762. 'expanded-nodes': [],
  763. 'selected-nodes': [],
  764. 'top-node': [('generic attribute',
  765. loc('../../SplashData/remdup.py'),
  766. 'f')]},
  767. loc('../../../../../Python27/lib/lib-tk/Tkinter.py'): {'expanded-nod'\
  768. 'es': [],
  769. 'selected-nodes': [],
  770. 'top-node': [('function def',
  771. loc('../../../../../Python27/lib/lib-tk/Tkinter.py'),
  772. 'At')]},
  773. loc('../../../../../Python27/lib/lib-tk/tkCommonDialog.py'): {'expan'\
  774. 'ded-nodes': [],
  775. 'selected-nodes': [],
  776. 'top-node': [('class def',
  777. loc('../../../../../Python27/lib/lib-tk/tkCommonDialog.py'),
  778. 'Dialog')]},
  779. loc('../../../../../Python27/lib/lib-tk/tkMessageBox.py'): {'expande'\
  780. 'd-nodes': [],
  781. 'selected-nodes': [],
  782. 'top-node': [('generic attribute',
  783. loc('../../../../../Python27/lib/lib-tk/tkMessageBox.py'),
  784. 'ABORT')]},
  785. loc('../../../../../Python27/lib/lib-tk/tkSimpleDialog.py'): {'expan'\
  786. 'ded-nodes': [],
  787. 'selected-nodes': [],
  788. 'top-node': [('function def',
  789. loc('../../../../../Python27/lib/lib-tk/tkSimpleDialog.py'),
  790. 'askfloat')]},
  791. loc('../../../../../Python27/lib/lib-tk/ttk.py'): {'expanded-nodes': [],
  792. 'selected-nodes': [],
  793. 'top-node': [('class def',
  794. loc('../../../../../Python27/lib/lib-tk/ttk.py'),
  795. 'Button')]},
  796. loc('../../../../../Python27/lib/site-packages/PIL/Image.py'): {'exp'\
  797. 'anded-nodes': [],
  798. 'selected-nodes': [],
  799. 'top-node': [('generic attribute',
  800. loc('../../../../../Python27/lib/site-packages/PIL/Image.py'),
  801. 'ADAPTIVE')]},
  802. loc('unknown:<untitled> #6'): {'expanded-nodes': [],
  803. 'selected-nodes': [],
  804. 'top-node': None},
  805. loc('unknown:<untitled> #5'): {'column-widths': [1.0],
  806. 'expanded-nodes': [],
  807. 'selected-nodes': [],
  808. 'top-node': None},
  809. loc('unknown:<untitled> #4'): {'column-widths': [1.0],
  810. 'expanded-nodes': [],
  811. 'selected-nodes': [],
  812. 'top-node': None},
  813. loc('unknown:<untitled> #3'): {'expanded-nodes': [],
  814. 'selected-nodes': [],
  815. 'top-node': None}},
  816. 'browse_mode': u'Current Module',
  817. 'follow-selection': False,
  818. 'sort_mode': 'Alphabetically',
  819. 'visibility_options': {u'Derived Classes': False,
  820. u'Imported': False,
  821. u'Modules': True}}),
  822. ('debug-stack',
  823. 'tall',
  824. 1,
  825. {'codeline-mode': 'below'}),
  826. ('indent',
  827. 'tall',
  828. 2,
  829. {}),
  830. ('source-assistant',
  831. 'tall',
  832. 1,
  833. {}),
  834. ('templating#02EFWRQK9X23',
  835. 'tall',
  836. 0,
  837. None)],
  838. 'primary_view_state': {'area': 'wide',
  839. 'constraint': None,
  840. 'current_pages': [2,
  841. 0],
  842. 'notebook_display': 'normal',
  843. 'notebook_percent': 0.4595676541232986,
  844. 'override_title': None,
  845. 'pagelist': [('debug-breakpoints',
  846. 'wide',
  847. 0,
  848. {'tree-state': []}),
  849. ('bookmarks',
  850. 'wide',
  851. 0,
  852. {}),
  853. ('debug-io',
  854. 'wide',
  855. 0,
  856. {}),
  857. ('debug-exceptions',
  858. 'wide',
  859. 0,
  860. {}),
  861. ('interactive-search',
  862. 'wide',
  863. 0,
  864. {'fScope': {'fFileSetName': 'All Source Files',
  865. 'fLocation': None,
  866. 'fRecursive': True,
  867. 'fType': 'project-files'},
  868. 'fSearchSpec': {'fEndPos': None,
  869. 'fIncludeLinenos': True,
  870. 'fInterpretBackslashes': False,
  871. 'fMatchCase': False,
  872. 'fOmitBinary': True,
  873. 'fRegexFlags': 46,
  874. 'fReplaceText': u'streams_file',
  875. 'fReverse': False,
  876. 'fSearchText': u'img0',
  877. 'fStartPos': 0,
  878. 'fStyle': 'text',
  879. 'fWholeWords': False,
  880. 'fWrap': True},
  881. 'fUIOptions': {'fAutoBackground': True,
  882. 'fFilePrefix': 'short-file',
  883. 'fFindAfterReplace': True,
  884. 'fInSelection': False,
  885. 'fIncremental': True,
  886. 'fReplaceOnDisk': False,
  887. 'fShowFirstMatch': False,
  888. 'fShowLineno': True,
  889. 'fShowReplaceWidgets': False}}),
  890. ('batch-search',
  891. 'wide',
  892. 0,
  893. {'fScope': {'fFileSetName': 'All Source Files',
  894. 'fLocation': None,
  895. 'fRecursive': True,
  896. 'fType': 'documentation'},
  897. 'fSearchSpec': {'fEndPos': None,
  898. 'fIncludeLinenos': True,
  899. 'fInterpretBackslashes': False,
  900. 'fMatchCase': False,
  901. 'fOmitBinary': True,
  902. 'fRegexFlags': 46,
  903. 'fReplaceText': u'',
  904. 'fReverse': False,
  905. 'fSearchText': u'command',
  906. 'fStartPos': 0,
  907. 'fStyle': 'text',
  908. 'fWholeWords': False,
  909. 'fWrap': True},
  910. 'fUIOptions': {'fAutoBackground': True,
  911. 'fFilePrefix': 'short-file',
  912. 'fFindAfterReplace': True,
  913. 'fInSelection': False,
  914. 'fIncremental': True,
  915. 'fReplaceOnDisk': False,
  916. 'fShowFirstMatch': False,
  917. 'fShowLineno': True,
  918. 'fShowReplaceWidgets': False},
  919. 'replace-entry-expanded': False,
  920. 'search-entry-expanded': False}),
  921. ('debug-data',
  922. 'wide',
  923. 0,
  924. {}),
  925. ('testing',
  926. 'wide',
  927. 0,
  928. {'added-files': [],
  929. 'filter': u'',
  930. 'recent-filters': None,
  931. 'sort-order': 'alpha',
  932. 'tree-state': {'expanded-nodes': [],
  933. 'selected-nodes': [],
  934. 'top-node': (0,)}}),
  935. ('versioncontrol.git',
  936. 'wide',
  937. 0,
  938. {}),
  939. ('debug-modules',
  940. 'wide',
  941. 0,
  942. {}),
  943. ('debug-probe',
  944. 'wide',
  945. 2,
  946. {'active-range': (None,
  947. -1,
  948. -1),
  949. 'attrib-starts': [],
  950. 'first-line': 0L,
  951. 'folded-linenos': [],
  952. 'history': {},
  953. 'launch-id': None,
  954. 'sel-line': 0L,
  955. 'sel-line-start': 0L,
  956. 'selection_end': 0L,
  957. 'selection_start': 0L,
  958. 'zoom': 0L}),
  959. ('debug-watch',
  960. 'wide',
  961. 1,
  962. {'node-states': [('eval',
  963. u'js'),
  964. ('eval',
  965. u'js2'),
  966. ('eval',
  967. u'theme'),
  968. ('eval',
  969. u'item')],
  970. 'tree-state': {'expanded-nodes': [(0,),
  971. (1,)],
  972. 'selected-nodes': [(2,)],
  973. 'top-node': (0,)}}),
  974. ('messages',
  975. 'wide',
  976. 2,
  977. {'current-domain': 0}),
  978. ('os-command',
  979. 'wide',
  980. 1,
  981. {'last-percent': 0.8,
  982. 'toolbox-percent': 1.0,
  983. 'toolbox-tree-sel': ''}),
  984. ('uses',
  985. 'wide',
  986. 1,
  987. {}),
  988. ('python-shell',
  989. 'wide',
  990. 2,
  991. {'active-range': (None,
  992. -1,
  993. -1),
  994. 'attrib-starts': [],
  995. 'first-line': 0L,
  996. 'folded-linenos': [],
  997. 'history': {},
  998. 'launch-id': None,
  999. 'sel-line': 2L,
  1000. 'sel-line-start': 174L,
  1001. 'selection_end': 174L,
  1002. 'selection_start': 174L,
  1003. 'zoom': 0L})],
  1004. 'primary_view_state': {'editor_states': ({'bookmarks': ([[loc('sources/ltc.py'),
  1005. {'attrib-starts': [('Source',
  1006. 26),
  1007. ('Source.get_content',
  1008. 78)],
  1009. 'first-line': 505L,
  1010. 'folded-linenos': [85L,
  1011. 107L,
  1012. 124L,
  1013. 153L,
  1014. 163L,
  1015. 176L,
  1016. 213L,
  1017. 224L,
  1018. 250L,
  1019. 269L,
  1020. 288L,
  1021. 312L,
  1022. 342L,
  1023. 343L,
  1024. 360L,
  1025. 391L,
  1026. 404L,
  1027. 478L,
  1028. 516L],
  1029. 'sel-line': 513L,
  1030. 'sel-line-start': 30891L,
  1031. 'selection_end': 30891L,
  1032. 'selection_start': 30891L,
  1033. 'zoom': 0L},
  1034. 1523301001.222],
  1035. [loc('run.py'),
  1036. {'attrib-starts': [('Main',
  1037. 22),
  1038. ('Main.show_content',
  1039. 183)],
  1040. 'first-line': 180L,
  1041. 'folded-linenos': [],
  1042. 'sel-line': 187L,
  1043. 'sel-line-start': 7462L,
  1044. 'selection_end': 7462L,
  1045. 'selection_start': 7462L,
  1046. 'zoom': 0L},
  1047. 1523301005.876],
  1048. [loc('run.py'),
  1049. {'attrib-starts': [('Main',
  1050. 22),
  1051. ('Main.show_pic',
  1052. 206)],
  1053. 'first-line': 200L,
  1054. 'folded-linenos': [],
  1055. 'sel-line': 208L,
  1056. 'sel-line-start': 8240L,
  1057. 'selection_end': 8251L,
  1058. 'selection_start': 8248L,
  1059. 'zoom': 0L},
  1060. 1523301024.249],
  1061. [loc('sources/ltc.py'),
  1062. {'attrib-starts': [('Source',
  1063. 26),
  1064. ('Source.get_content',
  1065. 78)],
  1066. 'first-line': 505L,
  1067. 'folded-linenos': [85L,
  1068. 107L,
  1069. 124L,
  1070. 153L,
  1071. 163L,
  1072. 176L,
  1073. 213L,
  1074. 224L,
  1075. 250L,
  1076. 269L,
  1077. 288L,
  1078. 312L,
  1079. 342L,
  1080. 343L,
  1081. 360L,
  1082. 391L,
  1083. 404L,
  1084. 478L,
  1085. 516L],
  1086. 'sel-line': 513L,
  1087. 'sel-line-start': 30891L,
  1088. 'selection_end': 30891L,
  1089. 'selection_start': 30891L,
  1090. 'zoom': 0L},
  1091. 1523301026.87],
  1092. [loc('sources/ltc.py'),
  1093. {'attrib-starts': [('Source',
  1094. 26),
  1095. ('Source.get_content',
  1096. 78)],
  1097. 'first-line': 451L,
  1098. 'folded-linenos': [85L,
  1099. 107L,
  1100. 124L,
  1101. 153L,
  1102. 163L,
  1103. 176L,
  1104. 213L,
  1105. 224L,
  1106. 250L,
  1107. 269L,
  1108. 288L,
  1109. 312L,
  1110. 342L,
  1111. 343L,
  1112. 360L,
  1113. 391L,
  1114. 404L,
  1115. 478L,
  1116. 516L],
  1117. 'sel-line': 459L,
  1118. 'sel-line-start': 27583L,
  1119. 'selection_end': 27599L,
  1120. 'selection_start': 27595L,
  1121. 'zoom': 0L},
  1122. 1523301028.696],
  1123. [loc('sources/ltc.py'),
  1124. {'attrib-starts': [('Source',
  1125. 26),
  1126. ('Source.get_content',
  1127. 78)],
  1128. 'first-line': 463L,
  1129. 'folded-linenos': [85L,
  1130. 107L,
  1131. 124L,
  1132. 153L,
  1133. 163L,
  1134. 176L,
  1135. 213L,
  1136. 224L,
  1137. 250L,
  1138. 269L,
  1139. 288L,
  1140. 312L,
  1141. 342L,
  1142. 343L,
  1143. 360L,
  1144. 391L,
  1145. 404L,
  1146. 478L,
  1147. 516L],
  1148. 'sel-line': 473L,
  1149. 'sel-line-start': 28338L,
  1150. 'selection_end': 28372L,
  1151. 'selection_start': 28368L,
  1152. 'zoom': 0L},
  1153. 1523301034.486],
  1154. [loc('sources/ltc.py'),
  1155. {'attrib-starts': [('Source',
  1156. 26),
  1157. ('Source.get_content',
  1158. 78)],
  1159. 'first-line': 470L,
  1160. 'folded-linenos': [85L,
  1161. 107L,
  1162. 124L,
  1163. 153L,
  1164. 163L,
  1165. 176L,
  1166. 213L,
  1167. 224L,
  1168. 250L,
  1169. 269L,
  1170. 288L,
  1171. 312L,
  1172. 342L,
  1173. 343L,
  1174. 360L,
  1175. 391L,
  1176. 404L,
  1177. 478L,
  1178. 516L],
  1179. 'sel-line': 499L,
  1180. 'sel-line-start': 30170L,
  1181. 'selection_end': 30196L,
  1182. 'selection_start': 30192L,
  1183. 'zoom': 0L},
  1184. 1523301036.344],
  1185. [loc('sources/ltc.py'),
  1186. {'attrib-starts': [('Source',
  1187. 26),
  1188. ('Source.get_content',
  1189. 78)],
  1190. 'first-line': 454L,
  1191. 'folded-linenos': [85L,
  1192. 107L,
  1193. 124L,
  1194. 153L,
  1195. 163L,
  1196. 176L,
  1197. 213L,
  1198. 224L,
  1199. 250L,
  1200. 269L,
  1201. 288L,
  1202. 312L,
  1203. 342L,
  1204. 343L,
  1205. 360L,
  1206. 391L,
  1207. 404L,
  1208. 478L,
  1209. 516L],
  1210. 'sel-line': 459L,
  1211. 'sel-line-start': 27583L,
  1212. 'selection_end': 27599L,
  1213. 'selection_start': 27595L,
  1214. 'zoom': 0L},
  1215. 1523301037.993],
  1216. [loc('sources/ltc.py'),
  1217. {'attrib-starts': [('Source',
  1218. 26),
  1219. ('Source.get_content',
  1220. 78)],
  1221. 'first-line': 449L,
  1222. 'folded-linenos': [85L,
  1223. 107L,
  1224. 124L,
  1225. 153L,
  1226. 163L,
  1227. 176L,
  1228. 213L,
  1229. 224L,
  1230. 250L,
  1231. 269L,
  1232. 288L,
  1233. 312L,
  1234. 342L,
  1235. 343L,
  1236. 360L,
  1237. 391L,
  1238. 404L,
  1239. 463L,
  1240. 478L,
  1241. 516L],
  1242. 'sel-line': 452L,
  1243. 'sel-line-start': 27190L,
  1244. 'selection_end': 27198L,
  1245. 'selection_start': 27198L,
  1246. 'zoom': 0L},
  1247. 1523301068.109],
  1248. [loc('sources/ltc.py'),
  1249. {'attrib-starts': [('Source',
  1250. 26),
  1251. ('Source.get_content',
  1252. 78)],
  1253. 'first-line': 449L,
  1254. 'folded-linenos': [85L,
  1255. 107L,
  1256. 124L,
  1257. 153L,
  1258. 163L,
  1259. 176L,
  1260. 213L,
  1261. 224L,
  1262. 250L,
  1263. 269L,
  1264. 288L,
  1265. 312L,
  1266. 342L,
  1267. 343L,
  1268. 360L,
  1269. 391L,
  1270. 404L,
  1271. 463L,
  1272. 478L,
  1273. 516L],
  1274. 'sel-line': 459L,
  1275. 'sel-line-start': 27583L,
  1276. 'selection_end': 27599L,
  1277. 'selection_start': 27595L,
  1278. 'zoom': 0L},
  1279. 1523301069.886],
  1280. [loc('sources/ltc.py'),
  1281. {'attrib-starts': [('Source',
  1282. 26),
  1283. ('Source.get_content',
  1284. 78)],
  1285. 'first-line': 463L,
  1286. 'folded-linenos': [85L,
  1287. 107L,
  1288. 124L,
  1289. 153L,
  1290. 163L,
  1291. 176L,
  1292. 213L,
  1293. 224L,
  1294. 250L,
  1295. 269L,
  1296. 288L,
  1297. 312L,
  1298. 342L,
  1299. 343L,
  1300. 360L,
  1301. 391L,
  1302. 404L,
  1303. 478L,
  1304. 516L],
  1305. 'sel-line': 473L,
  1306. 'sel-line-start': 28338L,
  1307. 'selection_end': 28372L,
  1308. 'selection_start': 28368L,
  1309. 'zoom': 0L},
  1310. 1523301071.817],
  1311. [loc('sources/ltc.py'),
  1312. {'attrib-starts': [('Source',
  1313. 26),
  1314. ('Source.get_content',
  1315. 78)],
  1316. 'first-line': 36L,
  1317. 'folded-linenos': [85L,
  1318. 107L,
  1319. 124L,
  1320. 153L,
  1321. 163L,
  1322. 176L,
  1323. 213L,
  1324. 224L,
  1325. 250L,
  1326. 269L,
  1327. 288L,
  1328. 312L,
  1329. 342L,
  1330. 343L,
  1331. 360L,
  1332. 391L,
  1333. 404L,
  1334. 518L],
  1335. 'sel-line': 453L,
  1336. 'sel-line-start': 27270L,
  1337. 'selection_end': 27270L,
  1338. 'selection_start': 27270L,
  1339. 'zoom': 0L},
  1340. 1523301761.91],
  1341. [loc('sources/ltc.py'),
  1342. {'attrib-starts': [('Source',
  1343. 26),
  1344. ('Source.get_content',
  1345. 78)],
  1346. 'first-line': 113L,
  1347. 'folded-linenos': [85L,
  1348. 130L,
  1349. 159L,
  1350. 169L,
  1351. 182L,
  1352. 219L,
  1353. 230L,
  1354. 256L,
  1355. 275L,
  1356. 294L,
  1357. 318L,
  1358. 348L,
  1359. 349L,
  1360. 366L,
  1361. 397L,
  1362. 410L,
  1363. 524L],
  1364. 'sel-line': 123L,
  1365. 'sel-line-start': 5809L,
  1366. 'selection_end': 5846L,
  1367. 'selection_start': 5846L,
  1368. 'zoom': 0L},
  1369. 1523303507.445],
  1370. [loc('run.py'),
  1371. {'attrib-starts': [('Main',
  1372. 22),
  1373. ('Main.list_action',
  1374. 106)],
  1375. 'first-line': 105L,
  1376. 'folded-linenos': [],
  1377. 'sel-line': 110L,
  1378. 'sel-line-start': 4505L,
  1379. 'selection_end': 4505L,
  1380. 'selection_start': 4505L,
  1381. 'zoom': 0L},
  1382. 1523303526.133],
  1383. [loc('sources/ltc.py'),
  1384. {'attrib-starts': [('Source',
  1385. 26),
  1386. ('Source.get_content',
  1387. 78)],
  1388. 'first-line': 113L,
  1389. 'folded-linenos': [85L,
  1390. 130L,
  1391. 159L,
  1392. 169L,
  1393. 182L,
  1394. 219L,
  1395. 230L,
  1396. 256L,
  1397. 275L,
  1398. 294L,
  1399. 318L,
  1400. 348L,
  1401. 349L,
  1402. 366L,
  1403. 397L,
  1404. 410L,
  1405. 524L],
  1406. 'sel-line': 123L,
  1407. 'sel-line-start': 5809L,
  1408. 'selection_end': 5846L,
  1409. 'selection_start': 5846L,
  1410. 'zoom': 0L},
  1411. 1523303565.321],
  1412. [loc('run.py'),
  1413. {'attrib-starts': [('Main',
  1414. 22),
  1415. ('Main.list_action',
  1416. 106)],
  1417. 'first-line': 120L,
  1418. 'folded-linenos': [],
  1419. 'sel-line': 121L,
  1420. 'sel-line-start': 4809L,
  1421. 'selection_end': 4832L,
  1422. 'selection_start': 4832L,
  1423. 'zoom': 0L},
  1424. 1523343765.139],
  1425. [loc('sources/ltc.py'),
  1426. {'attrib-starts': [('Source',
  1427. 26),
  1428. ('Source.get_content',
  1429. 78)],
  1430. 'first-line': 113L,
  1431. 'folded-linenos': [85L,
  1432. 130L,
  1433. 159L,
  1434. 169L,
  1435. 182L,
  1436. 219L,
  1437. 230L,
  1438. 256L,
  1439. 275L,
  1440. 294L,
  1441. 318L,
  1442. 348L,
  1443. 349L,
  1444. 366L,
  1445. 397L,
  1446. 410L,
  1447. 524L],
  1448. 'sel-line': 123L,
  1449. 'sel-line-start': 5809L,
  1450. 'selection_end': 5846L,
  1451. 'selection_start': 5846L,
  1452. 'zoom': 0L},
  1453. 1523343770.158],
  1454. [loc('sources/ltc.py'),
  1455. {'attrib-starts': [('Source',
  1456. 26),
  1457. ('Source.get_content',
  1458. 78)],
  1459. 'first-line': 88L,
  1460. 'folded-linenos': [131L,
  1461. 160L,
  1462. 170L,
  1463. 183L,
  1464. 220L,
  1465. 231L,
  1466. 257L,
  1467. 276L,
  1468. 295L,
  1469. 319L,
  1470. 349L,
  1471. 350L,
  1472. 367L,
  1473. 398L,
  1474. 411L,
  1475. 525L],
  1476. 'sel-line': 97L,
  1477. 'sel-line-start': 4220L,
  1478. 'selection_end': 4322L,
  1479. 'selection_start': 4322L,
  1480. 'zoom': 0L},
  1481. 1523348312.767],
  1482. [loc('sources/ltc.py'),
  1483. {'attrib-starts': [('Source',
  1484. 26),
  1485. ('Source.get_streams',
  1486. 549)],
  1487. 'first-line': 45L,
  1488. 'folded-linenos': [131L,
  1489. 160L,
  1490. 170L,
  1491. 183L,
  1492. 220L,
  1493. 231L,
  1494. 257L,
  1495. 276L,
  1496. 295L,
  1497. 319L,
  1498. 349L,
  1499. 350L,
  1500. 367L,
  1501. 398L,
  1502. 411L,
  1503. 525L],
  1504. 'sel-line': 549L,
  1505. 'sel-line-start': 32845L,
  1506. 'selection_end': 32864L,
  1507. 'selection_start': 32853L,
  1508. 'zoom': 0L},
  1509. 1523382892.906],
  1510. [loc('sources/ltc.py'),
  1511. {'attrib-starts': [('Source',
  1512. 26),
  1513. ('Source.get_content',
  1514. 78)],
  1515. 'first-line': 85L,
  1516. 'folded-linenos': [131L,
  1517. 160L,
  1518. 170L,
  1519. 183L,
  1520. 220L,
  1521. 231L,
  1522. 257L,
  1523. 276L,
  1524. 295L,
  1525. 319L,
  1526. 349L,
  1527. 350L,
  1528. 367L,
  1529. 398L,
  1530. 411L,
  1531. 525L],
  1532. 'sel-line': 97L,
  1533. 'sel-line-start': 4220L,
  1534. 'selection_end': 4237L,
  1535. 'selection_start': 4237L,
  1536. 'zoom': 0L},
  1537. 1523383228.243]],
  1538. 20),
  1539. 'current-loc': loc('changelog.md'),
  1540. 'editor-state-list': [(loc('run.py'),
  1541. {'attrib-starts': [('Main',
  1542. 22),
  1543. ('Main.list_action',
  1544. 106)],
  1545. 'first-line': 120L,
  1546. 'folded-linenos': [],
  1547. 'sel-line': 121L,
  1548. 'sel-line-start': 4809L,
  1549. 'selection_end': 4832L,
  1550. 'selection_start': 4832L,
  1551. 'zoom': 0L}),
  1552. (loc('util.py'),
  1553. {'attrib-starts': [('unescape',
  1554. 538)],
  1555. 'first-line': 537L,
  1556. 'folded-linenos': [],
  1557. 'sel-line': 540L,
  1558. 'sel-line-start': 16550L,
  1559. 'selection_end': 16598L,
  1560. 'selection_start': 16598L,
  1561. 'zoom': 0L}),
  1562. (loc('ContentSources.py'),
  1563. {'attrib-starts': [('ContentSources',
  1564. 16),
  1565. ('ContentSources.get_streams',
  1566. 96)],
  1567. 'first-line': 103L,
  1568. 'folded-linenos': [],
  1569. 'sel-line': 113L,
  1570. 'sel-line-start': 4784L,
  1571. 'selection_end': 4784L,
  1572. 'selection_start': 4784L,
  1573. 'zoom': 0L}),
  1574. (loc('sources/ltc.py'),
  1575. {'attrib-starts': [('Source',
  1576. 26),
  1577. ('Source.get_content',
  1578. 78)],
  1579. 'first-line': 85L,
  1580. 'folded-linenos': [131L,
  1581. 160L,
  1582. 170L,
  1583. 183L,
  1584. 220L,
  1585. 231L,
  1586. 257L,
  1587. 276L,
  1588. 295L,
  1589. 319L,
  1590. 349L,
  1591. 350L,
  1592. 367L,
  1593. 398L,
  1594. 411L,
  1595. 525L],
  1596. 'sel-line': 97L,
  1597. 'sel-line-start': 4220L,
  1598. 'selection_end': 4237L,
  1599. 'selection_start': 4237L,
  1600. 'zoom': 0L}),
  1601. (loc('sources/replay.py'),
  1602. {'attrib-starts': [('Source',
  1603. 30),
  1604. ('Source.get_content',
  1605. 41)],
  1606. 'first-line': 86L,
  1607. 'folded-linenos': [],
  1608. 'sel-line': 93L,
  1609. 'sel-line-start': 4254L,
  1610. 'selection_end': 4254L,
  1611. 'selection_start': 4254L,
  1612. 'zoom': 0L}),
  1613. (loc('sources/lmt.py'),
  1614. {'attrib-starts': [],
  1615. 'first-line': 199L,
  1616. 'folded-linenos': [],
  1617. 'sel-line': 210L,
  1618. 'sel-line-start': 8912L,
  1619. 'selection_end': 8920L,
  1620. 'selection_start': 8920L,
  1621. 'zoom': 0L}),
  1622. (loc('Downloader.py'),
  1623. {'attrib-starts': [('get_header',
  1624. 195)],
  1625. 'first-line': 175L,
  1626. 'folded-linenos': [],
  1627. 'sel-line': 198L,
  1628. 'sel-line-start': 7992L,
  1629. 'selection_end': 8012L,
  1630. 'selection_start': 8012L,
  1631. 'zoom': 0L}),
  1632. (loc('sources/euronews.py'),
  1633. {'attrib-starts': [],
  1634. 'first-line': 302L,
  1635. 'folded-linenos': [],
  1636. 'sel-line': 309L,
  1637. 'sel-line-start': 12837L,
  1638. 'selection_end': 12837L,
  1639. 'selection_start': 12837L,
  1640. 'zoom': 0L}),
  1641. (loc('resolver.py'),
  1642. {'attrib-starts': [],
  1643. 'first-line': 0L,
  1644. 'folded-linenos': [],
  1645. 'sel-line': 0L,
  1646. 'sel-line-start': 0L,
  1647. 'selection_end': 0L,
  1648. 'selection_start': 0L,
  1649. 'zoom': 0L}),
  1650. (loc('sources/config.py'),
  1651. {'attrib-starts': [('Source',
  1652. 12),
  1653. ('Source.write_streams',
  1654. 76)],
  1655. 'first-line': 107L,
  1656. 'folded-linenos': [],
  1657. 'sel-line': 116L,
  1658. 'sel-line-start': 4379L,
  1659. 'selection_end': 4379L,
  1660. 'selection_start': 4379L,
  1661. 'zoom': 0L}),
  1662. (loc('changelog.md'),
  1663. {'attrib-starts': [],
  1664. 'first-line': 0L,
  1665. 'folded-linenos': [],
  1666. 'sel-line': 1L,
  1667. 'sel-line-start': 17L,
  1668. 'selection_end': 59L,
  1669. 'selection_start': 59L,
  1670. 'zoom': 0L})],
  1671. 'has-focus': True,
  1672. 'locked': False},
  1673. [loc('run.py'),
  1674. loc('util.py'),
  1675. loc('ContentSources.py'),
  1676. loc('sources/ltc.py'),
  1677. loc('sources/replay.py'),
  1678. loc('sources/lmt.py'),
  1679. loc('Downloader.py'),
  1680. loc('sources/euronews.py'),
  1681. loc('resolver.py'),
  1682. loc('sources/config.py'),
  1683. loc('changelog.md')]),
  1684. 'open_files': [u'ContentSources.py',
  1685. u'Downloader.py',
  1686. u'resolver.py',
  1687. u'run.py',
  1688. u'sources/config.py',
  1689. u'sources/euronews.py',
  1690. u'sources/lmt.py',
  1691. u'sources/replay.py',
  1692. u'util.py',
  1693. u'sources/ltc.py',
  1694. u'changelog.md']},
  1695. 'saved_notebook_display': None,
  1696. 'split_percents': {0: 0.5061155630535639},
  1697. 'splits': 2,
  1698. 'tab_location': 'top',
  1699. 'user_data': {}},
  1700. 'saved_notebook_display': None,
  1701. 'split_percents': {0: 0.5},
  1702. 'splits': 2,
  1703. 'tab_location': 'left',
  1704. 'user_data': {}},
  1705. 'window-alloc': (126,
  1706. 0,
  1707. 2434,
  1708. 1440)}]}
  1709. guimgr.recent-documents = [loc('changelog.md'),
  1710. loc('sources/ltc.py'),
  1711. loc('util.py'),
  1712. loc('run.py'),
  1713. loc('sources/config.py'),
  1714. loc('ContentSources.py'),
  1715. loc('sources/replay.py'),
  1716. loc('sources/euronews.py'),
  1717. loc('resolver.py'),
  1718. loc('Downloader.py'),
  1719. loc('sources/lmt.py')]
  1720. guimgr.visual-state = {loc('../../../Python25/Lib/BeautifulSoup.py'): {'attr'\
  1721. 'ib-starts': [('NavigableString',
  1722. 354),
  1723. ('NavigableString.__getattr__',
  1724. 356)],
  1725. 'first-line': 337,
  1726. 'sel-line': 363,
  1727. 'sel-line-start': 13868,
  1728. 'selection_end': 13868,
  1729. 'selection_start': 13868},
  1730. loc('../../../Python25/Lib/HTMLParser.py'): {'attrib-'\
  1731. 'starts': [('HTMLParser',
  1732. 66),
  1733. ('HTMLParser.check_for_whole_start_tag',
  1734. 274)],
  1735. 'first-line': 284,
  1736. 'folded-linenos': [],
  1737. 'sel-line': 301,
  1738. 'sel-line-start': 10981,
  1739. 'selection_end': 11013,
  1740. 'selection_start': 11013},
  1741. loc('../../../Python25/Lib/VideoCapture.py'): {'attri'\
  1742. 'b-starts': [],
  1743. 'first-line': 0,
  1744. 'folded-linenos': [],
  1745. 'sel-line': 7,
  1746. 'sel-line-start': 85,
  1747. 'selection_end': 128,
  1748. 'selection_start': 85},
  1749. loc('../../../Python25/Lib/encodings/cp1257.py'): {'a'\
  1750. 'ttrib-starts': [('Codec',
  1751. 8),
  1752. ('Codec.encode',
  1753. 10)],
  1754. 'first-line': 0,
  1755. 'folded-linenos': [],
  1756. 'sel-line': 10,
  1757. 'sel-line-start': 197,
  1758. 'selection_end': 197,
  1759. 'selection_start': 197},
  1760. loc('../../../Python25/Lib/re.py'): {'attrib-starts': [],
  1761. 'first-line': 0,
  1762. 'folded-linenos': [],
  1763. 'sel-line': 0,
  1764. 'sel-line-start': 0,
  1765. 'selection_end': 0,
  1766. 'selection_start': 0},
  1767. loc('../../../Python25/Lib/site-packages/BeautifulSoup.py'): {'a'\
  1768. 'ttrib-starts': [('SoupStrainer',
  1769. 817),
  1770. ('SoupStrainer._matches',
  1771. 904)],
  1772. 'first-line': 907,
  1773. 'folded-linenos': [],
  1774. 'sel-line': 928,
  1775. 'sel-line-start': 35455,
  1776. 'selection_end': 35455,
  1777. 'selection_start': 35455},
  1778. loc('../../../Python25/Lib/site-packages/PIL/Image.py'): {'a'\
  1779. 'ttrib-starts': [],
  1780. 'first-line': 26,
  1781. 'folded-linenos': [],
  1782. 'sel-line': 44,
  1783. 'sel-line-start': 1253,
  1784. 'selection_end': 1253,
  1785. 'selection_start': 1253},
  1786. loc('../../../Python25/Lib/site-packages/PIL/__init__.py'): {'a'\
  1787. 'ttrib-starts': [],
  1788. 'first-line': 0,
  1789. 'folded-linenos': [],
  1790. 'sel-line': 0,
  1791. 'sel-line-start': 0,
  1792. 'selection_end': 0,
  1793. 'selection_start': 0},
  1794. loc('../../../Python25/Lib/site-packages/argparse.py'): {'a'\
  1795. 'ttrib-starts': [('_ActionsContainer',
  1796. 926),
  1797. ('_ActionsContainer._handle_conflict_error',
  1798. 1132)],
  1799. 'first-line': 1106,
  1800. 'folded-linenos': [],
  1801. 'sel-line': 1137,
  1802. 'sel-line-start': 41374,
  1803. 'selection_end': 41374,
  1804. 'selection_start': 41374},
  1805. loc('../../../Python25/Lib/site-packages/win32com/client/__init__.py'): {'a'\
  1806. 'ttrib-starts': [('DispatchBaseClass',
  1807. 410),
  1808. ('DispatchBaseClass._ApplyTypes_',
  1809. 443)],
  1810. 'first-line': 425,
  1811. 'folded-linenos': [],
  1812. 'sel-line': 447,
  1813. 'sel-line-start': 19318,
  1814. 'selection_end': 19318,
  1815. 'selection_start': 19318},
  1816. loc('../../../Python25/Lib/site-packages/win32com/client/dynamic.py'): {'a'\
  1817. 'ttrib-starts': [('CDispatch',
  1818. 151),
  1819. ('CDispatch.__getattr__',
  1820. 421)],
  1821. 'first-line': 489,
  1822. 'folded-linenos': [],
  1823. 'sel-line': 494,
  1824. 'sel-line-start': 19030,
  1825. 'selection_end': 19030,
  1826. 'selection_start': 19030},
  1827. loc('../../../Python25/Lib/site-packages/win32com/gen_py/00020813-0000-0000-C000-000000000046x0x1x6.py'): {'a'\
  1828. 'ttrib-starts': [('Range',
  1829. 26378),
  1830. ('Range.__call__',
  1831. 27016)],
  1832. 'first-line': 26996,
  1833. 'folded-linenos': [],
  1834. 'sel-line': 27018,
  1835. 'sel-line-start': 1285165,
  1836. 'selection_end': 1285165,
  1837. 'selection_start': 1285165},
  1838. loc('../../../Python25/Lib/socket.py'): {'attrib-star'\
  1839. 'ts': [('_fileobject',
  1840. 195),
  1841. ('_fileobject.readline',
  1842. 320)],
  1843. 'first-line': 301,
  1844. 'sel-line': 330,
  1845. 'sel-line-start': 10707,
  1846. 'selection_end': 10707,
  1847. 'selection_start': 10707},
  1848. loc('../../../Python25/Lib/sre_parse.py'): {'attrib-s'\
  1849. 'tarts': [('_parse',
  1850. 384)],
  1851. 'first-line': 375,
  1852. 'folded-linenos': [],
  1853. 'sel-line': 406,
  1854. 'sel-line-start': 12403,
  1855. 'selection_end': 12403,
  1856. 'selection_start': 12403},
  1857. loc('config.py'): {'attrib-starts': [],
  1858. 'first-line': 0,
  1859. 'folded-linenos': [],
  1860. 'sel-line': 38,
  1861. 'sel-line-start': 1110,
  1862. 'selection_end': 1110,
  1863. 'selection_start': 1110},
  1864. loc('iub.py'): {'attrib-starts': [('get_table',
  1865. 51)],
  1866. 'first-line': 0,
  1867. 'folded-linenos': [],
  1868. 'sel-line': 101,
  1869. 'sel-line-start': 3652,
  1870. 'selection_end': 3685,
  1871. 'selection_start': 3669},
  1872. loc('iubx.py'): {'attrib-starts': [('parse_arguments',
  1873. 25)],
  1874. 'first-line': 0,
  1875. 'folded-linenos': [],
  1876. 'sel-line': 32,
  1877. 'sel-line-start': 1289,
  1878. 'selection_end': 1335,
  1879. 'selection_start': 1335},
  1880. loc('iubx0.py'): {'attrib-starts': [('main',
  1881. 40)],
  1882. 'first-line': 349,
  1883. 'folded-linenos': [],
  1884. 'sel-line': 84,
  1885. 'sel-line-start': 3404,
  1886. 'selection_end': 3450,
  1887. 'selection_start': 3449},
  1888. loc('kivy_test.py'): {'attrib-starts': [],
  1889. 'first-line': 0L,
  1890. 'folded-linenos': [24L],
  1891. 'sel-line': 0L,
  1892. 'sel-line-start': 0L,
  1893. 'selection_end': 3L,
  1894. 'selection_start': 3L,
  1895. 'zoom': 0L},
  1896. loc('kivy_test2.py'): {'attrib-starts': [],
  1897. 'first-line': 0L,
  1898. 'folded-linenos': [],
  1899. 'sel-line': 1L,
  1900. 'sel-line-start': 11L,
  1901. 'selection_end': 42L,
  1902. 'selection_start': 42L,
  1903. 'zoom': 0L},
  1904. loc('resolvers/cloudsany.py'): {'attrib-starts': [('r'\
  1905. 'esolve',
  1906. 30)],
  1907. 'first-line': 32L,
  1908. 'folded-linenos': [],
  1909. 'sel-line': 39L,
  1910. 'sel-line-start': 1116L,
  1911. 'selection_end': 1158L,
  1912. 'selection_start': 1130L,
  1913. 'zoom': 0L},
  1914. loc('resolvers/hqqresolver.py'): {'attrib-starts': [('r'\
  1915. 'esolve',
  1916. 127)],
  1917. 'first-line': 155L,
  1918. 'folded-linenos': [],
  1919. 'sel-line': 166L,
  1920. 'sel-line-start': 6121L,
  1921. 'selection_end': 6141L,
  1922. 'selection_start': 6137L,
  1923. 'zoom': 0L},
  1924. loc('resolvers/openload3.py'): {'attrib-starts': [('r'\
  1925. 'esolve',
  1926. 49)],
  1927. 'first-line': 47L,
  1928. 'folded-linenos': [],
  1929. 'sel-line': 59L,
  1930. 'sel-line-start': 1909L,
  1931. 'selection_end': 1932L,
  1932. 'selection_start': 1928L,
  1933. 'zoom': 0L},
  1934. loc('run.py'): {'attrib-starts': [('Main',
  1935. 22),
  1936. ('Main.__init__',
  1937. 24)],
  1938. 'first-line': 30L,
  1939. 'folded-linenos': [],
  1940. 'sel-line': 38L,
  1941. 'sel-line-start': 1189L,
  1942. 'selection_end': 1272L,
  1943. 'selection_start': 1272L,
  1944. 'zoom': 0L},
  1945. loc('sources/SourceBase.py'): {'attrib-starts': [('So'\
  1946. 'urceBase',
  1947. 32),
  1948. ('SourceBase._http_request',
  1949. 118)],
  1950. 'first-line': 118L,
  1951. 'folded-linenos': [],
  1952. 'sel-line': 125L,
  1953. 'sel-line-start': 4550L,
  1954. 'selection_end': 4550L,
  1955. 'selection_start': 4550L,
  1956. 'zoom': 0L},
  1957. loc('sources/cinemalive.py'): {'attrib-starts': [('So'\
  1958. 'urce',
  1959. 29),
  1960. ('Source.get_streams',
  1961. 166)],
  1962. 'first-line': 176L,
  1963. 'folded-linenos': [],
  1964. 'sel-line': 184L,
  1965. 'sel-line-start': 9047L,
  1966. 'selection_end': 9087L,
  1967. 'selection_start': 9074L,
  1968. 'zoom': 0L},
  1969. loc('sources/config.py'): {'attrib-starts': [('Source',
  1970. 12),
  1971. ('Source.write_streams',
  1972. 73)],
  1973. 'first-line': 112L,
  1974. 'folded-linenos': [],
  1975. 'sel-line': 115L,
  1976. 'sel-line-start': 4309L,
  1977. 'selection_end': 4309L,
  1978. 'selection_start': 4309L,
  1979. 'zoom': 0L},
  1980. loc('sources/euronews.py'): {'attrib-starts': [('Sour'\
  1981. 'ce',
  1982. 26),
  1983. ('Source.__init__',
  1984. 28)],
  1985. 'first-line': 19L,
  1986. 'folded-linenos': [],
  1987. 'sel-line': 31L,
  1988. 'sel-line-start': 919L,
  1989. 'selection_end': 951L,
  1990. 'selection_start': 951L,
  1991. 'zoom': 0L},
  1992. loc('sources/filmas.py'): {'attrib-starts': [('Source',
  1993. 36),
  1994. ('Source.__init__',
  1995. 38)],
  1996. 'first-line': 42L,
  1997. 'folded-linenos': [],
  1998. 'sel-line': 44L,
  1999. 'sel-line-start': 1330L,
  2000. 'selection_end': 1369L,
  2001. 'selection_start': 1369L,
  2002. 'zoom': 0L},
  2003. loc('sources/filmix.py'): {'attrib-starts': [('Source',
  2004. 31),
  2005. ('Source.get_streams',
  2006. 263)],
  2007. 'first-line': 280L,
  2008. 'folded-linenos': [],
  2009. 'sel-line': 288L,
  2010. 'sel-line-start': 12733L,
  2011. 'selection_end': 12813L,
  2012. 'selection_start': 12813L,
  2013. 'zoom': 0L},
  2014. loc('sources/filmon.py'): {'attrib-starts': [('Source',
  2015. 32),
  2016. ('Source.get_content',
  2017. 47)],
  2018. 'first-line': 113L,
  2019. 'folded-linenos': [],
  2020. 'sel-line': 122L,
  2021. 'sel-line-start': 4665L,
  2022. 'selection_end': 4665L,
  2023. 'selection_start': 4665L,
  2024. 'zoom': 0L},
  2025. loc('sources/iplayer.py'): {'attrib-starts': [('Sourc'\
  2026. 'e',
  2027. 27),
  2028. ('Source.get_epg_video',
  2029. 370)],
  2030. 'first-line': 396L,
  2031. 'folded-linenos': [],
  2032. 'sel-line': 406L,
  2033. 'sel-line-start': 20357L,
  2034. 'selection_end': 20357L,
  2035. 'selection_start': 20357L,
  2036. 'zoom': 0L},
  2037. loc('sources/lmt.py'): {'attrib-starts': [('Source',
  2038. 32),
  2039. ('Source.get_content',
  2040. 52)],
  2041. 'first-line': 49L,
  2042. 'folded-linenos': [],
  2043. 'sel-line': 60L,
  2044. 'sel-line-start': 1987L,
  2045. 'selection_end': 2043L,
  2046. 'selection_start': 2043L,
  2047. 'zoom': 0L},
  2048. loc('sources/ltc.py'): {'attrib-starts': [('Source',
  2049. 27),
  2050. ('Source.__init__',
  2051. 29)],
  2052. 'first-line': 20L,
  2053. 'folded-linenos': [],
  2054. 'sel-line': 32L,
  2055. 'sel-line-start': 1211L,
  2056. 'selection_end': 1227L,
  2057. 'selection_start': 1219L,
  2058. 'zoom': 0L},
  2059. loc('sources/movieplace.py'): {'attrib-starts': [('So'\
  2060. 'urce',
  2061. 32),
  2062. ('Source.__init__',
  2063. 34)],
  2064. 'first-line': 26L,
  2065. 'folded-linenos': [],
  2066. 'sel-line': 38L,
  2067. 'sel-line-start': 1089L,
  2068. 'selection_end': 1119L,
  2069. 'selection_start': 1119L,
  2070. 'zoom': 0L},
  2071. loc('sources/mtgplay.py'): {'attrib-starts': [('Sourc'\
  2072. 'e',
  2073. 40),
  2074. ('Source.get_content',
  2075. 51)],
  2076. 'first-line': 155L,
  2077. 'folded-linenos': [],
  2078. 'sel-line': 162L,
  2079. 'sel-line-start': 8033L,
  2080. 'selection_end': 8077L,
  2081. 'selection_start': 8077L,
  2082. 'zoom': 0L},
  2083. loc('sources/play24.py'): {'attrib-starts': [('Source',
  2084. 28),
  2085. ('Source.__init__',
  2086. 30)],
  2087. 'first-line': 21L,
  2088. 'folded-linenos': [],
  2089. 'sel-line': 33L,
  2090. 'sel-line-start': 1074L,
  2091. 'selection_end': 1090L,
  2092. 'selection_start': 1082L,
  2093. 'zoom': 0L},
  2094. loc('sources/replay.py'): {'attrib-starts': [('Source',
  2095. 30),
  2096. ('Source.get_content',
  2097. 41)],
  2098. 'first-line': 109L,
  2099. 'folded-linenos': [],
  2100. 'sel-line': 114L,
  2101. 'sel-line-start': 5306L,
  2102. 'selection_end': 5306L,
  2103. 'selection_start': 5306L,
  2104. 'zoom': 0L},
  2105. loc('sources/tvdom.py'): {'attrib-starts': [('Source',
  2106. 32),
  2107. ('Source.get_streams',
  2108. 242)],
  2109. 'first-line': 0L,
  2110. 'folded-linenos': [],
  2111. 'sel-line': 291L,
  2112. 'sel-line-start': 13715L,
  2113. 'selection_end': 13715L,
  2114. 'selection_start': 13715L,
  2115. 'zoom': 0L},
  2116. loc('sources/ustvnow.py'): {'attrib-starts': [('Sourc'\
  2117. 'e',
  2118. 32),
  2119. ('Source.__init__',
  2120. 34)],
  2121. 'first-line': 26L,
  2122. 'folded-linenos': [],
  2123. 'sel-line': 38L,
  2124. 'sel-line-start': 1260L,
  2125. 'selection_end': 1287L,
  2126. 'selection_start': 1287L,
  2127. 'zoom': 0L},
  2128. loc('sources/viaplay.py'): {'attrib-starts': [('Sourc'\
  2129. 'e',
  2130. 36),
  2131. ('Source.__init__',
  2132. 38)],
  2133. 'first-line': 37L,
  2134. 'folded-linenos': [],
  2135. 'sel-line': 42L,
  2136. 'sel-line-start': 1308L,
  2137. 'selection_end': 1324L,
  2138. 'selection_start': 1316L,
  2139. 'zoom': 0L},
  2140. loc('test_sources.py'): {'attrib-starts': [('App',
  2141. 2),
  2142. ('App.__init__',
  2143. 4)],
  2144. 'first-line': 0L,
  2145. 'folded-linenos': [],
  2146. 'sel-line': 11L,
  2147. 'sel-line-start': 403L,
  2148. 'selection_end': 429L,
  2149. 'selection_start': 424L,
  2150. 'zoom': 0L},
  2151. loc('test_sources2.py'): {'attrib-starts': [('Main',
  2152. 12),
  2153. ('Main.initUI',
  2154. 30)],
  2155. 'first-line': 39L,
  2156. 'folded-linenos': [],
  2157. 'sel-line': 41L,
  2158. 'sel-line-start': 1171L,
  2159. 'selection_end': 1857L,
  2160. 'selection_start': 1171L,
  2161. 'zoom': 0L},
  2162. loc('../untitled-1.py'): {'attrib-starts': [],
  2163. 'first-line': 0,
  2164. 'folded-linenos': [],
  2165. 'sel-line': 0,
  2166. 'sel-line-start': 0,
  2167. 'selection_end': 1,
  2168. 'selection_start': 1},
  2169. loc('../../../../../Python27/lib/ftplib.py'): {'attri'\
  2170. 'b-starts': [],
  2171. 'first-line': 0L,
  2172. 'folded-linenos': [],
  2173. 'sel-line': 0L,
  2174. 'sel-line-start': 0L,
  2175. 'selection_end': 0L,
  2176. 'selection_start': 0L,
  2177. 'zoom': 0L},
  2178. loc('../../../../../Python27/lib/lib-tk/Tkinter.py'): {'a'\
  2179. 'ttrib-starts': [('CallWrapper',
  2180. 1528),
  2181. ('CallWrapper.__call__',
  2182. 1536)],
  2183. 'first-line': 1537L,
  2184. 'folded-linenos': [],
  2185. 'sel-line': 1542L,
  2186. 'sel-line-start': 60799L,
  2187. 'selection_end': 60799L,
  2188. 'selection_start': 60799L,
  2189. 'zoom': 0L},
  2190. loc('../../../../../Python27/lib/lib-tk/tkCommonDialog.py'): {'a'\
  2191. 'ttrib-starts': [('Dialog',
  2192. 12)],
  2193. 'first-line': 12L,
  2194. 'folded-linenos': [],
  2195. 'sel-line': 12L,
  2196. 'sel-line-start': 298L,
  2197. 'selection_end': 298L,
  2198. 'selection_start': 298L,
  2199. 'zoom': 0L},
  2200. loc('../../../../../Python27/lib/lib-tk/tkSimpleDialog.py'): {'a'\
  2201. 'ttrib-starts': [('Dialog',
  2202. 29),
  2203. ('Dialog.__init__',
  2204. 36)],
  2205. 'first-line': 61L,
  2206. 'folded-linenos': [],
  2207. 'sel-line': 76L,
  2208. 'sel-line-start': 1627L,
  2209. 'selection_end': 1686L,
  2210. 'selection_start': 1686L,
  2211. 'zoom': 0L},
  2212. loc('../../../../../Python27/lib/site-packages/requests/adapters.py'): {'a'\
  2213. 'ttrib-starts': [('HTTPAdapter',
  2214. 80),
  2215. ('HTTPAdapter.send',
  2216. 387)],
  2217. 'first-line': 493L,
  2218. 'folded-linenos': [],
  2219. 'sel-line': 505L,
  2220. 'sel-line-start': 20166L,
  2221. 'selection_end': 20166L,
  2222. 'selection_start': 20166L,
  2223. 'zoom': 0L},
  2224. loc('../../../../../Python27/lib/site-packages/requests/models.py'): {'a'\
  2225. 'ttrib-starts': [('Response',
  2226. 577),
  2227. ('Response.content',
  2228. 810)],
  2229. 'first-line': 819L,
  2230. 'folded-linenos': [],
  2231. 'sel-line': 827L,
  2232. 'sel-line-start': 29594L,
  2233. 'selection_end': 29594L,
  2234. 'selection_start': 29594L,
  2235. 'zoom': 0L},
  2236. loc('x-wingide-zip://C:/Python25/Lib/site-packages/argparse-1.1-py2.5.egg//argparse.py'): {'a'\
  2237. 'ttrib-starts': [('_ActionsContainer',
  2238. 1187),
  2239. ('_ActionsContainer.add_argument',
  2240. 1270)],
  2241. 'first-line': 1271,
  2242. 'folded-linenos': [],
  2243. 'sel-line': 1283,
  2244. 'sel-line-start': 45405,
  2245. 'selection_end': 45405,
  2246. 'selection_start': 45405},
  2247. loc('x-wingide-zip://C:/Python25/Lib/site-packages/beautifulsoup-3.1.0.1-py2.5.egg//BeautifulSoup.py'): {'a'\
  2248. 'ttrib-starts': [('BeautifulSoup',
  2249. 1446),
  2250. ('BeautifulSoup.__init__',
  2251. 1494)],
  2252. 'first-line': 1481,
  2253. 'folded-linenos': [],
  2254. 'sel-line': 1498,
  2255. 'sel-line-start': 57438,
  2256. 'selection_end': 57438,
  2257. 'selection_start': 57438}}
  2258. proj.build-cmd = {None: ('default',
  2259. None)}
  2260. proj.env-vars = {None: ('default',
  2261. [u''])}
  2262. search.replace-history = [u'www.shortcut.lv',
  2263. u'shortcut.lv']
  2264. search.search-history = [u'img0',
  2265. u'get_movie_info',
  2266. u'player_data',
  2267. u'cfg_file',
  2268. u'read_streams',
  2269. u'read_stream',
  2270. u'confif_file',
  2271. u'confif_f',
  2272. u'streams_file',
  2273. u'img',
  2274. u'desc',
  2275. u'unqute',
  2276. u'raise',
  2277. u'can not find ',
  2278. u'get_head',
  2279. u'base_url',
  2280. u'download',
  2281. u'order=',
  2282. u'API_URL',
  2283. u'thumbnail']
  2284. testing.stored-results = (1,
  2285. [],
  2286. {})