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

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779
  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('iub_db.py'): ('project',
  18. (u'-d 90 -s -o',
  19. '')),
  20. loc('iub_db2.py'): ('project',
  21. (u'-p 1 2 --debug ',
  22. '')),
  23. loc('iub_email.py'): ('project',
  24. (u'-i --debug',
  25. '')),
  26. loc('iubx.py'): ('project',
  27. (u'-s -d30',
  28. '')),
  29. loc('iubx2.py'): ('project',
  30. (u'-sgr -d 10',
  31. '')),
  32. loc('run.py'): ('project',
  33. (u'config::home streams_bernu.cfg',
  34. ''))}
  35. [user attributes]
  36. debug.breakpoints = {loc('ContentSources.py'): {39L: (0,
  37. None,
  38. 1,
  39. 0)},
  40. loc('iub.py'): {102: (0,
  41. None,
  42. 1,
  43. 0),
  44. 146: (0,
  45. None,
  46. 1,
  47. 0)},
  48. loc('iub_db.py'): {209: (0,
  49. None,
  50. 1,
  51. 0),
  52. 376: (0,
  53. None,
  54. 1,
  55. 0)},
  56. loc('sources/cinemalive.py'): {209L: (0,
  57. None,
  58. 1,
  59. 0)},
  60. loc('sources/ltc.py'): {101L: (0,
  61. None,
  62. 1,
  63. 0)},
  64. loc('sources/replay.py'): {115L: (0,
  65. None,
  66. 1,
  67. 0),
  68. 142L: (0,
  69. None,
  70. 1,
  71. 0)},
  72. loc('sources/tvdom.py'): {292L: (0,
  73. None,
  74. 1,
  75. 0)},
  76. loc('test_sources.py'): {7L: (0,
  77. None,
  78. 1,
  79. 0)},
  80. loc('untitled-1.py'): {10: (0,
  81. None,
  82. 1,
  83. 0)},
  84. loc('../untitled-1.py'): {1: (0,
  85. None,
  86. 1,
  87. 0),
  88. 2: (0,
  89. None,
  90. 1,
  91. 0),
  92. 3: (0,
  93. None,
  94. 1,
  95. 0)},
  96. loc('unknown:<untitled> #1'): {2: (0,
  97. None,
  98. 1,
  99. 0)},
  100. loc('unknown:<untitled> #2'): {10: (0,
  101. None,
  102. 1,
  103. 0)}}
  104. debug.err-values = {None: {},
  105. loc('ContentSources.py'): {},
  106. loc('iub_db.py'): {},
  107. loc('iub_email.py'): {},
  108. loc('iubx.py'): {},
  109. loc('run.py'): {},
  110. loc('sources/filmix.py'): {},
  111. loc('sources/ltc.py'): {},
  112. loc('test_sources2.py'): {}}
  113. debug.recent-run-args = {loc('ContentSources.py'): [u'config::home streams_bernu.cfg',
  114. u'ltc::home',
  115. u'config::home'],
  116. loc('iub_db.py'): [u'-d 90 -s -o',
  117. u'-d 40 -rg -o',
  118. u'-d 40 -s -o',
  119. u'-d 40 -r -o',
  120. u'-d 40 -g -o',
  121. u'-d 60 -s -o',
  122. u'-d 10 -r -o',
  123. u'-d 3 --slud -o',
  124. u'-d 10 --rez -o',
  125. u'-d 10 --rez',
  126. u'-d 10 --groz',
  127. u'-d 20 --groz',
  128. u'-d 20 --slud',
  129. u'-d 10 --slud',
  130. u'-d 3 --slud',
  131. u'-d 3'],
  132. loc('iub_db2.py'): [u'-p 1 2 --debug ',
  133. u'-d 1 --debug ',
  134. u'-p 51 53 --debug -o',
  135. u'-p 50 53 --debug -o',
  136. u'-d 3 --debug -o',
  137. u'-d 1 --debug -o',
  138. u'-d 1 --debug -o',
  139. u'-d 1 --debug',
  140. u'-d 1',
  141. u'-h'],
  142. loc('iub_email.py'): [u'-i --debug',
  143. u'-i ',
  144. u'-i',
  145. u'-p'],
  146. loc('iubx.py'): [u'-s -d30',
  147. u'-s -d10',
  148. u'-s -d3',
  149. u'-s -d40',
  150. '-s -d 10\n'],
  151. loc('iubx2.py'): [u'-sgr -d 10',
  152. u'-sgr',
  153. u'--sgr',
  154. u'--slud'],
  155. loc('run.py'): [u'config::home streams_bernu.cfg',
  156. u'config::home ',
  157. u'config::home streams_bernu.cfg',
  158. u'config::home']}
  159. debug.run-args = {}
  160. debug.var-col-widths = [0.41872791519434627,
  161. 0.5812720848056537]
  162. edit.bookmarks = {'list_action': (loc('run.py'),
  163. {'attrib-starts': [('Main',
  164. 17),
  165. ('Main.list_action',
  166. 95)],
  167. 'first-line': 98L,
  168. 'sel-line': 118L})}
  169. guimgr.overall-gui-state = {'windowing-policy': 'combined-window',
  170. 'windows': [{'name': 'F8FpRDICw7YHXG3HV2rBc63asU'\
  171. 'LBT7JH',
  172. 'size-state': 'maximized',
  173. 'type': 'dock',
  174. 'view': {'area': 'tall',
  175. 'constraint': None,
  176. 'current_pages': [0,
  177. 0],
  178. 'full-screen': False,
  179. 'notebook_display': 'normal',
  180. 'notebook_percent': 0.17992831541218635,
  181. 'override_title': None,
  182. 'pagelist': [('project',
  183. 'tall',
  184. 0,
  185. {'tree-state': {'file-sort-method': 'by name',
  186. 'list-files-first': 0,
  187. 'tree-states': {'deep': {'expanded-nodes': [],
  188. 'selected-nodes': [(15,)],
  189. 'top-node': (0,)}},
  190. 'tree-style': 'deep'}}),
  191. ('snippets',
  192. 'tall',
  193. 0,
  194. {'tree-states': {u'c': [],
  195. u'html': [],
  196. u'py': [['class',
  197. 'all',
  198. '']]}}),
  199. ('browser',
  200. 'tall',
  201. 0,
  202. {'all_tree_states': {loc('../../../$Setup/Python/Libs/pyglet-1.0-docs/examples/programming_guide/hello_world.py'): {'c'\
  203. 'olumn-widths': [1.0],
  204. 'expanded-nodes': [],
  205. 'selected-nodes': [],
  206. 'top-node': [('generic attribute',
  207. loc('../../../$Setup/Python/Libs/pyglet-1.0-docs/examples/programming_guide/hello_world.py'),
  208. 'ft')]},
  209. 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'\
  210. 'olumn-widths': [1.0],
  211. 'expanded-nodes': [],
  212. 'selected-nodes': [],
  213. 'top-node': [('generic attribute',
  214. 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'),
  215. 'ANYTHING')]},
  216. loc('../../../Python25/Lib/BeautifulSoup.py'): {'column-widths': [1.0],
  217. 'expanded-nodes': [],
  218. 'selected-nodes': [],
  219. 'top-node': [('class def',
  220. loc('../../../Python25/Lib/BeautifulSoup.py'),
  221. 'BeautifulSOAP')]},
  222. loc('../../../Python25/Lib/ConfigParser.py'): {'column-widths': [1.0],
  223. 'expanded-nodes': [],
  224. 'selected-nodes': [],
  225. 'top-node': [('class def',
  226. loc('../../../Python25/Lib/ConfigParser.py'),
  227. 'ConfigParser')]},
  228. loc('../../../Python25/Lib/StringIO.py'): {'column-widths': [1.0],
  229. 'expanded-nodes': [],
  230. 'selected-nodes': [],
  231. 'top-node': [('class def',
  232. loc('../../../Python25/Lib/StringIO.py'),
  233. 'StringIO')]},
  234. loc('../../../Python25/Lib/dircache.py'): {'column-widths': [1.0],
  235. 'expanded-nodes': [],
  236. 'selected-nodes': [],
  237. 'top-node': [('function def',
  238. loc('../../../Python25/Lib/dircache.py'),
  239. 'annotate')]},
  240. loc('../../../Python25/Lib/encodings/cp1257.py'): {'column-widths': [1.0],
  241. 'expanded-nodes': [],
  242. 'selected-nodes': [],
  243. 'top-node': [('class def',
  244. loc('../../../Python25/Lib/encodings/cp1257.py'),
  245. 'Codec')]},
  246. loc('../../../Python25/Lib/encodings/utf_8.py'): {'column-widths': [1.0],
  247. 'expanded-nodes': [],
  248. 'selected-nodes': [],
  249. 'top-node': [('function def',
  250. loc('../../../Python25/Lib/encodings/utf_8.py'),
  251. 'decode')]},
  252. loc('../../../Python25/Lib/ntpath.py'): {'column-widths': [1.0],
  253. 'expanded-nodes': [],
  254. 'selected-nodes': [],
  255. 'top-node': [('function def',
  256. loc('../../../Python25/Lib/ntpath.py'),
  257. 'abspath')]},
  258. loc('../../../Python25/Lib/re.py'): {'column-widths': [1.0],
  259. 'expanded-nodes': [],
  260. 'selected-nodes': [],
  261. 'top-node': [('generic attribute',
  262. loc('../../../Python25/Lib/re.py'),
  263. 'c')]},
  264. loc('../../../Python25/Lib/sgmllib.py'): {'column-widths': [1.0],
  265. 'expanded-nodes': [],
  266. 'selected-nodes': [],
  267. 'top-node': [('generic attribute',
  268. loc('../../../Python25/Lib/sgmllib.py'),
  269. 'attrfind')]},
  270. loc('../../../Python25/Lib/site-packages/PIL/BmpImagePlugin.py'): {'c'\
  271. 'olumn-widths': [1.0],
  272. 'expanded-nodes': [],
  273. 'selected-nodes': [],
  274. 'top-node': [('generic attribute',
  275. loc('../../../Python25/Lib/site-packages/PIL/BmpImagePlugin.py'),
  276. 'BIT2MODE')]},
  277. loc('../../../Python25/Lib/site-packages/PIL/GifImagePlugin.py'): {'c'\
  278. 'olumn-widths': [1.0],
  279. 'expanded-nodes': [],
  280. 'selected-nodes': [],
  281. 'top-node': [('function def',
  282. loc('../../../Python25/Lib/site-packages/PIL/GifImagePlugin.py'),
  283. 'getdata')]},
  284. loc('../../../Python25/Lib/site-packages/PIL/Image.py'): {'column-wi'\
  285. 'dths': [1.0],
  286. 'expanded-nodes': [],
  287. 'selected-nodes': [[('generic attribute',
  288. loc('../../../Python25/Lib/site-packages/PIL/Image.py'),
  289. '_initialized')]],
  290. 'top-node': [('generic attribute',
  291. loc('../../../Python25/Lib/site-packages/PIL/Image.py'),
  292. 'ADAPTIVE')]},
  293. loc('../../../Python25/Lib/site-packages/PIL/ImageFile.py'): {'colum'\
  294. 'n-widths': [1.0],
  295. 'expanded-nodes': [],
  296. 'selected-nodes': [],
  297. 'top-node': [('generic attribute',
  298. loc('../../../Python25/Lib/site-packages/PIL/ImageFile.py'),
  299. 'ERRORS')]},
  300. loc('../../../Python25/Lib/site-packages/PIL/ImagePalette.py'): {'co'\
  301. 'lumn-widths': [1.0],
  302. 'expanded-nodes': [],
  303. 'selected-nodes': [],
  304. 'top-node': [('class def',
  305. loc('../../../Python25/Lib/site-packages/PIL/ImagePalette.py'),
  306. 'ImagePalette')]},
  307. loc('../../../Python25/Lib/site-packages/argparse.py'): {'column-wid'\
  308. 'ths': [1.0],
  309. 'expanded-nodes': [],
  310. 'selected-nodes': [],
  311. 'top-node': [('class def',
  312. loc('../../../Python25/Lib/site-packages/argparse.py'),
  313. 'Action')]},
  314. loc('../../../Python25/Lib/site-packages/pdo.py'): {'column-widths': [1.0],
  315. 'expanded-nodes': [],
  316. 'selected-nodes': [],
  317. 'top-node': [('class def',
  318. loc('../../../Python25/Lib/site-packages/pdo.py'),
  319. 'connect')]},
  320. loc('../../../Python25/Lib/struct.py'): {'column-widths': [1.0],
  321. 'expanded-nodes': [],
  322. 'selected-nodes': [],
  323. 'top-node': [('function def',
  324. loc('../../../Python25/Lib/struct.py'),
  325. 'calcsize')]},
  326. loc('../../../Python27/Lib/site-packages/psycopg2/extras.py'): {'exp'\
  327. 'anded-nodes': [],
  328. 'selected-nodes': [],
  329. 'top-node': [('class def',
  330. loc('../../../Python27/Lib/site-packages/psycopg2/extras.py'),
  331. 'CompositeCaster')]},
  332. loc('../../../Python27/Lib/site-packages/win32com/client/dynamic.py'): {'e'\
  333. 'xpanded-nodes': [],
  334. 'selected-nodes': [],
  335. 'top-node': [('generic attribute',
  336. loc('../../../Python27/Lib/site-packages/win32com/client/dynamic.py'),
  337. 'ALL_INVOKE_TYPES')]},
  338. loc('../$test/test2.py'): {'column-widths': [1.0],
  339. 'expanded-nodes': [],
  340. 'selected-nodes': [],
  341. 'top-node': [('generic attribute',
  342. loc('../$test/test2.py'),
  343. 'con')]},
  344. loc('../$test/test3.py'): {'column-widths': [1.0],
  345. 'expanded-nodes': [],
  346. 'selected-nodes': [],
  347. 'top-node': [('generic attribute',
  348. loc('../$test/test3.py'),
  349. 'area')]},
  350. loc('../$test/test4.py'): {'column-widths': [1.0],
  351. 'expanded-nodes': [],
  352. 'selected-nodes': [],
  353. 'top-node': [('generic attribute',
  354. loc('../$test/test4.py'),
  355. 'con')]},
  356. loc('../5streets/5streets.py'): {'column-widths': [1.0],
  357. 'expanded-nodes': [],
  358. 'selected-nodes': [],
  359. 'top-node': [('generic attribute',
  360. loc('../5streets/5streets.py'),
  361. 'dlat')]},
  362. loc('../JS2/JSData.py'): {'column-widths': [1.0],
  363. 'expanded-nodes': [],
  364. 'selected-nodes': [],
  365. 'top-node': [('generic attribute',
  366. loc('../JS2/JSData.py'),
  367. 'db')]},
  368. loc('../JS2/const.py'): {'column-widths': [1.0],
  369. 'expanded-nodes': [],
  370. 'selected-nodes': [],
  371. 'top-node': [('generic attribute',
  372. loc('../JS2/const.py'),
  373. 'config')]},
  374. loc('../JS2/js2gif2.py'): {'column-widths': [1.0],
  375. 'expanded-nodes': [],
  376. 'selected-nodes': [],
  377. 'top-node': [('generic attribute',
  378. loc('../JS2/js2gif2.py'),
  379. 'argc')]},
  380. loc('../JS2/js3.py'): {'column-widths': [1.0],
  381. 'expanded-nodes': [],
  382. 'selected-nodes': [],
  383. 'top-node': [('function def',
  384. loc('../JS2/js3.py'),
  385. 'deg')]},
  386. loc('../JS2/js3s.py'): {'column-widths': [1.0],
  387. 'expanded-nodes': [],
  388. 'selected-nodes': [],
  389. 'top-node': [('function def',
  390. loc('../JS2/js3s.py'),
  391. 'deg')]},
  392. loc('../JS2/js_2gif.py'): {'column-widths': [1.0],
  393. 'expanded-nodes': [],
  394. 'selected-nodes': [],
  395. 'top-node': [('generic attribute',
  396. loc('../JS2/js_2gif.py'),
  397. 'argc')]},
  398. loc('../JS2/js_db.py'): {'column-widths': [1.0],
  399. 'expanded-nodes': [],
  400. 'selected-nodes': [],
  401. 'top-node': [('generic attribute',
  402. loc('../JS2/js_db.py'),
  403. 'bks93')]},
  404. loc('../JS2/js_map.py'): {'column-widths': [1.0],
  405. 'expanded-nodes': [],
  406. 'selected-nodes': [[('function def',
  407. loc('../JS2/js_map.py'),
  408. 'deg')]],
  409. 'top-node': [('function def',
  410. loc('../JS2/js_map.py'),
  411. 'deg')]},
  412. loc('../JS2/js_map2.py'): {'column-widths': [1.0],
  413. 'expanded-nodes': [],
  414. 'selected-nodes': [],
  415. 'top-node': [('function def',
  416. loc('../JS2/js_map2.py'),
  417. 'deg')]},
  418. loc('../JS2/js_map3.py'): {'column-widths': [1.0],
  419. 'expanded-nodes': [],
  420. 'selected-nodes': [],
  421. 'top-node': [('function def',
  422. loc('../JS2/js_map3.py'),
  423. 'deg')]},
  424. loc('../JS2/js_map4.py'): {'column-widths': [1.0],
  425. 'expanded-nodes': [],
  426. 'selected-nodes': [],
  427. 'top-node': [('function def',
  428. loc('../JS2/js_map4.py'),
  429. 'create_map')]},
  430. loc('../JS2/js_shp.py'): {'column-widths': [1.0],
  431. 'expanded-nodes': [],
  432. 'selected-nodes': [],
  433. 'top-node': [('generic attribute',
  434. loc('../JS2/js_shp.py'),
  435. 'cx')]},
  436. loc('../JS2/js_unpack.py'): {'column-widths': [1.0],
  437. 'expanded-nodes': [],
  438. 'selected-nodes': [],
  439. 'top-node': [('generic attribute',
  440. loc('../JS2/js_unpack.py'),
  441. 'argc')]},
  442. loc('../JS2/jsdb2.py'): {'column-widths': [1.0],
  443. 'expanded-nodes': [],
  444. 'selected-nodes': [],
  445. 'top-node': [('generic attribute',
  446. loc('../JS2/jsdb2.py'),
  447. 'bks93')]},
  448. loc('../JS2/jsunpack2.py'): {'column-widths': [1.0],
  449. 'expanded-nodes': [],
  450. 'selected-nodes': [],
  451. 'top-node': [('generic attribute',
  452. loc('../JS2/jsunpack2.py'),
  453. 'argc')]},
  454. loc('../JS2/ozimap.py'): {'column-widths': [1.0],
  455. 'expanded-nodes': [],
  456. 'selected-nodes': [],
  457. 'top-node': [('generic attribute',
  458. loc('../JS2/ozimap.py'),
  459. 'epilog')]},
  460. loc('../JS2/test PIL.py'): {'column-widths': [1.0],
  461. 'expanded-nodes': [],
  462. 'selected-nodes': [],
  463. 'top-node': [('function def',
  464. loc('../JS2/test PIL.py'),
  465. 'get_pp')]},
  466. loc('BeautifulSoup.py'): {'expanded-nodes': [],
  467. 'selected-nodes': [],
  468. 'top-node': [('class def',
  469. loc('BeautifulSoup.py'),
  470. 'BeautifulSOAP')]},
  471. loc('ContentSources.py'): {'expanded-nodes': [],
  472. 'selected-nodes': [],
  473. 'top-node': [('class def',
  474. loc('ContentSources.py'),
  475. 'ContentSources')]},
  476. loc('config.py'): {'expanded-nodes': [],
  477. 'selected-nodes': [],
  478. 'top-node': [('generic attribute',
  479. loc('config.py'),
  480. 'config')]},
  481. loc('database.py'): {'expanded-nodes': [],
  482. 'selected-nodes': [],
  483. 'top-node': [('class def',
  484. loc('database.py'),
  485. 'Database')]},
  486. loc('excel3.py'): {'expanded-nodes': [],
  487. 'selected-nodes': [],
  488. 'top-node': [('class def',
  489. loc('excel3.py'),
  490. 'Excel')]},
  491. loc('iub_db.py'): {'expanded-nodes': [],
  492. 'selected-nodes': [],
  493. 'top-node': [('function def',
  494. loc('iub_db.py'),
  495. 'add_rec')]},
  496. loc('iub_db2.py'): {'expanded-nodes': [],
  497. 'selected-nodes': [[('generic attribute',
  498. loc('iub_db2.py'),
  499. 'version')]],
  500. 'top-node': [('generic attribute',
  501. loc('iub_db2.py'),
  502. 'config')]},
  503. loc('iubx.ini'): {'expanded-nodes': [],
  504. 'selected-nodes': [],
  505. 'top-node': None},
  506. loc('iubx.py'): {'column-widths': None,
  507. 'expanded-nodes': [],
  508. 'selected-nodes': [],
  509. 'top-node': [('function def',
  510. loc('iubx.py'),
  511. 'check_cpv')]},
  512. loc('iubx0.py'): {'column-widths': [1.0],
  513. 'expanded-nodes': [],
  514. 'selected-nodes': [[('generic attribute',
  515. loc('iubx0.py'),
  516. 'config')]],
  517. 'top-node': [('generic attribute',
  518. loc('iubx0.py'),
  519. 'config')]},
  520. loc('latvian.xml'): {'expanded-nodes': [],
  521. 'selected-nodes': [],
  522. 'top-node': None},
  523. loc('record.py'): {'expanded-nodes': [],
  524. 'selected-nodes': [],
  525. 'top-node': [('generic attribute',
  526. loc('record.py'),
  527. 'r1')]},
  528. loc('run.py'): {'expanded-nodes': [],
  529. 'selected-nodes': [[('class def',
  530. loc('run.py'),
  531. 'ChoiceBox')]],
  532. 'top-node': [('class def',
  533. loc('run.py'),
  534. 'ChoiceBox')]},
  535. loc('sources/SourceBase.py'): {'expanded-nodes': [],
  536. 'selected-nodes': [],
  537. 'top-node': [('generic attribute',
  538. loc('sources/SourceBase.py'),
  539. 'headers2dict')]},
  540. loc('sources/euronews.py'): {'expanded-nodes': [],
  541. 'selected-nodes': [],
  542. 'top-node': [('generic attribute',
  543. loc('sources/euronews.py'),
  544. 'c')]},
  545. loc('sources/filmas.py'): {'expanded-nodes': [],
  546. 'selected-nodes': [],
  547. 'top-node': [('generic attribute',
  548. loc('sources/filmas.py'),
  549. 'c')]},
  550. loc('sources/filmix.py'): {'expanded-nodes': [],
  551. 'selected-nodes': [],
  552. 'top-node': [('generic attribute',
  553. loc('sources/filmix.py'),
  554. 'data')]},
  555. loc('sources/iplayer.py'): {'expanded-nodes': [],
  556. 'selected-nodes': [],
  557. 'top-node': [('generic attribute',
  558. loc('sources/iplayer.py'),
  559. 'API_URL')]},
  560. loc('sources/iub.py'): {'expanded-nodes': [],
  561. 'selected-nodes': [[('class def',
  562. loc('sources/iub.py'),
  563. 'Source')]],
  564. 'top-node': [('generic attribute',
  565. loc('sources/iub.py'),
  566. 'h')]},
  567. loc('sources/lmt.py'): {'expanded-nodes': [],
  568. 'selected-nodes': [],
  569. 'top-node': [('generic attribute',
  570. loc('sources/lmt.py'),
  571. 'data')]},
  572. loc('sources/ltc.py'): {'expanded-nodes': [],
  573. 'selected-nodes': [[('generic attribute',
  574. loc('sources/ltc.py'),
  575. 'vid2')]],
  576. 'top-node': [('generic attribute',
  577. loc('sources/ltc.py'),
  578. 'API_URL')]},
  579. loc('sources/replay.py'): {'expanded-nodes': [],
  580. 'selected-nodes': [[('class def',
  581. loc('sources/replay.py'),
  582. 'Source')]],
  583. 'top-node': [('generic attribute',
  584. loc('sources/replay.py'),
  585. 'API_URL')]},
  586. loc('sources/tvdom.py'): {'expanded-nodes': [],
  587. 'selected-nodes': [],
  588. 'top-node': [('generic attribute',
  589. loc('sources/tvdom.py'),
  590. 'data')]},
  591. loc('test1.py'): {'expanded-nodes': [],
  592. 'selected-nodes': [],
  593. 'top-node': [('generic attribute',
  594. loc('test1.py'),
  595. 'conn')]},
  596. loc('test_sources.py'): {'expanded-nodes': [],
  597. 'selected-nodes': [],
  598. 'top-node': [('class def',
  599. loc('test_sources.py'),
  600. 'App')]},
  601. loc('test_sources2.py'): {'expanded-nodes': [],
  602. 'selected-nodes': [],
  603. 'top-node': [('generic attribute',
  604. loc('test_sources2.py'),
  605. 'data')]},
  606. loc('util.py'): {'expanded-nodes': [],
  607. 'selected-nodes': [[('function def',
  608. loc('util.py'),
  609. '_substitute_entity')]],
  610. 'top-node': [('generic attribute',
  611. loc('util.py'),
  612. 'CACHE_COOKIES')]},
  613. loc('utils.py'): {'expanded-nodes': [],
  614. 'selected-nodes': [],
  615. 'top-node': [('function def',
  616. loc('utils.py'),
  617. 'check_cpv')]},
  618. loc('../fakemap/fakemap.py'): {'column-widths': [1.0],
  619. 'expanded-nodes': [],
  620. 'selected-nodes': [],
  621. 'top-node': [('generic attribute',
  622. loc('../fakemap/fakemap.py'),
  623. 'dir')]},
  624. loc('../getpics/ggg2.py'): {'column-widths': [1.0],
  625. 'expanded-nodes': [],
  626. 'selected-nodes': [],
  627. 'top-node': [('generic attribute',
  628. loc('../getpics/ggg2.py'),
  629. 'con')]},
  630. loc('../ozi/ozi.py'): {'column-widths': [1.0],
  631. 'expanded-nodes': [],
  632. 'selected-nodes': [],
  633. 'top-node': [('generic attribute',
  634. loc('../ozi/ozi.py'),
  635. 'epilog')]},
  636. loc('../ozi/ozimap.py'): {'column-widths': [1.0],
  637. 'expanded-nodes': [],
  638. 'selected-nodes': [],
  639. 'top-node': [('generic attribute',
  640. loc('../ozi/ozimap.py'),
  641. 'epilog')]},
  642. loc('../theyr/ikite/ikite.py'): {'column-widths': [1.0],
  643. 'expanded-nodes': [],
  644. 'selected-nodes': [],
  645. 'top-node': [('generic attribute',
  646. loc('../theyr/ikite/ikite.py'),
  647. 'day')]},
  648. loc('../vietas/vietas.py'): {'column-widths': [1.0],
  649. 'expanded-nodes': [],
  650. 'selected-nodes': [],
  651. 'top-node': [('generic attribute',
  652. loc('../vietas/vietas.py'),
  653. 'count')]},
  654. loc('../vietas/vietas0.py'): {'column-widths': [1.0],
  655. 'expanded-nodes': [],
  656. 'selected-nodes': [],
  657. 'top-node': [('generic attribute',
  658. loc('../vietas/vietas0.py'),
  659. 'c')]},
  660. loc('../vietas/vietas2.py'): {'column-widths': [1.0],
  661. 'expanded-nodes': [],
  662. 'selected-nodes': [],
  663. 'top-node': [('generic attribute',
  664. loc('../vietas/vietas2.py'),
  665. 'd_lat')]},
  666. loc('../../SplashData/remdup.py'): {'column-widths': [1.0],
  667. 'expanded-nodes': [],
  668. 'selected-nodes': [],
  669. 'top-node': [('generic attribute',
  670. loc('../../SplashData/remdup.py'),
  671. 'f')]},
  672. loc('../../../../../Python27/Lib/lib-tk/Tkinter.py'): {'expanded-nod'\
  673. 'es': [],
  674. 'selected-nodes': [],
  675. 'top-node': [('function def',
  676. loc('../../../../../Python27/Lib/lib-tk/Tkinter.py'),
  677. 'At')]},
  678. loc('../../../../../Python27/Lib/lib-tk/tkCommonDialog.py'): {'expan'\
  679. 'ded-nodes': [],
  680. 'selected-nodes': [],
  681. 'top-node': [('class def',
  682. loc('../../../../../Python27/Lib/lib-tk/tkCommonDialog.py'),
  683. 'Dialog')]},
  684. loc('../../../../../Python27/Lib/lib-tk/tkMessageBox.py'): {'expande'\
  685. 'd-nodes': [],
  686. 'selected-nodes': [],
  687. 'top-node': [('generic attribute',
  688. loc('../../../../../Python27/Lib/lib-tk/tkMessageBox.py'),
  689. 'ABORT')]},
  690. loc('../../../../../Python27/Lib/lib-tk/tkSimpleDialog.py'): {'expan'\
  691. 'ded-nodes': [],
  692. 'selected-nodes': [],
  693. 'top-node': [('function def',
  694. loc('../../../../../Python27/Lib/lib-tk/tkSimpleDialog.py'),
  695. 'askfloat')]},
  696. loc('../../../../../Python27/Lib/lib-tk/ttk.py'): {'expanded-nodes': [],
  697. 'selected-nodes': [],
  698. 'top-node': [('class def',
  699. loc('../../../../../Python27/Lib/lib-tk/ttk.py'),
  700. 'Button')]},
  701. loc('../../../../../Python27/Lib/site-packages/PIL/Image.py'): {'exp'\
  702. 'anded-nodes': [],
  703. 'selected-nodes': [],
  704. 'top-node': [('generic attribute',
  705. loc('../../../../../Python27/Lib/site-packages/PIL/Image.py'),
  706. 'ADAPTIVE')]},
  707. loc('unknown:<untitled> #6'): {'expanded-nodes': [],
  708. 'selected-nodes': [],
  709. 'top-node': None},
  710. loc('unknown:<untitled> #5'): {'column-widths': [1.0],
  711. 'expanded-nodes': [],
  712. 'selected-nodes': [],
  713. 'top-node': None},
  714. loc('unknown:<untitled> #4'): {'column-widths': [1.0],
  715. 'expanded-nodes': [],
  716. 'selected-nodes': [],
  717. 'top-node': None},
  718. loc('unknown:<untitled> #3'): {'expanded-nodes': [],
  719. 'selected-nodes': [],
  720. 'top-node': None}},
  721. 'browse_mode': u'Current Module',
  722. 'follow-selection': False,
  723. 'sort_mode': 'Alphabetically',
  724. 'visibility_options': {u'Derived Classes': False,
  725. u'Imported': False,
  726. u'Modules': True}}),
  727. ('debug-stack',
  728. 'tall',
  729. 1,
  730. {'codeline-mode': 'below'}),
  731. ('source-assistant',
  732. 'tall',
  733. 1,
  734. {}),
  735. ('indent',
  736. 'tall',
  737. 2,
  738. {}),
  739. ('templating#02EFWRQK9X23',
  740. 'tall',
  741. 0,
  742. None)],
  743. 'primary_view_state': {'area': 'wide',
  744. 'constraint': None,
  745. 'current_pages': [2,
  746. 0],
  747. 'notebook_display': 'normal',
  748. 'notebook_percent': 0.42672064777327934,
  749. 'override_title': None,
  750. 'pagelist': [('debug-breakpoints',
  751. 'wide',
  752. 0,
  753. {'tree-state': []}),
  754. ('bookmarks',
  755. 'wide',
  756. 0,
  757. {}),
  758. ('debug-io',
  759. 'wide',
  760. 0,
  761. {}),
  762. ('debug-exceptions',
  763. 'wide',
  764. 0,
  765. {}),
  766. ('interactive-search',
  767. 'wide',
  768. 0,
  769. {'fScope': {'fFileSetName': 'All Source Files',
  770. 'fLocation': None,
  771. 'fRecursive': True,
  772. 'fType': 'project-files'},
  773. 'fSearchSpec': {'fEndPos': None,
  774. 'fIncludeLinenos': True,
  775. 'fInterpretBackslashes': False,
  776. 'fMatchCase': False,
  777. 'fOmitBinary': True,
  778. 'fRegexFlags': 46,
  779. 'fReplaceText': '',
  780. 'fReverse': False,
  781. 'fSearchText': u'ConfigSou',
  782. 'fStartPos': 0,
  783. 'fStyle': 'text',
  784. 'fWholeWords': False,
  785. 'fWrap': True},
  786. 'fUIOptions': {'fAutoBackground': True,
  787. 'fFilePrefix': 'short-file',
  788. 'fFindAfterReplace': True,
  789. 'fInSelection': False,
  790. 'fIncremental': True,
  791. 'fReplaceOnDisk': False,
  792. 'fShowFirstMatch': False,
  793. 'fShowLineno': True,
  794. 'fShowReplaceWidgets': False}}),
  795. ('batch-search',
  796. 'wide',
  797. 0,
  798. {'fScope': {'fFileSetName': 'All Source Files',
  799. 'fLocation': None,
  800. 'fRecursive': True,
  801. 'fType': 'documentation'},
  802. 'fSearchSpec': {'fEndPos': None,
  803. 'fIncludeLinenos': True,
  804. 'fInterpretBackslashes': False,
  805. 'fMatchCase': False,
  806. 'fOmitBinary': True,
  807. 'fRegexFlags': 46,
  808. 'fReplaceText': '',
  809. 'fReverse': False,
  810. 'fSearchText': u'command',
  811. 'fStartPos': 0,
  812. 'fStyle': 'text',
  813. 'fWholeWords': False,
  814. 'fWrap': True},
  815. 'fUIOptions': {'fAutoBackground': True,
  816. 'fFilePrefix': 'short-file',
  817. 'fFindAfterReplace': True,
  818. 'fInSelection': False,
  819. 'fIncremental': True,
  820. 'fReplaceOnDisk': False,
  821. 'fShowFirstMatch': False,
  822. 'fShowLineno': True,
  823. 'fShowReplaceWidgets': False},
  824. 'replace-entry-expanded': False,
  825. 'search-entry-expanded': False}),
  826. ('debug-data',
  827. 'wide',
  828. 0,
  829. {}),
  830. ('testing',
  831. 'wide',
  832. 0,
  833. {'added-files': [],
  834. 'filter': u'',
  835. 'recent-filters': None,
  836. 'sort-order': 'alpha',
  837. 'tree-state': {'expanded-nodes': [],
  838. 'selected-nodes': [],
  839. 'top-node': (0,)}}),
  840. ('versioncontrol.git',
  841. 'wide',
  842. 0,
  843. {}),
  844. ('debug-modules',
  845. 'wide',
  846. 0,
  847. {}),
  848. ('debug-probe',
  849. 'wide',
  850. 2,
  851. {'active-range': (None,
  852. -1,
  853. -1),
  854. 'attrib-starts': [],
  855. 'first-line': 17L,
  856. 'folded-linenos': [],
  857. 'history': {u'file:C:/Data/Programming/enigma2/PlayStream2/content/run.py': ['m'\
  858. 'od\n',
  859. 'dir(mod)\n',
  860. 'mod.__name__\n']},
  861. 'launch-id': None,
  862. 'sel-line': 24L,
  863. 'sel-line-start': 315L,
  864. 'selection_end': 327L,
  865. 'selection_start': 315L,
  866. 'zoom': 0L}),
  867. ('debug-watch',
  868. 'wide',
  869. 1,
  870. {'node-states': [('eval',
  871. 'rec'),
  872. ('eval',
  873. u'cur'),
  874. ('eval',
  875. u'el')],
  876. 'tree-state': {'expanded-nodes': [(0,),
  877. (1,)],
  878. 'selected-nodes': [(2,)],
  879. 'top-node': (0,)}}),
  880. ('messages',
  881. 'wide',
  882. 2,
  883. {'current-domain': 0}),
  884. ('os-command',
  885. 'wide',
  886. 1,
  887. {'last-percent': 0.8,
  888. 'toolbox-percent': 1.0,
  889. 'toolbox-tree-sel': ''}),
  890. ('uses',
  891. 'wide',
  892. 1,
  893. {}),
  894. ('python-shell',
  895. 'wide',
  896. 2,
  897. {'active-range': (None,
  898. -1,
  899. -1),
  900. 'attrib-starts': [],
  901. 'first-line': 0L,
  902. 'folded-linenos': [],
  903. 'history': {},
  904. 'launch-id': None,
  905. 'sel-line': 2L,
  906. 'sel-line-start': 174L,
  907. 'selection_end': 174L,
  908. 'selection_start': 174L,
  909. 'zoom': 0L})],
  910. 'primary_view_state': {'editor_states': ({'bookmarks': ([[loc('ContentSources.py'),
  911. {'attrib-starts': [('ContentSources',
  912. 16),
  913. ('ContentSources.__init__',
  914. 20)],
  915. 'first-line': 29L,
  916. 'folded-linenos': [],
  917. 'sel-line': 38L,
  918. 'sel-line-start': 1556L,
  919. 'selection_end': 1556L,
  920. 'selection_start': 1556L,
  921. 'zoom': 0L},
  922. 1507139070.901],
  923. [loc('run.py'),
  924. {'attrib-starts': [],
  925. 'first-line': 539L,
  926. 'folded-linenos': [],
  927. 'sel-line': 547L,
  928. 'sel-line-start': 21031L,
  929. 'selection_end': 21031L,
  930. 'selection_start': 21031L,
  931. 'zoom': 0L},
  932. 1507139107.638],
  933. [loc('ContentSources.py'),
  934. {'attrib-starts': [('ContentSources',
  935. 16),
  936. ('ContentSources.__init__',
  937. 20)],
  938. 'first-line': 29L,
  939. 'folded-linenos': [],
  940. 'sel-line': 38L,
  941. 'sel-line-start': 1556L,
  942. 'selection_end': 1556L,
  943. 'selection_start': 1556L,
  944. 'zoom': 0L},
  945. 1507139120.776],
  946. [loc('run.py'),
  947. {'attrib-starts': [],
  948. 'first-line': 537L,
  949. 'folded-linenos': [],
  950. 'sel-line': 548L,
  951. 'sel-line-start': 21051L,
  952. 'selection_end': 21072L,
  953. 'selection_start': 21072L,
  954. 'zoom': 0L},
  955. 1507139183.154],
  956. [loc('ContentSources.py'),
  957. {'attrib-starts': [('ContentSources',
  958. 16),
  959. ('ContentSources.__init__',
  960. 20)],
  961. 'first-line': 29L,
  962. 'folded-linenos': [],
  963. 'sel-line': 38L,
  964. 'sel-line-start': 1556L,
  965. 'selection_end': 1556L,
  966. 'selection_start': 1556L,
  967. 'zoom': 0L},
  968. 1507139191.654],
  969. [loc('sources/config.py'),
  970. {'attrib-starts': [('Source',
  971. 12),
  972. ('Source.__init__',
  973. 14)],
  974. 'first-line': 10L,
  975. 'folded-linenos': [],
  976. 'sel-line': 16L,
  977. 'sel-line-start': 546L,
  978. 'selection_end': 546L,
  979. 'selection_start': 546L,
  980. 'zoom': 0L},
  981. 1507139201.651],
  982. [loc('ContentSources.py'),
  983. {'attrib-starts': [('ContentSources',
  984. 16),
  985. ('ContentSources.__init__',
  986. 20)],
  987. 'first-line': 29L,
  988. 'folded-linenos': [],
  989. 'sel-line': 38L,
  990. 'sel-line-start': 1556L,
  991. 'selection_end': 1630L,
  992. 'selection_start': 1630L,
  993. 'zoom': 0L},
  994. 1507139390.596],
  995. [loc('run.py'),
  996. {'attrib-starts': [],
  997. 'first-line': 537L,
  998. 'folded-linenos': [],
  999. 'sel-line': 548L,
  1000. 'sel-line-start': 21051L,
  1001. 'selection_end': 21072L,
  1002. 'selection_start': 21072L,
  1003. 'zoom': 0L},
  1004. 1507139396.418],
  1005. [loc('ContentSources.py'),
  1006. {'attrib-starts': [('ContentSources',
  1007. 16),
  1008. ('ContentSources.__init__',
  1009. 20)],
  1010. 'first-line': 29L,
  1011. 'folded-linenos': [],
  1012. 'sel-line': 38L,
  1013. 'sel-line-start': 1556L,
  1014. 'selection_end': 1556L,
  1015. 'selection_start': 1556L,
  1016. 'zoom': 0L},
  1017. 1507139404.352],
  1018. [loc('sources/config.py'),
  1019. {'attrib-starts': [('Source',
  1020. 12),
  1021. ('Source.__init__',
  1022. 14)],
  1023. 'first-line': 10L,
  1024. 'folded-linenos': [],
  1025. 'sel-line': 20L,
  1026. 'sel-line-start': 756L,
  1027. 'selection_end': 756L,
  1028. 'selection_start': 756L,
  1029. 'zoom': 0L},
  1030. 1507139454.935],
  1031. [loc('run.py'),
  1032. {'attrib-starts': [],
  1033. 'first-line': 537L,
  1034. 'folded-linenos': [],
  1035. 'sel-line': 548L,
  1036. 'sel-line-start': 21051L,
  1037. 'selection_end': 21072L,
  1038. 'selection_start': 21072L,
  1039. 'zoom': 0L},
  1040. 1507139464.311],
  1041. [loc('ContentSources.py'),
  1042. {'attrib-starts': [('ContentSources',
  1043. 16),
  1044. ('ContentSources.__init__',
  1045. 20)],
  1046. 'first-line': 171L,
  1047. 'folded-linenos': [],
  1048. 'sel-line': 35L,
  1049. 'sel-line-start': 1435L,
  1050. 'selection_end': 1462L,
  1051. 'selection_start': 1462L,
  1052. 'zoom': 0L},
  1053. 1507139509.009],
  1054. [loc('run.py'),
  1055. {'attrib-starts': [],
  1056. 'first-line': 537L,
  1057. 'folded-linenos': [],
  1058. 'sel-line': 544L,
  1059. 'sel-line-start': 20857L,
  1060. 'selection_end': 21094L,
  1061. 'selection_start': 20857L,
  1062. 'zoom': 0L},
  1063. 1507139519.867],
  1064. [loc('ContentSources.py'),
  1065. {'attrib-starts': [],
  1066. 'first-line': 171L,
  1067. 'folded-linenos': [],
  1068. 'sel-line': 183L,
  1069. 'sel-line-start': 7031L,
  1070. 'selection_end': 7069L,
  1071. 'selection_start': 7069L,
  1072. 'zoom': 0L},
  1073. 1507139553.439],
  1074. [loc('run.py'),
  1075. {'attrib-starts': [],
  1076. 'first-line': 537L,
  1077. 'folded-linenos': [],
  1078. 'sel-line': 544L,
  1079. 'sel-line-start': 20857L,
  1080. 'selection_end': 20989L,
  1081. 'selection_start': 20857L,
  1082. 'zoom': 0L},
  1083. 1507139565.195],
  1084. [loc('ContentSources.py'),
  1085. {'attrib-starts': [('ContentSources',
  1086. 16),
  1087. ('ContentSources.__init__',
  1088. 20)],
  1089. 'first-line': 33L,
  1090. 'folded-linenos': [],
  1091. 'sel-line': 38L,
  1092. 'sel-line-start': 1556L,
  1093. 'selection_end': 1556L,
  1094. 'selection_start': 1556L,
  1095. 'zoom': 0L},
  1096. 1507140419.978],
  1097. [loc('run.py'),
  1098. {'attrib-starts': [],
  1099. 'first-line': 537L,
  1100. 'folded-linenos': [],
  1101. 'sel-line': 544L,
  1102. 'sel-line-start': 20857L,
  1103. 'selection_end': 20989L,
  1104. 'selection_start': 20857L,
  1105. 'zoom': 0L},
  1106. 1507140426.687],
  1107. [loc('ContentSources.py'),
  1108. {'attrib-starts': [('ContentSources',
  1109. 16),
  1110. ('ContentSources.__init__',
  1111. 20)],
  1112. 'first-line': 33L,
  1113. 'folded-linenos': [],
  1114. 'sel-line': 38L,
  1115. 'sel-line-start': 1556L,
  1116. 'selection_end': 1556L,
  1117. 'selection_start': 1556L,
  1118. 'zoom': 0L},
  1119. 1507140443.699],
  1120. [loc('run.py'),
  1121. {'attrib-starts': [],
  1122. 'first-line': 537L,
  1123. 'folded-linenos': [],
  1124. 'sel-line': 544L,
  1125. 'sel-line-start': 20857L,
  1126. 'selection_end': 20989L,
  1127. 'selection_start': 20857L,
  1128. 'zoom': 0L},
  1129. 1507140457.254],
  1130. [loc('ContentSources.py'),
  1131. {'attrib-starts': [('ContentSources',
  1132. 16),
  1133. ('ContentSources.__init__',
  1134. 20)],
  1135. 'first-line': 33L,
  1136. 'folded-linenos': [],
  1137. 'sel-line': 43L,
  1138. 'sel-line-start': 1789L,
  1139. 'selection_end': 1813L,
  1140. 'selection_start': 1813L,
  1141. 'zoom': 0L},
  1142. 1507141006.36]],
  1143. 20),
  1144. 'current-loc': loc('run.py'),
  1145. 'editor-state-list': [(loc('ContentSources.py'),
  1146. {'attrib-starts': [('ContentSources',
  1147. 16),
  1148. ('ContentSources.__init__',
  1149. 20)],
  1150. 'first-line': 33L,
  1151. 'folded-linenos': [],
  1152. 'sel-line': 43L,
  1153. 'sel-line-start': 1789L,
  1154. 'selection_end': 1813L,
  1155. 'selection_start': 1813L,
  1156. 'zoom': 0L}),
  1157. (loc('sources/euronews.py'),
  1158. {'attrib-starts': [('Source',
  1159. 26),
  1160. ('Source.__init__',
  1161. 28)],
  1162. 'first-line': 19L,
  1163. 'folded-linenos': [],
  1164. 'sel-line': 31L,
  1165. 'sel-line-start': 919L,
  1166. 'selection_end': 951L,
  1167. 'selection_start': 951L,
  1168. 'zoom': 0L}),
  1169. (loc('sources/ltc.py'),
  1170. {'attrib-starts': [('Source',
  1171. 27),
  1172. ('Source.get_info2',
  1173. 758)],
  1174. 'first-line': 753L,
  1175. 'folded-linenos': [],
  1176. 'sel-line': 758L,
  1177. 'sel-line-start': 37252L,
  1178. 'selection_end': 37268L,
  1179. 'selection_start': 37260L,
  1180. 'zoom': 0L}),
  1181. (loc('test_sources2.py'),
  1182. {'attrib-starts': [('Main',
  1183. 12),
  1184. ('Main.initUI',
  1185. 30)],
  1186. 'first-line': 39L,
  1187. 'folded-linenos': [],
  1188. 'sel-line': 41L,
  1189. 'sel-line-start': 1171L,
  1190. 'selection_end': 1857L,
  1191. 'selection_start': 1171L,
  1192. 'zoom': 0L}),
  1193. (loc('../../../../../Python27/Lib/lib-tk/tkSimpleDialog.py'),
  1194. {'attrib-starts': [('Dialog',
  1195. 29),
  1196. ('Dialog.__init__',
  1197. 36)],
  1198. 'first-line': 48L,
  1199. 'folded-linenos': [],
  1200. 'sel-line': 50L,
  1201. 'sel-line-start': 1002L,
  1202. 'selection_end': 1011L,
  1203. 'selection_start': 1011L,
  1204. 'zoom': 0L}),
  1205. (loc('util.py'),
  1206. {'attrib-starts': [('info',
  1207. 553)],
  1208. 'first-line': 547L,
  1209. 'folded-linenos': [],
  1210. 'sel-line': 555L,
  1211. 'sel-line-start': 16900L,
  1212. 'selection_end': 16920L,
  1213. 'selection_start': 16917L,
  1214. 'zoom': 0L}),
  1215. (loc('sources/filmix.py'),
  1216. {'attrib-starts': [('Source',
  1217. 31),
  1218. ('Source.get_content',
  1219. 56)],
  1220. 'first-line': 67L,
  1221. 'folded-linenos': [],
  1222. 'sel-line': 71L,
  1223. 'sel-line-start': 2324L,
  1224. 'selection_end': 2353L,
  1225. 'selection_start': 2353L,
  1226. 'zoom': 0L}),
  1227. (loc('run.py'),
  1228. {'attrib-starts': [],
  1229. 'first-line': 537L,
  1230. 'folded-linenos': [],
  1231. 'sel-line': 544L,
  1232. 'sel-line-start': 20857L,
  1233. 'selection_end': 20989L,
  1234. 'selection_start': 20857L,
  1235. 'zoom': 0L}),
  1236. (loc('sources/replay.py'),
  1237. {'attrib-starts': [('Source',
  1238. 30),
  1239. ('Source.get_content',
  1240. 41)],
  1241. 'first-line': 109L,
  1242. 'folded-linenos': [],
  1243. 'sel-line': 114L,
  1244. 'sel-line-start': 5306L,
  1245. 'selection_end': 5306L,
  1246. 'selection_start': 5306L,
  1247. 'zoom': 0L}),
  1248. (loc('sources/SourceBase.py'),
  1249. {'attrib-starts': [('SourceBase',
  1250. 33),
  1251. ('SourceBase.get_streams',
  1252. 62)],
  1253. 'first-line': 54L,
  1254. 'folded-linenos': [],
  1255. 'sel-line': 62L,
  1256. 'sel-line-start': 1841L,
  1257. 'selection_end': 1860L,
  1258. 'selection_start': 1849L,
  1259. 'zoom': 0L}),
  1260. (loc('sources/iplayer.py'),
  1261. {'attrib-starts': [('Source',
  1262. 27),
  1263. ('Source.get_epg_video',
  1264. 370)],
  1265. 'first-line': 396L,
  1266. 'folded-linenos': [],
  1267. 'sel-line': 406L,
  1268. 'sel-line-start': 20357L,
  1269. 'selection_end': 20357L,
  1270. 'selection_start': 20357L,
  1271. 'zoom': 0L}),
  1272. (loc('sources/cinemalive.py'),
  1273. {'attrib-starts': [('Source',
  1274. 30),
  1275. ('Source.get_streams',
  1276. 167)],
  1277. 'first-line': 197L,
  1278. 'folded-linenos': [],
  1279. 'sel-line': 203L,
  1280. 'sel-line-start': 9883L,
  1281. 'selection_end': 9941L,
  1282. 'selection_start': 9941L,
  1283. 'zoom': 0L}),
  1284. (loc('sources/config.py'),
  1285. {'attrib-starts': [('Source',
  1286. 12),
  1287. ('Source.__init__',
  1288. 14)],
  1289. 'first-line': 10L,
  1290. 'folded-linenos': [],
  1291. 'sel-line': 20L,
  1292. 'sel-line-start': 756L,
  1293. 'selection_end': 756L,
  1294. 'selection_start': 756L,
  1295. 'zoom': 0L})],
  1296. 'has-focus': True,
  1297. 'locked': False},
  1298. [loc('ContentSources.py'),
  1299. loc('sources/euronews.py'),
  1300. loc('sources/ltc.py'),
  1301. loc('test_sources2.py'),
  1302. loc('../../../../../Python27/Lib/lib-tk/tkSimpleDialog.py'),
  1303. loc('util.py'),
  1304. loc('sources/filmix.py'),
  1305. loc('run.py'),
  1306. loc('sources/replay.py'),
  1307. loc('sources/SourceBase.py'),
  1308. loc('sources/iplayer.py'),
  1309. loc('sources/cinemalive.py'),
  1310. loc('sources/config.py')]),
  1311. 'open_files': [u'sources/SourceBase.py',
  1312. u'sources/euronews.py',
  1313. u'sources/filmix.py',
  1314. u'sources/iplayer.py',
  1315. u'sources/ltc.py',
  1316. u'sources/replay.py',
  1317. u'test_sources2.py',
  1318. u'util.py',
  1319. u'../../../../../Python27/Lib/lib-tk/tkSimpleDialog.py',
  1320. u'sources/cinemalive.py',
  1321. u'sources/config.py',
  1322. u'ContentSources.py',
  1323. u'run.py']},
  1324. 'saved_notebook_display': None,
  1325. 'split_percents': {0: 0.4352047277332208},
  1326. 'splits': 2,
  1327. 'tab_location': 'top',
  1328. 'user_data': {}},
  1329. 'saved_notebook_display': None,
  1330. 'split_percents': {0: 0.5},
  1331. 'splits': 2,
  1332. 'tab_location': 'left',
  1333. 'user_data': {}},
  1334. 'window-alloc': (126,
  1335. 0,
  1336. 2434,
  1337. 1440)}]}
  1338. guimgr.recent-documents = [loc('run.py'),
  1339. loc('ContentSources.py'),
  1340. loc('sources/config.py'),
  1341. loc('sources/cinemalive.py'),
  1342. loc('../../../../../Python27/Lib/lib-tk/tkSimpleDialog.py'),
  1343. loc('sources/filmix.py'),
  1344. loc('test_sources2.py'),
  1345. loc('sources/replay.py'),
  1346. loc('sources/ltc.py'),
  1347. loc('sources/iplayer.py'),
  1348. loc('util.py'),
  1349. loc('sources/SourceBase.py'),
  1350. loc('sources/euronews.py')]
  1351. guimgr.visual-state = {loc('../../../Python25/Lib/BeautifulSoup.py'): {'attr'\
  1352. 'ib-starts': [('NavigableString',
  1353. 354),
  1354. ('NavigableString.__getattr__',
  1355. 356)],
  1356. 'first-line': 337,
  1357. 'sel-line': 363,
  1358. 'sel-line-start': 13868,
  1359. 'selection_end': 13868,
  1360. 'selection_start': 13868},
  1361. loc('../../../Python25/Lib/HTMLParser.py'): {'attrib-'\
  1362. 'starts': [('HTMLParser',
  1363. 66),
  1364. ('HTMLParser.check_for_whole_start_tag',
  1365. 274)],
  1366. 'first-line': 284,
  1367. 'folded-linenos': [],
  1368. 'sel-line': 301,
  1369. 'sel-line-start': 10981,
  1370. 'selection_end': 11013,
  1371. 'selection_start': 11013},
  1372. loc('../../../Python25/Lib/VideoCapture.py'): {'attri'\
  1373. 'b-starts': [],
  1374. 'first-line': 0,
  1375. 'folded-linenos': [],
  1376. 'sel-line': 7,
  1377. 'sel-line-start': 85,
  1378. 'selection_end': 128,
  1379. 'selection_start': 85},
  1380. loc('../../../Python25/Lib/encodings/cp1257.py'): {'a'\
  1381. 'ttrib-starts': [('Codec',
  1382. 8),
  1383. ('Codec.encode',
  1384. 10)],
  1385. 'first-line': 0,
  1386. 'folded-linenos': [],
  1387. 'sel-line': 10,
  1388. 'sel-line-start': 197,
  1389. 'selection_end': 197,
  1390. 'selection_start': 197},
  1391. loc('../../../Python25/Lib/re.py'): {'attrib-starts': [],
  1392. 'first-line': 0,
  1393. 'folded-linenos': [],
  1394. 'sel-line': 0,
  1395. 'sel-line-start': 0,
  1396. 'selection_end': 0,
  1397. 'selection_start': 0},
  1398. loc('../../../Python25/Lib/site-packages/BeautifulSoup.py'): {'a'\
  1399. 'ttrib-starts': [('SoupStrainer',
  1400. 817),
  1401. ('SoupStrainer._matches',
  1402. 904)],
  1403. 'first-line': 907,
  1404. 'folded-linenos': [],
  1405. 'sel-line': 928,
  1406. 'sel-line-start': 35455,
  1407. 'selection_end': 35455,
  1408. 'selection_start': 35455},
  1409. loc('../../../Python25/Lib/site-packages/PIL/Image.py'): {'a'\
  1410. 'ttrib-starts': [],
  1411. 'first-line': 26,
  1412. 'folded-linenos': [],
  1413. 'sel-line': 44,
  1414. 'sel-line-start': 1253,
  1415. 'selection_end': 1253,
  1416. 'selection_start': 1253},
  1417. loc('../../../Python25/Lib/site-packages/PIL/__init__.py'): {'a'\
  1418. 'ttrib-starts': [],
  1419. 'first-line': 0,
  1420. 'folded-linenos': [],
  1421. 'sel-line': 0,
  1422. 'sel-line-start': 0,
  1423. 'selection_end': 0,
  1424. 'selection_start': 0},
  1425. loc('../../../Python25/Lib/site-packages/argparse.py'): {'a'\
  1426. 'ttrib-starts': [('_ActionsContainer',
  1427. 926),
  1428. ('_ActionsContainer._handle_conflict_error',
  1429. 1132)],
  1430. 'first-line': 1106,
  1431. 'folded-linenos': [],
  1432. 'sel-line': 1137,
  1433. 'sel-line-start': 41374,
  1434. 'selection_end': 41374,
  1435. 'selection_start': 41374},
  1436. loc('../../../Python25/Lib/site-packages/win32com/client/__init__.py'): {'a'\
  1437. 'ttrib-starts': [('DispatchBaseClass',
  1438. 410),
  1439. ('DispatchBaseClass._ApplyTypes_',
  1440. 443)],
  1441. 'first-line': 425,
  1442. 'folded-linenos': [],
  1443. 'sel-line': 447,
  1444. 'sel-line-start': 19318,
  1445. 'selection_end': 19318,
  1446. 'selection_start': 19318},
  1447. loc('../../../Python25/Lib/site-packages/win32com/client/dynamic.py'): {'a'\
  1448. 'ttrib-starts': [('CDispatch',
  1449. 151),
  1450. ('CDispatch.__getattr__',
  1451. 421)],
  1452. 'first-line': 489,
  1453. 'folded-linenos': [],
  1454. 'sel-line': 494,
  1455. 'sel-line-start': 19030,
  1456. 'selection_end': 19030,
  1457. 'selection_start': 19030},
  1458. loc('../../../Python25/Lib/site-packages/win32com/gen_py/00020813-0000-0000-C000-000000000046x0x1x6.py'): {'a'\
  1459. 'ttrib-starts': [('Range',
  1460. 26378),
  1461. ('Range.__call__',
  1462. 27016)],
  1463. 'first-line': 26996,
  1464. 'folded-linenos': [],
  1465. 'sel-line': 27018,
  1466. 'sel-line-start': 1285165,
  1467. 'selection_end': 1285165,
  1468. 'selection_start': 1285165},
  1469. loc('../../../Python25/Lib/socket.py'): {'attrib-star'\
  1470. 'ts': [('_fileobject',
  1471. 195),
  1472. ('_fileobject.readline',
  1473. 320)],
  1474. 'first-line': 301,
  1475. 'sel-line': 330,
  1476. 'sel-line-start': 10707,
  1477. 'selection_end': 10707,
  1478. 'selection_start': 10707},
  1479. loc('../../../Python25/Lib/sre_parse.py'): {'attrib-s'\
  1480. 'tarts': [('_parse',
  1481. 384)],
  1482. 'first-line': 375,
  1483. 'folded-linenos': [],
  1484. 'sel-line': 406,
  1485. 'sel-line-start': 12403,
  1486. 'selection_end': 12403,
  1487. 'selection_start': 12403},
  1488. loc('config.py'): {'attrib-starts': [],
  1489. 'first-line': 0,
  1490. 'folded-linenos': [],
  1491. 'sel-line': 38,
  1492. 'sel-line-start': 1110,
  1493. 'selection_end': 1110,
  1494. 'selection_start': 1110},
  1495. loc('iub.py'): {'attrib-starts': [('get_table',
  1496. 51)],
  1497. 'first-line': 0,
  1498. 'folded-linenos': [],
  1499. 'sel-line': 101,
  1500. 'sel-line-start': 3652,
  1501. 'selection_end': 3685,
  1502. 'selection_start': 3669},
  1503. loc('iubx.py'): {'attrib-starts': [('parse_arguments',
  1504. 25)],
  1505. 'first-line': 0,
  1506. 'folded-linenos': [],
  1507. 'sel-line': 32,
  1508. 'sel-line-start': 1289,
  1509. 'selection_end': 1335,
  1510. 'selection_start': 1335},
  1511. loc('iubx0.py'): {'attrib-starts': [('main',
  1512. 40)],
  1513. 'first-line': 349,
  1514. 'folded-linenos': [],
  1515. 'sel-line': 84,
  1516. 'sel-line-start': 3404,
  1517. 'selection_end': 3450,
  1518. 'selection_start': 3449},
  1519. loc('run.py'): {'attrib-starts': [('Main',
  1520. 20),
  1521. ('Main.initUI',
  1522. 42)],
  1523. 'first-line': 53L,
  1524. 'folded-linenos': [],
  1525. 'sel-line': 56L,
  1526. 'sel-line-start': 1747L,
  1527. 'selection_end': 1804L,
  1528. 'selection_start': 1804L,
  1529. 'zoom': 0L},
  1530. loc('sources/cinemalive.py'): {'attrib-starts': [],
  1531. 'first-line': 185L,
  1532. 'folded-linenos': [],
  1533. 'sel-line': 197L,
  1534. 'sel-line-start': 8879L,
  1535. 'selection_end': 8954L,
  1536. 'selection_start': 8879L,
  1537. 'zoom': 0L},
  1538. loc('sources/euronews.py'): {'attrib-starts': [('Sour'\
  1539. 'ce',
  1540. 26),
  1541. ('Source.__init__',
  1542. 28)],
  1543. 'first-line': 19L,
  1544. 'folded-linenos': [],
  1545. 'sel-line': 31L,
  1546. 'sel-line-start': 919L,
  1547. 'selection_end': 951L,
  1548. 'selection_start': 951L,
  1549. 'zoom': 0L},
  1550. loc('sources/filmas.py'): {'attrib-starts': [],
  1551. 'first-line': 219L,
  1552. 'folded-linenos': [],
  1553. 'sel-line': 231L,
  1554. 'sel-line-start': 9864L,
  1555. 'selection_end': 9865L,
  1556. 'selection_start': 9865L,
  1557. 'zoom': 0L},
  1558. loc('sources/filmix.py'): {'attrib-starts': [('Source',
  1559. 31),
  1560. ('Source.get_streams',
  1561. 218)],
  1562. 'first-line': 211L,
  1563. 'folded-linenos': [],
  1564. 'sel-line': 229L,
  1565. 'sel-line-start': 10228L,
  1566. 'selection_end': 10271L,
  1567. 'selection_start': 10263L,
  1568. 'zoom': 0L},
  1569. loc('sources/filmon.py'): {'attrib-starts': [('Source',
  1570. 32),
  1571. ('Source.__init__',
  1572. 34)],
  1573. 'first-line': 26L,
  1574. 'folded-linenos': [],
  1575. 'sel-line': 38L,
  1576. 'sel-line-start': 1351L,
  1577. 'selection_end': 1381L,
  1578. 'selection_start': 1381L,
  1579. 'zoom': 0L},
  1580. loc('sources/iplayer.py'): {'attrib-starts': [],
  1581. 'first-line': 20L,
  1582. 'folded-linenos': [],
  1583. 'sel-line': 23L,
  1584. 'sel-line-start': 768L,
  1585. 'selection_end': 768L,
  1586. 'selection_start': 768L,
  1587. 'zoom': 0L},
  1588. loc('sources/lmt.py'): {'attrib-starts': [('Source',
  1589. 32),
  1590. ('Source.get_content',
  1591. 52)],
  1592. 'first-line': 49L,
  1593. 'folded-linenos': [],
  1594. 'sel-line': 60L,
  1595. 'sel-line-start': 1987L,
  1596. 'selection_end': 2043L,
  1597. 'selection_start': 2043L,
  1598. 'zoom': 0L},
  1599. loc('sources/ltc.py'): {'attrib-starts': [('Source',
  1600. 27),
  1601. ('Source.__init__',
  1602. 29)],
  1603. 'first-line': 20L,
  1604. 'folded-linenos': [],
  1605. 'sel-line': 32L,
  1606. 'sel-line-start': 1211L,
  1607. 'selection_end': 1227L,
  1608. 'selection_start': 1219L,
  1609. 'zoom': 0L},
  1610. loc('sources/movieplace.py'): {'attrib-starts': [('So'\
  1611. 'urce',
  1612. 32),
  1613. ('Source.__init__',
  1614. 34)],
  1615. 'first-line': 26L,
  1616. 'folded-linenos': [],
  1617. 'sel-line': 38L,
  1618. 'sel-line-start': 1089L,
  1619. 'selection_end': 1119L,
  1620. 'selection_start': 1119L,
  1621. 'zoom': 0L},
  1622. loc('sources/mtgplay.py'): {'attrib-starts': [('Sourc'\
  1623. 'e',
  1624. 40),
  1625. ('Source.__init__',
  1626. 42)],
  1627. 'first-line': 33L,
  1628. 'folded-linenos': [],
  1629. 'sel-line': 45L,
  1630. 'sel-line-start': 1314L,
  1631. 'selection_end': 1330L,
  1632. 'selection_start': 1322L,
  1633. 'zoom': 0L},
  1634. loc('sources/play24.py'): {'attrib-starts': [('Source',
  1635. 28),
  1636. ('Source.__init__',
  1637. 30)],
  1638. 'first-line': 21L,
  1639. 'folded-linenos': [],
  1640. 'sel-line': 33L,
  1641. 'sel-line-start': 1074L,
  1642. 'selection_end': 1090L,
  1643. 'selection_start': 1082L,
  1644. 'zoom': 0L},
  1645. loc('sources/replay.py'): {'attrib-starts': [('Source',
  1646. 30),
  1647. ('Source.__init__',
  1648. 32)],
  1649. 'first-line': 23L,
  1650. 'folded-linenos': [],
  1651. 'sel-line': 35L,
  1652. 'sel-line-start': 1141L,
  1653. 'selection_end': 1157L,
  1654. 'selection_start': 1149L,
  1655. 'zoom': 0L},
  1656. loc('sources/tvdom.py'): {'attrib-starts': [('Source',
  1657. 32),
  1658. ('Source.get_streams',
  1659. 242)],
  1660. 'first-line': 0L,
  1661. 'folded-linenos': [],
  1662. 'sel-line': 291L,
  1663. 'sel-line-start': 13715L,
  1664. 'selection_end': 13715L,
  1665. 'selection_start': 13715L,
  1666. 'zoom': 0L},
  1667. loc('sources/ustvnow.py'): {'attrib-starts': [('Sourc'\
  1668. 'e',
  1669. 32),
  1670. ('Source.__init__',
  1671. 34)],
  1672. 'first-line': 26L,
  1673. 'folded-linenos': [],
  1674. 'sel-line': 38L,
  1675. 'sel-line-start': 1260L,
  1676. 'selection_end': 1287L,
  1677. 'selection_start': 1287L,
  1678. 'zoom': 0L},
  1679. loc('sources/viaplay.py'): {'attrib-starts': [('Sourc'\
  1680. 'e',
  1681. 36),
  1682. ('Source.__init__',
  1683. 38)],
  1684. 'first-line': 37L,
  1685. 'folded-linenos': [],
  1686. 'sel-line': 42L,
  1687. 'sel-line-start': 1308L,
  1688. 'selection_end': 1324L,
  1689. 'selection_start': 1316L,
  1690. 'zoom': 0L},
  1691. loc('test_sources.py'): {'attrib-starts': [('App',
  1692. 2),
  1693. ('App.__init__',
  1694. 4)],
  1695. 'first-line': 0L,
  1696. 'folded-linenos': [],
  1697. 'sel-line': 11L,
  1698. 'sel-line-start': 403L,
  1699. 'selection_end': 429L,
  1700. 'selection_start': 424L,
  1701. 'zoom': 0L},
  1702. loc('../untitled-1.py'): {'attrib-starts': [],
  1703. 'first-line': 0,
  1704. 'folded-linenos': [],
  1705. 'sel-line': 0,
  1706. 'sel-line-start': 0,
  1707. 'selection_end': 1,
  1708. 'selection_start': 1},
  1709. loc('../../../../../Python27/Lib/lib-tk/Tkinter.py'): {'a'\
  1710. 'ttrib-starts': [('Canvas',
  1711. 2223),
  1712. ('Canvas._create',
  1713. 2300)],
  1714. 'first-line': 2302L,
  1715. 'folded-linenos': [],
  1716. 'sel-line': 2310L,
  1717. 'sel-line-start': 94151L,
  1718. 'selection_end': 94151L,
  1719. 'selection_start': 94151L,
  1720. 'zoom': 0L},
  1721. loc('../../../../../Python27/Lib/lib-tk/tkCommonDialog.py'): {'a'\
  1722. 'ttrib-starts': [('Dialog',
  1723. 12)],
  1724. 'first-line': 12L,
  1725. 'folded-linenos': [],
  1726. 'sel-line': 12L,
  1727. 'sel-line-start': 298L,
  1728. 'selection_end': 298L,
  1729. 'selection_start': 298L,
  1730. 'zoom': 0L},
  1731. loc('x-wingide-zip://C:/Python25/Lib/site-packages/argparse-1.1-py2.5.egg//argparse.py'): {'a'\
  1732. 'ttrib-starts': [('_ActionsContainer',
  1733. 1187),
  1734. ('_ActionsContainer.add_argument',
  1735. 1270)],
  1736. 'first-line': 1271,
  1737. 'folded-linenos': [],
  1738. 'sel-line': 1283,
  1739. 'sel-line-start': 45405,
  1740. 'selection_end': 45405,
  1741. 'selection_start': 45405},
  1742. loc('x-wingide-zip://C:/Python25/Lib/site-packages/beautifulsoup-3.1.0.1-py2.5.egg//BeautifulSoup.py'): {'a'\
  1743. 'ttrib-starts': [('BeautifulSoup',
  1744. 1446),
  1745. ('BeautifulSoup.__init__',
  1746. 1494)],
  1747. 'first-line': 1481,
  1748. 'folded-linenos': [],
  1749. 'sel-line': 1498,
  1750. 'sel-line-start': 57438,
  1751. 'selection_end': 57438,
  1752. 'selection_start': 57438}}
  1753. proj.build-cmd = {None: ('default',
  1754. None)}
  1755. proj.env-vars = {None: ('default',
  1756. [u''])}
  1757. search.search-history = [u'ConfigSou',
  1758. u'contentsour',
  1759. u'Source',
  1760. u'img',
  1761. u'decode',
  1762. u'lst.append',
  1763. u'icong',
  1764. u'icon',
  1765. u'print',
  1766. u'title',
  1767. u'get_info',
  1768. u'nfo',
  1769. u'"nfo"',
  1770. u'plugins',
  1771. u'desc =',
  1772. u'print ',
  1773. u'picon_path',
  1774. u'search',
  1775. u'{0',
  1776. u'exception']
  1777. testing.stored-results = (1,
  1778. [],
  1779. {})