bee_python 0.0.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (503) hide show
  1. data/LICENSE +202 -0
  2. data/build/README +23 -0
  3. data/egg/egg/build.yml +70 -0
  4. data/egg/egg/ez_setup.py +280 -0
  5. data/egg/egg/script.py +12 -0
  6. data/egg/egg/setup.erb +11 -0
  7. data/egg/egg/suite.py +37 -0
  8. data/egg/egg/test.py +31 -0
  9. data/egg/egg.yml +69 -0
  10. data/egg/http/build.erb +53 -0
  11. data/egg/http/server.py +34 -0
  12. data/egg/http.yml +50 -0
  13. data/egg/mysql/mysql.py +43 -0
  14. data/egg/mysql.yml +44 -0
  15. data/egg/project/build.erb +77 -0
  16. data/egg/project/script.py +42 -0
  17. data/egg/project/test.py +31 -0
  18. data/egg/project.yml +59 -0
  19. data/egg/script/build.erb +35 -0
  20. data/egg/script/script.py +42 -0
  21. data/egg/script.yml +50 -0
  22. data/egg/soap/build.erb +52 -0
  23. data/egg/soap/client.py +18 -0
  24. data/egg/soap/server.py +30 -0
  25. data/egg/soap.yml +58 -0
  26. data/egg/source/source.py +42 -0
  27. data/egg/source.yml +47 -0
  28. data/egg/test/test.py +28 -0
  29. data/egg/test.yml +44 -0
  30. data/egg/xmlrpc/build.erb +52 -0
  31. data/egg/xmlrpc/client.py +22 -0
  32. data/egg/xmlrpc/server.py +24 -0
  33. data/egg/xmlrpc.yml +51 -0
  34. data/lib/bee_task_python.rb +390 -0
  35. data/test/build.yml +16 -0
  36. data/test/tc_bee_task_python.rb +27 -0
  37. data/test/test_build.rb +26 -0
  38. data/test/test_build_listener.rb +62 -0
  39. data/test/ts_bee_python.rb +26 -0
  40. data/tools/common/__init__.py +5 -0
  41. data/tools/common/common/__init__.py +140 -0
  42. data/tools/common/common/__pkginfo__.py +43 -0
  43. data/tools/common/common/adbh.py +35 -0
  44. data/tools/common/common/cache.py +114 -0
  45. data/tools/common/common/changelog.py +234 -0
  46. data/tools/common/common/clcommands.py +181 -0
  47. data/tools/common/common/cli.py +212 -0
  48. data/tools/common/common/compat.py +328 -0
  49. data/tools/common/common/configuration.py +1087 -0
  50. data/tools/common/common/contexts.py +58 -0
  51. data/tools/common/common/corbautils.py +117 -0
  52. data/tools/common/common/daemon.py +171 -0
  53. data/tools/common/common/date.py +279 -0
  54. data/tools/common/common/db.py +49 -0
  55. data/tools/common/common/dbf.py +229 -0
  56. data/tools/common/common/debugger.py +208 -0
  57. data/tools/common/common/decorators.py +190 -0
  58. data/tools/common/common/deprecation.py +118 -0
  59. data/tools/common/common/fileutils.py +409 -0
  60. data/tools/common/common/graph.py +259 -0
  61. data/tools/common/common/html.py +142 -0
  62. data/tools/common/common/interface.py +76 -0
  63. data/tools/common/common/logging_ext.py +166 -0
  64. data/tools/common/common/modutils.py +670 -0
  65. data/tools/common/common/optik_ext.py +383 -0
  66. data/tools/common/common/optparser.py +92 -0
  67. data/tools/common/common/pdf_ext.py +111 -0
  68. data/tools/common/common/proc.py +276 -0
  69. data/tools/common/common/pyro_ext.py +146 -0
  70. data/tools/common/common/pytest.py +754 -0
  71. data/tools/common/common/shellutils.py +383 -0
  72. data/tools/common/common/sphinx_ext.py +87 -0
  73. data/tools/common/common/sphinxutils.py +122 -0
  74. data/tools/common/common/sqlgen.py +31 -0
  75. data/tools/common/common/table.py +930 -0
  76. data/tools/common/common/tasksqueue.py +97 -0
  77. data/tools/common/common/test/__init__.py +1 -0
  78. data/tools/common/common/test/data/ChangeLog +184 -0
  79. data/tools/common/common/test/data/MyPyPa-0.1.0-py2.5.egg +0 -0
  80. data/tools/common/common/test/data/__init__.py +1 -0
  81. data/tools/common/common/test/data/content_differ_dir/NOTHING +0 -0
  82. data/tools/common/common/test/data/content_differ_dir/README +1 -0
  83. data/tools/common/common/test/data/content_differ_dir/subdir/coin +1 -0
  84. data/tools/common/common/test/data/content_differ_dir/subdir/toto.txt +53 -0
  85. data/tools/common/common/test/data/file_differ_dir/NOTHING +0 -0
  86. data/tools/common/common/test/data/file_differ_dir/README +1 -0
  87. data/tools/common/common/test/data/file_differ_dir/subdir/toto.txt +53 -0
  88. data/tools/common/common/test/data/file_differ_dir/subdirtwo/Hello +0 -0
  89. data/tools/common/common/test/data/find_test/__init__.py +0 -0
  90. data/tools/common/common/test/data/find_test/foo.txt +0 -0
  91. data/tools/common/common/test/data/find_test/module.py +0 -0
  92. data/tools/common/common/test/data/find_test/module2.py +0 -0
  93. data/tools/common/common/test/data/find_test/newlines.txt +0 -0
  94. data/tools/common/common/test/data/find_test/noendingnewline.py +0 -0
  95. data/tools/common/common/test/data/find_test/nonregr.py +0 -0
  96. data/tools/common/common/test/data/find_test/normal_file.txt +0 -0
  97. data/tools/common/common/test/data/find_test/spam.txt +0 -0
  98. data/tools/common/common/test/data/find_test/sub/doc.txt +0 -0
  99. data/tools/common/common/test/data/find_test/sub/momo.py +0 -0
  100. data/tools/common/common/test/data/find_test/test.ini +0 -0
  101. data/tools/common/common/test/data/find_test/test1.msg +0 -0
  102. data/tools/common/common/test/data/find_test/test2.msg +0 -0
  103. data/tools/common/common/test/data/find_test/write_protected_file.txt +0 -0
  104. data/tools/common/common/test/data/foo.txt +9 -0
  105. data/tools/common/common/test/data/module.py +88 -0
  106. data/tools/common/common/test/data/module2.py +77 -0
  107. data/tools/common/common/test/data/newlines.txt +3 -0
  108. data/tools/common/common/test/data/noendingnewline.py +36 -0
  109. data/tools/common/common/test/data/nonregr.py +14 -0
  110. data/tools/common/common/test/data/normal_file.txt +0 -0
  111. data/tools/common/common/test/data/reference_dir/NOTHING +0 -0
  112. data/tools/common/common/test/data/reference_dir/README +1 -0
  113. data/tools/common/common/test/data/reference_dir/subdir/coin +1 -0
  114. data/tools/common/common/test/data/reference_dir/subdir/toto.txt +53 -0
  115. data/tools/common/common/test/data/same_dir/NOTHING +0 -0
  116. data/tools/common/common/test/data/same_dir/README +1 -0
  117. data/tools/common/common/test/data/same_dir/subdir/coin +1 -0
  118. data/tools/common/common/test/data/same_dir/subdir/toto.txt +53 -0
  119. data/tools/common/common/test/data/spam.txt +9 -0
  120. data/tools/common/common/test/data/sub/doc.txt +1 -0
  121. data/tools/common/common/test/data/sub/momo.py +1 -0
  122. data/tools/common/common/test/data/subdir_differ_dir/NOTHING +0 -0
  123. data/tools/common/common/test/data/subdir_differ_dir/README +1 -0
  124. data/tools/common/common/test/data/subdir_differ_dir/subdir/coin +1 -0
  125. data/tools/common/common/test/data/subdir_differ_dir/subdir/toto.txt +53 -0
  126. data/tools/common/common/test/data/test.ini +20 -0
  127. data/tools/common/common/test/data/test1.msg +30 -0
  128. data/tools/common/common/test/data/test2.msg +42 -0
  129. data/tools/common/common/test/data/write_protected_file.txt +0 -0
  130. data/tools/common/common/test/foomod.py +17 -0
  131. data/tools/common/common/test/unittest_cache.py +129 -0
  132. data/tools/common/common/test/unittest_changelog.py +37 -0
  133. data/tools/common/common/test/unittest_compat.py +239 -0
  134. data/tools/common/common/test/unittest_configuration.py +348 -0
  135. data/tools/common/common/test/unittest_date.py +154 -0
  136. data/tools/common/common/test/unittest_decorators.py +62 -0
  137. data/tools/common/common/test/unittest_deprecation.py +76 -0
  138. data/tools/common/common/test/unittest_fileutils.py +133 -0
  139. data/tools/common/common/test/unittest_graph.py +50 -0
  140. data/tools/common/common/test/unittest_html.py +76 -0
  141. data/tools/common/common/test/unittest_interface.py +87 -0
  142. data/tools/common/common/test/unittest_modutils.py +244 -0
  143. data/tools/common/common/test/unittest_pytest.py +50 -0
  144. data/tools/common/common/test/unittest_shellutils.py +248 -0
  145. data/tools/common/common/test/unittest_table.py +448 -0
  146. data/tools/common/common/test/unittest_taskqueue.py +71 -0
  147. data/tools/common/common/test/unittest_testlib.py +956 -0
  148. data/tools/common/common/test/unittest_textutils.py +247 -0
  149. data/tools/common/common/test/unittest_tree.py +248 -0
  150. data/tools/common/common/test/unittest_umessage.py +55 -0
  151. data/tools/common/common/test/unittest_ureports_html.py +64 -0
  152. data/tools/common/common/test/unittest_ureports_text.py +105 -0
  153. data/tools/common/common/test/unittest_xmlutils.py +75 -0
  154. data/tools/common/common/test/utils.py +87 -0
  155. data/tools/common/common/testlib.py +1927 -0
  156. data/tools/common/common/textutils.py +476 -0
  157. data/tools/common/common/tree.py +372 -0
  158. data/tools/common/common/umessage.py +161 -0
  159. data/tools/common/common/ureports/__init__.py +174 -0
  160. data/tools/common/common/ureports/docbook_writer.py +139 -0
  161. data/tools/common/common/ureports/html_writer.py +131 -0
  162. data/tools/common/common/ureports/nodes.py +201 -0
  163. data/tools/common/common/ureports/text_writer.py +140 -0
  164. data/tools/common/common/vcgutils.py +216 -0
  165. data/tools/common/common/visitor.py +107 -0
  166. data/tools/common/common/xmlrpcutils.py +136 -0
  167. data/tools/common/common/xmlutils.py +61 -0
  168. data/tools/compile/compile.py +16 -0
  169. data/tools/coverage/coverage.py +602 -0
  170. data/tools/epydoc/__init__.py +227 -0
  171. data/tools/epydoc/__init__.pyc +0 -0
  172. data/tools/epydoc/apidoc.py +2203 -0
  173. data/tools/epydoc/apidoc.pyc +0 -0
  174. data/tools/epydoc/checker.py +349 -0
  175. data/tools/epydoc/checker.pyc +0 -0
  176. data/tools/epydoc/cli.py +1470 -0
  177. data/tools/epydoc/cli.pyc +0 -0
  178. data/tools/epydoc/compat.py +250 -0
  179. data/tools/epydoc/compat.pyc +0 -0
  180. data/tools/epydoc/docbuilder.py +1358 -0
  181. data/tools/epydoc/docbuilder.pyc +0 -0
  182. data/tools/epydoc/docintrospecter.py +1056 -0
  183. data/tools/epydoc/docintrospecter.pyc +0 -0
  184. data/tools/epydoc/docparser.py +2113 -0
  185. data/tools/epydoc/docparser.pyc +0 -0
  186. data/tools/epydoc/docstringparser.py +1111 -0
  187. data/tools/epydoc/docstringparser.pyc +0 -0
  188. data/tools/epydoc/docwriter/__init__.py +12 -0
  189. data/tools/epydoc/docwriter/__init__.pyc +0 -0
  190. data/tools/epydoc/docwriter/dotgraph.py +1351 -0
  191. data/tools/epydoc/docwriter/dotgraph.pyc +0 -0
  192. data/tools/epydoc/docwriter/html.py +3491 -0
  193. data/tools/epydoc/docwriter/html.pyc +0 -0
  194. data/tools/epydoc/docwriter/html_colorize.py +909 -0
  195. data/tools/epydoc/docwriter/html_colorize.pyc +0 -0
  196. data/tools/epydoc/docwriter/html_css.py +550 -0
  197. data/tools/epydoc/docwriter/html_css.pyc +0 -0
  198. data/tools/epydoc/docwriter/html_help.py +190 -0
  199. data/tools/epydoc/docwriter/html_help.pyc +0 -0
  200. data/tools/epydoc/docwriter/latex.py +1187 -0
  201. data/tools/epydoc/docwriter/latex.pyc +0 -0
  202. data/tools/epydoc/docwriter/plaintext.py +276 -0
  203. data/tools/epydoc/docwriter/plaintext.pyc +0 -0
  204. data/tools/epydoc/docwriter/xlink.py +505 -0
  205. data/tools/epydoc/docwriter/xlink.pyc +0 -0
  206. data/tools/epydoc/gui.py +1148 -0
  207. data/tools/epydoc/gui.pyc +0 -0
  208. data/tools/epydoc/log.py +204 -0
  209. data/tools/epydoc/log.pyc +0 -0
  210. data/tools/epydoc/markup/__init__.py +623 -0
  211. data/tools/epydoc/markup/__init__.pyc +0 -0
  212. data/tools/epydoc/markup/doctest.py +311 -0
  213. data/tools/epydoc/markup/doctest.pyc +0 -0
  214. data/tools/epydoc/markup/epytext.py +2116 -0
  215. data/tools/epydoc/markup/epytext.pyc +0 -0
  216. data/tools/epydoc/markup/javadoc.py +250 -0
  217. data/tools/epydoc/markup/javadoc.pyc +0 -0
  218. data/tools/epydoc/markup/plaintext.py +78 -0
  219. data/tools/epydoc/markup/plaintext.pyc +0 -0
  220. data/tools/epydoc/markup/pyval_repr.py +532 -0
  221. data/tools/epydoc/markup/pyval_repr.pyc +0 -0
  222. data/tools/epydoc/markup/restructuredtext.py +906 -0
  223. data/tools/epydoc/markup/restructuredtext.pyc +0 -0
  224. data/tools/epydoc/test/__init__.py +97 -0
  225. data/tools/epydoc/test/__init__.pyc +0 -0
  226. data/tools/epydoc/test/util.py +226 -0
  227. data/tools/epydoc/test/util.pyc +0 -0
  228. data/tools/epydoc/util.py +289 -0
  229. data/tools/epydoc/util.pyc +0 -0
  230. data/tools/logilab/logilab/__init__.py +5 -0
  231. data/tools/logilab/logilab/astng/__init__.py +82 -0
  232. data/tools/logilab/logilab/astng/__pkginfo__.py +76 -0
  233. data/tools/logilab/logilab/astng/_exceptions.py +64 -0
  234. data/tools/logilab/logilab/astng/_nodes_ast.py +667 -0
  235. data/tools/logilab/logilab/astng/_nodes_compiler.py +758 -0
  236. data/tools/logilab/logilab/astng/bases.py +608 -0
  237. data/tools/logilab/logilab/astng/builder.py +239 -0
  238. data/tools/logilab/logilab/astng/inference.py +426 -0
  239. data/tools/logilab/logilab/astng/inspector.py +289 -0
  240. data/tools/logilab/logilab/astng/manager.py +421 -0
  241. data/tools/logilab/logilab/astng/mixins.py +165 -0
  242. data/tools/logilab/logilab/astng/node_classes.py +848 -0
  243. data/tools/logilab/logilab/astng/nodes.py +85 -0
  244. data/tools/logilab/logilab/astng/nodes_as_string.py +389 -0
  245. data/tools/logilab/logilab/astng/patchcomptransformer.py +159 -0
  246. data/tools/logilab/logilab/astng/protocols.py +333 -0
  247. data/tools/logilab/logilab/astng/raw_building.py +212 -0
  248. data/tools/logilab/logilab/astng/rebuilder.py +307 -0
  249. data/tools/logilab/logilab/astng/scoped_nodes.py +951 -0
  250. data/tools/logilab/logilab/astng/test/__init__.py +19 -0
  251. data/tools/logilab/logilab/astng/test/data/MyPyPa-0.1.0-py2.5.egg +0 -0
  252. data/tools/logilab/logilab/astng/test/data/MyPyPa-0.1.0-py2.5.zip +0 -0
  253. data/tools/logilab/logilab/astng/test/data/SSL1/Connection1.py +33 -0
  254. data/tools/logilab/logilab/astng/test/data/SSL1/__init__.py +20 -0
  255. data/tools/logilab/logilab/astng/test/data/__init__.py +20 -0
  256. data/tools/logilab/logilab/astng/test/data/all.py +29 -0
  257. data/tools/logilab/logilab/astng/test/data/appl/__init__.py +23 -0
  258. data/tools/logilab/logilab/astng/test/data/appl/myConnection.py +30 -0
  259. data/tools/logilab/logilab/astng/test/data/format.py +34 -0
  260. data/tools/logilab/logilab/astng/test/data/module.py +90 -0
  261. data/tools/logilab/logilab/astng/test/data/module2.py +112 -0
  262. data/tools/logilab/logilab/astng/test/data/noendingnewline.py +57 -0
  263. data/tools/logilab/logilab/astng/test/data/nonregr.py +76 -0
  264. data/tools/logilab/logilab/astng/test/data/notall.py +28 -0
  265. data/tools/logilab/logilab/astng/test/data2/__init__.py +20 -0
  266. data/tools/logilab/logilab/astng/test/data2/clientmodule_test.py +51 -0
  267. data/tools/logilab/logilab/astng/test/data2/suppliermodule_test.py +32 -0
  268. data/tools/logilab/logilab/astng/test/regrtest.py +135 -0
  269. data/tools/logilab/logilab/astng/test/regrtest_data/absimport.py +22 -0
  270. data/tools/logilab/logilab/astng/test/regrtest_data/descriptor_crash.py +31 -0
  271. data/tools/logilab/logilab/astng/test/regrtest_data/import_package_subpackage_module.py +68 -0
  272. data/tools/logilab/logilab/astng/test/regrtest_data/package/__init__.py +24 -0
  273. data/tools/logilab/logilab/astng/test/regrtest_data/package/subpackage/__init__.py +20 -0
  274. data/tools/logilab/logilab/astng/test/regrtest_data/package/subpackage/module.py +20 -0
  275. data/tools/logilab/logilab/astng/test/unittest_builder.py +684 -0
  276. data/tools/logilab/logilab/astng/test/unittest_inference.py +1112 -0
  277. data/tools/logilab/logilab/astng/test/unittest_inspector.py +105 -0
  278. data/tools/logilab/logilab/astng/test/unittest_lookup.py +302 -0
  279. data/tools/logilab/logilab/astng/test/unittest_manager.py +98 -0
  280. data/tools/logilab/logilab/astng/test/unittest_nodes.py +302 -0
  281. data/tools/logilab/logilab/astng/test/unittest_scoped_nodes.py +501 -0
  282. data/tools/logilab/logilab/astng/test/unittest_utils.py +104 -0
  283. data/tools/logilab/logilab/astng/utils.py +342 -0
  284. data/tools/logilab/logilab/common/__init__.py +140 -0
  285. data/tools/logilab/logilab/common/__pkginfo__.py +43 -0
  286. data/tools/logilab/logilab/common/adbh.py +35 -0
  287. data/tools/logilab/logilab/common/cache.py +114 -0
  288. data/tools/logilab/logilab/common/changelog.py +234 -0
  289. data/tools/logilab/logilab/common/clcommands.py +181 -0
  290. data/tools/logilab/logilab/common/cli.py +212 -0
  291. data/tools/logilab/logilab/common/compat.py +328 -0
  292. data/tools/logilab/logilab/common/configuration.py +1087 -0
  293. data/tools/logilab/logilab/common/contexts.py +58 -0
  294. data/tools/logilab/logilab/common/corbautils.py +117 -0
  295. data/tools/logilab/logilab/common/daemon.py +171 -0
  296. data/tools/logilab/logilab/common/date.py +279 -0
  297. data/tools/logilab/logilab/common/db.py +49 -0
  298. data/tools/logilab/logilab/common/dbf.py +229 -0
  299. data/tools/logilab/logilab/common/debugger.py +208 -0
  300. data/tools/logilab/logilab/common/decorators.py +190 -0
  301. data/tools/logilab/logilab/common/deprecation.py +118 -0
  302. data/tools/logilab/logilab/common/fileutils.py +409 -0
  303. data/tools/logilab/logilab/common/graph.py +259 -0
  304. data/tools/logilab/logilab/common/html.py +142 -0
  305. data/tools/logilab/logilab/common/interface.py +76 -0
  306. data/tools/logilab/logilab/common/logging_ext.py +166 -0
  307. data/tools/logilab/logilab/common/modutils.py +670 -0
  308. data/tools/logilab/logilab/common/optik_ext.py +383 -0
  309. data/tools/logilab/logilab/common/optparser.py +92 -0
  310. data/tools/logilab/logilab/common/pdf_ext.py +111 -0
  311. data/tools/logilab/logilab/common/proc.py +276 -0
  312. data/tools/logilab/logilab/common/pyro_ext.py +146 -0
  313. data/tools/logilab/logilab/common/pytest.py +754 -0
  314. data/tools/logilab/logilab/common/shellutils.py +383 -0
  315. data/tools/logilab/logilab/common/sphinx_ext.py +87 -0
  316. data/tools/logilab/logilab/common/sphinxutils.py +122 -0
  317. data/tools/logilab/logilab/common/sqlgen.py +31 -0
  318. data/tools/logilab/logilab/common/table.py +930 -0
  319. data/tools/logilab/logilab/common/tasksqueue.py +97 -0
  320. data/tools/logilab/logilab/common/test/__init__.py +1 -0
  321. data/tools/logilab/logilab/common/test/data/ChangeLog +184 -0
  322. data/tools/logilab/logilab/common/test/data/MyPyPa-0.1.0-py2.5.egg +0 -0
  323. data/tools/logilab/logilab/common/test/data/__init__.py +1 -0
  324. data/tools/logilab/logilab/common/test/data/content_differ_dir/NOTHING +0 -0
  325. data/tools/logilab/logilab/common/test/data/content_differ_dir/README +1 -0
  326. data/tools/logilab/logilab/common/test/data/content_differ_dir/subdir/coin +1 -0
  327. data/tools/logilab/logilab/common/test/data/content_differ_dir/subdir/toto.txt +53 -0
  328. data/tools/logilab/logilab/common/test/data/file_differ_dir/NOTHING +0 -0
  329. data/tools/logilab/logilab/common/test/data/file_differ_dir/README +1 -0
  330. data/tools/logilab/logilab/common/test/data/file_differ_dir/subdir/toto.txt +53 -0
  331. data/tools/logilab/logilab/common/test/data/file_differ_dir/subdirtwo/Hello +0 -0
  332. data/tools/logilab/logilab/common/test/data/find_test/__init__.py +0 -0
  333. data/tools/logilab/logilab/common/test/data/find_test/foo.txt +0 -0
  334. data/tools/logilab/logilab/common/test/data/find_test/module.py +0 -0
  335. data/tools/logilab/logilab/common/test/data/find_test/module2.py +0 -0
  336. data/tools/logilab/logilab/common/test/data/find_test/newlines.txt +0 -0
  337. data/tools/logilab/logilab/common/test/data/find_test/noendingnewline.py +0 -0
  338. data/tools/logilab/logilab/common/test/data/find_test/nonregr.py +0 -0
  339. data/tools/logilab/logilab/common/test/data/find_test/normal_file.txt +0 -0
  340. data/tools/logilab/logilab/common/test/data/find_test/spam.txt +0 -0
  341. data/tools/logilab/logilab/common/test/data/find_test/sub/doc.txt +0 -0
  342. data/tools/logilab/logilab/common/test/data/find_test/sub/momo.py +0 -0
  343. data/tools/logilab/logilab/common/test/data/find_test/test.ini +0 -0
  344. data/tools/logilab/logilab/common/test/data/find_test/test1.msg +0 -0
  345. data/tools/logilab/logilab/common/test/data/find_test/test2.msg +0 -0
  346. data/tools/logilab/logilab/common/test/data/find_test/write_protected_file.txt +0 -0
  347. data/tools/logilab/logilab/common/test/data/foo.txt +9 -0
  348. data/tools/logilab/logilab/common/test/data/module.py +88 -0
  349. data/tools/logilab/logilab/common/test/data/module2.py +77 -0
  350. data/tools/logilab/logilab/common/test/data/newlines.txt +3 -0
  351. data/tools/logilab/logilab/common/test/data/noendingnewline.py +36 -0
  352. data/tools/logilab/logilab/common/test/data/nonregr.py +14 -0
  353. data/tools/logilab/logilab/common/test/data/normal_file.txt +0 -0
  354. data/tools/logilab/logilab/common/test/data/reference_dir/NOTHING +0 -0
  355. data/tools/logilab/logilab/common/test/data/reference_dir/README +1 -0
  356. data/tools/logilab/logilab/common/test/data/reference_dir/subdir/coin +1 -0
  357. data/tools/logilab/logilab/common/test/data/reference_dir/subdir/toto.txt +53 -0
  358. data/tools/logilab/logilab/common/test/data/same_dir/NOTHING +0 -0
  359. data/tools/logilab/logilab/common/test/data/same_dir/README +1 -0
  360. data/tools/logilab/logilab/common/test/data/same_dir/subdir/coin +1 -0
  361. data/tools/logilab/logilab/common/test/data/same_dir/subdir/toto.txt +53 -0
  362. data/tools/logilab/logilab/common/test/data/spam.txt +9 -0
  363. data/tools/logilab/logilab/common/test/data/sub/doc.txt +1 -0
  364. data/tools/logilab/logilab/common/test/data/sub/momo.py +1 -0
  365. data/tools/logilab/logilab/common/test/data/subdir_differ_dir/NOTHING +0 -0
  366. data/tools/logilab/logilab/common/test/data/subdir_differ_dir/README +1 -0
  367. data/tools/logilab/logilab/common/test/data/subdir_differ_dir/subdir/coin +1 -0
  368. data/tools/logilab/logilab/common/test/data/subdir_differ_dir/subdir/toto.txt +53 -0
  369. data/tools/logilab/logilab/common/test/data/test.ini +20 -0
  370. data/tools/logilab/logilab/common/test/data/test1.msg +30 -0
  371. data/tools/logilab/logilab/common/test/data/test2.msg +42 -0
  372. data/tools/logilab/logilab/common/test/data/write_protected_file.txt +0 -0
  373. data/tools/logilab/logilab/common/test/foomod.py +17 -0
  374. data/tools/logilab/logilab/common/test/unittest_cache.py +129 -0
  375. data/tools/logilab/logilab/common/test/unittest_changelog.py +37 -0
  376. data/tools/logilab/logilab/common/test/unittest_compat.py +239 -0
  377. data/tools/logilab/logilab/common/test/unittest_configuration.py +348 -0
  378. data/tools/logilab/logilab/common/test/unittest_date.py +154 -0
  379. data/tools/logilab/logilab/common/test/unittest_decorators.py +62 -0
  380. data/tools/logilab/logilab/common/test/unittest_deprecation.py +76 -0
  381. data/tools/logilab/logilab/common/test/unittest_fileutils.py +133 -0
  382. data/tools/logilab/logilab/common/test/unittest_graph.py +50 -0
  383. data/tools/logilab/logilab/common/test/unittest_html.py +76 -0
  384. data/tools/logilab/logilab/common/test/unittest_interface.py +87 -0
  385. data/tools/logilab/logilab/common/test/unittest_modutils.py +244 -0
  386. data/tools/logilab/logilab/common/test/unittest_pytest.py +50 -0
  387. data/tools/logilab/logilab/common/test/unittest_shellutils.py +248 -0
  388. data/tools/logilab/logilab/common/test/unittest_table.py +448 -0
  389. data/tools/logilab/logilab/common/test/unittest_taskqueue.py +71 -0
  390. data/tools/logilab/logilab/common/test/unittest_testlib.py +956 -0
  391. data/tools/logilab/logilab/common/test/unittest_textutils.py +247 -0
  392. data/tools/logilab/logilab/common/test/unittest_tree.py +248 -0
  393. data/tools/logilab/logilab/common/test/unittest_umessage.py +55 -0
  394. data/tools/logilab/logilab/common/test/unittest_ureports_html.py +64 -0
  395. data/tools/logilab/logilab/common/test/unittest_ureports_text.py +105 -0
  396. data/tools/logilab/logilab/common/test/unittest_xmlutils.py +75 -0
  397. data/tools/logilab/logilab/common/test/utils.py +87 -0
  398. data/tools/logilab/logilab/common/testlib.py +1927 -0
  399. data/tools/logilab/logilab/common/textutils.py +476 -0
  400. data/tools/logilab/logilab/common/tree.py +372 -0
  401. data/tools/logilab/logilab/common/umessage.py +161 -0
  402. data/tools/logilab/logilab/common/ureports/__init__.py +174 -0
  403. data/tools/logilab/logilab/common/ureports/docbook_writer.py +139 -0
  404. data/tools/logilab/logilab/common/ureports/html_writer.py +131 -0
  405. data/tools/logilab/logilab/common/ureports/nodes.py +201 -0
  406. data/tools/logilab/logilab/common/ureports/text_writer.py +140 -0
  407. data/tools/logilab/logilab/common/vcgutils.py +216 -0
  408. data/tools/logilab/logilab/common/visitor.py +107 -0
  409. data/tools/logilab/logilab/common/xmlrpcutils.py +136 -0
  410. data/tools/logilab/logilab/common/xmlutils.py +61 -0
  411. data/tools/pychecker/COPYRIGHT +31 -0
  412. data/tools/pychecker/ChangeLog +349 -0
  413. data/tools/pychecker/CodeChecks.py +1969 -0
  414. data/tools/pychecker/CodeChecks.pyc +0 -0
  415. data/tools/pychecker/CodeChecks.pyo +0 -0
  416. data/tools/pychecker/Config.py +475 -0
  417. data/tools/pychecker/Config.pyc +0 -0
  418. data/tools/pychecker/Config.pyo +0 -0
  419. data/tools/pychecker/KNOWN_BUGS +100 -0
  420. data/tools/pychecker/MAINTAINERS +81 -0
  421. data/tools/pychecker/NEWS +406 -0
  422. data/tools/pychecker/OP.py +131 -0
  423. data/tools/pychecker/OP.pyc +0 -0
  424. data/tools/pychecker/OP.pyo +0 -0
  425. data/tools/pychecker/OptionTypes.py +117 -0
  426. data/tools/pychecker/OptionTypes.pyc +0 -0
  427. data/tools/pychecker/OptionTypes.pyo +0 -0
  428. data/tools/pychecker/README +152 -0
  429. data/tools/pychecker/Stack.py +115 -0
  430. data/tools/pychecker/Stack.pyc +0 -0
  431. data/tools/pychecker/Stack.pyo +0 -0
  432. data/tools/pychecker/TODO +101 -0
  433. data/tools/pychecker/VERSION +1 -0
  434. data/tools/pychecker/Warning.py +50 -0
  435. data/tools/pychecker/Warning.pyc +0 -0
  436. data/tools/pychecker/Warning.pyo +0 -0
  437. data/tools/pychecker/__init__.py +17 -0
  438. data/tools/pychecker/__init__.pyc +0 -0
  439. data/tools/pychecker/__init__.pyo +0 -0
  440. data/tools/pychecker/checker.py +961 -0
  441. data/tools/pychecker/checker.pyc +0 -0
  442. data/tools/pychecker/checker.pyo +0 -0
  443. data/tools/pychecker/function.py +159 -0
  444. data/tools/pychecker/function.pyc +0 -0
  445. data/tools/pychecker/function.pyo +0 -0
  446. data/tools/pychecker/msgs.py +175 -0
  447. data/tools/pychecker/msgs.pyc +0 -0
  448. data/tools/pychecker/msgs.pyo +0 -0
  449. data/tools/pychecker/options.py +275 -0
  450. data/tools/pychecker/options.pyc +0 -0
  451. data/tools/pychecker/options.pyo +0 -0
  452. data/tools/pychecker/pcmodules.py +19 -0
  453. data/tools/pychecker/pcmodules.pyc +0 -0
  454. data/tools/pychecker/pcmodules.pyo +0 -0
  455. data/tools/pychecker/printer.py +47 -0
  456. data/tools/pychecker/printer.pyc +0 -0
  457. data/tools/pychecker/printer.pyo +0 -0
  458. data/tools/pychecker/python.py +427 -0
  459. data/tools/pychecker/python.pyc +0 -0
  460. data/tools/pychecker/python.pyo +0 -0
  461. data/tools/pychecker/utils.py +102 -0
  462. data/tools/pychecker/utils.pyc +0 -0
  463. data/tools/pychecker/utils.pyo +0 -0
  464. data/tools/pychecker/warn.py +778 -0
  465. data/tools/pychecker/warn.pyc +0 -0
  466. data/tools/pychecker/warn.pyo +0 -0
  467. data/tools/pylint2/pylint/__init__.py +16 -0
  468. data/tools/pylint2/pylint/__pkginfo__.py +67 -0
  469. data/tools/pylint2/pylint/checkers/__init__.py +155 -0
  470. data/tools/pylint2/pylint/checkers/base.py +749 -0
  471. data/tools/pylint2/pylint/checkers/classes.py +527 -0
  472. data/tools/pylint2/pylint/checkers/design_analysis.py +344 -0
  473. data/tools/pylint2/pylint/checkers/exceptions.py +183 -0
  474. data/tools/pylint2/pylint/checkers/format.py +367 -0
  475. data/tools/pylint2/pylint/checkers/imports.py +379 -0
  476. data/tools/pylint2/pylint/checkers/logging.py +98 -0
  477. data/tools/pylint2/pylint/checkers/misc.py +128 -0
  478. data/tools/pylint2/pylint/checkers/newstyle.py +107 -0
  479. data/tools/pylint2/pylint/checkers/raw_metrics.py +125 -0
  480. data/tools/pylint2/pylint/checkers/similar.py +333 -0
  481. data/tools/pylint2/pylint/checkers/string_format.py +239 -0
  482. data/tools/pylint2/pylint/checkers/typecheck.py +364 -0
  483. data/tools/pylint2/pylint/checkers/utils.py +208 -0
  484. data/tools/pylint2/pylint/checkers/variables.py +498 -0
  485. data/tools/pylint2/pylint/config.py +149 -0
  486. data/tools/pylint2/pylint/epylint.py +149 -0
  487. data/tools/pylint2/pylint/gui.py +433 -0
  488. data/tools/pylint2/pylint/interfaces.py +98 -0
  489. data/tools/pylint2/pylint/lint.py +914 -0
  490. data/tools/pylint2/pylint/pyreverse/__init__.py +5 -0
  491. data/tools/pylint2/pylint/pyreverse/diadefslib.py +229 -0
  492. data/tools/pylint2/pylint/pyreverse/diagrams.py +247 -0
  493. data/tools/pylint2/pylint/pyreverse/main.py +123 -0
  494. data/tools/pylint2/pylint/pyreverse/utils.py +131 -0
  495. data/tools/pylint2/pylint/pyreverse/writer.py +196 -0
  496. data/tools/pylint2/pylint/reporters/__init__.py +67 -0
  497. data/tools/pylint2/pylint/reporters/guireporter.py +36 -0
  498. data/tools/pylint2/pylint/reporters/html.py +69 -0
  499. data/tools/pylint2/pylint/reporters/text.py +156 -0
  500. data/tools/pylint2/pylint/utils.py +518 -0
  501. data/tools/pylint2/pylint.py +16 -0
  502. data/tools/test/suite.py +35 -0
  503. metadata +566 -0
@@ -0,0 +1,19 @@
1
+ # copyright 2003-2010 LOGILAB S.A. (Paris, FRANCE), all rights reserved.
2
+ # contact http://www.logilab.fr/ -- mailto:contact@logilab.fr
3
+ # copyright 2003-2010 Sylvain Thenault, all rights reserved.
4
+ # contact mailto:thenault@gmail.com
5
+ #
6
+ # This file is part of logilab-astng.
7
+ #
8
+ # logilab-astng is free software: you can redistribute it and/or modify it
9
+ # under the terms of the GNU Lesser General Public License as published by the
10
+ # Free Software Foundation, either version 2.1 of the License, or (at your
11
+ # option) any later version.
12
+ #
13
+ # logilab-astng is distributed in the hope that it will be useful, but
14
+ # WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
15
+ # FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License
16
+ # for more details.
17
+ #
18
+ # You should have received a copy of the GNU Lesser General Public License along
19
+ # with logilab-astng. If not, see <http://www.gnu.org/licenses/>.
@@ -0,0 +1,33 @@
1
+ # copyright 2003-2010 LOGILAB S.A. (Paris, FRANCE), all rights reserved.
2
+ # contact http://www.logilab.fr/ -- mailto:contact@logilab.fr
3
+ # copyright 2003-2010 Sylvain Thenault, all rights reserved.
4
+ # contact mailto:thenault@gmail.com
5
+ #
6
+ # This file is part of logilab-astng.
7
+ #
8
+ # logilab-astng is free software: you can redistribute it and/or modify it
9
+ # under the terms of the GNU Lesser General Public License as published by the
10
+ # Free Software Foundation, either version 2.1 of the License, or (at your
11
+ # option) any later version.
12
+ #
13
+ # logilab-astng is distributed in the hope that it will be useful, but
14
+ # WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
15
+ # FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License
16
+ # for more details.
17
+ #
18
+ # You should have received a copy of the GNU Lesser General Public License along
19
+ # with logilab-astng. If not, see <http://www.gnu.org/licenses/>.
20
+ """M2Crypto.SSL.Connection
21
+
22
+ Copyright (c) 1999-2004 Ng Pheng Siong. All rights reserved."""
23
+
24
+ RCS_id='$Id: Connection1.py,v 1.1 2010/06/14 14:06:49 casa Exp $'
25
+
26
+ #Some code deleted here
27
+
28
+ class Connection:
29
+
30
+ """An SSL connection."""
31
+
32
+ def __init__(self, ctx, sock=None):
33
+ print 'init Connection'
@@ -0,0 +1,20 @@
1
+ # copyright 2003-2010 LOGILAB S.A. (Paris, FRANCE), all rights reserved.
2
+ # contact http://www.logilab.fr/ -- mailto:contact@logilab.fr
3
+ # copyright 2003-2010 Sylvain Thenault, all rights reserved.
4
+ # contact mailto:thenault@gmail.com
5
+ #
6
+ # This file is part of logilab-astng.
7
+ #
8
+ # logilab-astng is free software: you can redistribute it and/or modify it
9
+ # under the terms of the GNU Lesser General Public License as published by the
10
+ # Free Software Foundation, either version 2.1 of the License, or (at your
11
+ # option) any later version.
12
+ #
13
+ # logilab-astng is distributed in the hope that it will be useful, but
14
+ # WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
15
+ # FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License
16
+ # for more details.
17
+ #
18
+ # You should have received a copy of the GNU Lesser General Public License along
19
+ # with logilab-astng. If not, see <http://www.gnu.org/licenses/>.
20
+ from Connection1 import Connection
@@ -0,0 +1,20 @@
1
+ # copyright 2003-2010 LOGILAB S.A. (Paris, FRANCE), all rights reserved.
2
+ # contact http://www.logilab.fr/ -- mailto:contact@logilab.fr
3
+ # copyright 2003-2010 Sylvain Thenault, all rights reserved.
4
+ # contact mailto:thenault@gmail.com
5
+ #
6
+ # This file is part of logilab-astng.
7
+ #
8
+ # logilab-astng is free software: you can redistribute it and/or modify it
9
+ # under the terms of the GNU Lesser General Public License as published by the
10
+ # Free Software Foundation, either version 2.1 of the License, or (at your
11
+ # option) any later version.
12
+ #
13
+ # logilab-astng is distributed in the hope that it will be useful, but
14
+ # WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
15
+ # FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License
16
+ # for more details.
17
+ #
18
+ # You should have received a copy of the GNU Lesser General Public License along
19
+ # with logilab-astng. If not, see <http://www.gnu.org/licenses/>.
20
+ __revision__="$Id: __init__.py,v 1.1 2010/06/14 14:06:48 casa Exp $"
@@ -0,0 +1,29 @@
1
+ # copyright 2003-2010 LOGILAB S.A. (Paris, FRANCE), all rights reserved.
2
+ # contact http://www.logilab.fr/ -- mailto:contact@logilab.fr
3
+ # copyright 2003-2010 Sylvain Thenault, all rights reserved.
4
+ # contact mailto:thenault@gmail.com
5
+ #
6
+ # This file is part of logilab-astng.
7
+ #
8
+ # logilab-astng is free software: you can redistribute it and/or modify it
9
+ # under the terms of the GNU Lesser General Public License as published by the
10
+ # Free Software Foundation, either version 2.1 of the License, or (at your
11
+ # option) any later version.
12
+ #
13
+ # logilab-astng is distributed in the hope that it will be useful, but
14
+ # WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
15
+ # FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License
16
+ # for more details.
17
+ #
18
+ # You should have received a copy of the GNU Lesser General Public License along
19
+ # with logilab-astng. If not, see <http://www.gnu.org/licenses/>.
20
+
21
+
22
+ name = 'a'
23
+ _bla = 2
24
+ other = 'o'
25
+ class Aaa: pass
26
+
27
+ def func(): print 'yo'
28
+
29
+ __all__ = 'Aaa', '_bla', 'name'
@@ -0,0 +1,23 @@
1
+ #
2
+ # copyright 2003-2010 LOGILAB S.A. (Paris, FRANCE), all rights reserved.
3
+ # contact http://www.logilab.fr/ -- mailto:contact@logilab.fr
4
+ # copyright 2003-2010 Sylvain Thenault, all rights reserved.
5
+ # contact mailto:thenault@gmail.com
6
+ #
7
+ # This file is part of logilab-astng.
8
+ #
9
+ # logilab-astng is free software: you can redistribute it and/or modify it
10
+ # under the terms of the GNU Lesser General Public License as published by the
11
+ # Free Software Foundation, either version 2.1 of the License, or (at your
12
+ # option) any later version.
13
+ #
14
+ # logilab-astng is distributed in the hope that it will be useful, but
15
+ # WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
16
+ # FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License
17
+ # for more details.
18
+ #
19
+ # You should have received a copy of the GNU Lesser General Public License along
20
+ # with logilab-astng. If not, see <http://www.gnu.org/licenses/>.
21
+ """
22
+ Init
23
+ """
@@ -0,0 +1,30 @@
1
+ # copyright 2003-2010 LOGILAB S.A. (Paris, FRANCE), all rights reserved.
2
+ # contact http://www.logilab.fr/ -- mailto:contact@logilab.fr
3
+ # copyright 2003-2010 Sylvain Thenault, all rights reserved.
4
+ # contact mailto:thenault@gmail.com
5
+ #
6
+ # This file is part of logilab-astng.
7
+ #
8
+ # logilab-astng is free software: you can redistribute it and/or modify it
9
+ # under the terms of the GNU Lesser General Public License as published by the
10
+ # Free Software Foundation, either version 2.1 of the License, or (at your
11
+ # option) any later version.
12
+ #
13
+ # logilab-astng is distributed in the hope that it will be useful, but
14
+ # WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
15
+ # FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License
16
+ # for more details.
17
+ #
18
+ # You should have received a copy of the GNU Lesser General Public License along
19
+ # with logilab-astng. If not, see <http://www.gnu.org/licenses/>.
20
+ import SSL1
21
+ class MyConnection(SSL1.Connection):
22
+
23
+ """An SSL connection."""
24
+
25
+ def __init__(self, dummy):
26
+ print 'MyConnection init'
27
+
28
+ if __name__ == '__main__':
29
+ myConnection = MyConnection(' ')
30
+ raw_input('Press Enter to continue...')
@@ -0,0 +1,34 @@
1
+ """A multiline string
2
+ """
3
+
4
+ function('aeozrijz\
5
+ earzer', hop)
6
+ # XXX write test
7
+ x = [i for i in range(5)
8
+ if i % 4]
9
+
10
+ fonction(1,
11
+ 2,
12
+ 3,
13
+ 4)
14
+
15
+ def definition(a,
16
+ b,
17
+ c):
18
+ return a + b + c
19
+
20
+ class debile(dict,
21
+ object):
22
+ pass
23
+
24
+ if aaaa: pass
25
+ else:
26
+ aaaa,bbbb = 1,2
27
+ aaaa,bbbb = bbbb,aaaa
28
+ # XXX write test
29
+ hop = \
30
+ aaaa
31
+
32
+
33
+ __revision__.lower();
34
+
@@ -0,0 +1,90 @@
1
+ # -*- coding: Latin-1 -*-
2
+ """test module for astng
3
+ """
4
+
5
+ __revision__ = '$Id: module.py,v 1.1 2010/06/14 14:06:49 casa Exp $'
6
+
7
+ from logilab.common import modutils
8
+ from logilab.common.shellutils import Execute as spawn
9
+ from logilab.astng.utils import *
10
+ import os.path
11
+
12
+ MY_DICT = {}
13
+
14
+
15
+ def global_access(key, val):
16
+ """function test"""
17
+ local = 1
18
+ MY_DICT[key] = val
19
+ for i in val:
20
+ if i:
21
+ del MY_DICT[i]
22
+ continue
23
+ else:
24
+ break
25
+ else:
26
+ print '!!!'
27
+
28
+ class YO:
29
+ """hehe"""
30
+ a=1
31
+ def __init__(self):
32
+ try:
33
+ self.yo = 1
34
+ except ValueError, ex:
35
+ pass
36
+ except (NameError, TypeError):
37
+ raise XXXError()
38
+ except:
39
+ raise
40
+
41
+ #print '*****>',YO.__dict__
42
+ class YOUPI(YO):
43
+ class_attr = None
44
+
45
+ def __init__(self):
46
+ self.member = None
47
+
48
+ def method(self):
49
+ """method test"""
50
+ global MY_DICT
51
+ try:
52
+ MY_DICT = {}
53
+ local = None
54
+ autre = [a for a, b in MY_DICT if b]
55
+ if b in autre:
56
+ print 'yo',
57
+ elif a in autre:
58
+ print 'hehe'
59
+ global_access(local, val=autre)
60
+ finally:
61
+ return local
62
+
63
+ def static_method():
64
+ """static method test"""
65
+ assert MY_DICT, '???'
66
+ static_method = staticmethod(static_method)
67
+
68
+ def class_method(cls):
69
+ """class method test"""
70
+ exec a in b
71
+ class_method = classmethod(class_method)
72
+
73
+
74
+ def nested_args(a, (b, c, d)):
75
+ """nested arguments test"""
76
+ print a, b, c, d
77
+ while 1:
78
+ if a:
79
+ break
80
+ a += +1
81
+ else:
82
+ b += -2
83
+ if c:
84
+ d = a and b or c
85
+ else:
86
+ c = a and b or d
87
+ map(lambda x, y: (y, x), a)
88
+
89
+ redirect = nested_args
90
+
@@ -0,0 +1,112 @@
1
+ # copyright 2003-2010 LOGILAB S.A. (Paris, FRANCE), all rights reserved.
2
+ # contact http://www.logilab.fr/ -- mailto:contact@logilab.fr
3
+ # copyright 2003-2010 Sylvain Thenault, all rights reserved.
4
+ # contact mailto:thenault@gmail.com
5
+ #
6
+ # This file is part of logilab-astng.
7
+ #
8
+ # logilab-astng is free software: you can redistribute it and/or modify it
9
+ # under the terms of the GNU Lesser General Public License as published by the
10
+ # Free Software Foundation, either version 2.1 of the License, or (at your
11
+ # option) any later version.
12
+ #
13
+ # logilab-astng is distributed in the hope that it will be useful, but
14
+ # WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
15
+ # FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License
16
+ # for more details.
17
+ #
18
+ # You should have received a copy of the GNU Lesser General Public License along
19
+ # with logilab-astng. If not, see <http://www.gnu.org/licenses/>.
20
+ from __future__ import generators
21
+
22
+ from data.module import YO, YOUPI
23
+ import data
24
+
25
+ class Specialization(YOUPI, YO): pass
26
+
27
+ class Metaclass(type): pass
28
+
29
+ class Interface: pass
30
+
31
+ class MyIFace(Interface): pass
32
+
33
+ class AnotherIFace(Interface): pass
34
+
35
+ class MyException(Exception): pass
36
+ class MyError(MyException): pass
37
+
38
+ class AbstractClass(object):
39
+
40
+ def to_override(self, whatever):
41
+ raise NotImplementedError()
42
+
43
+ def return_something(self, param):
44
+ if param:
45
+ return 'toto'
46
+ return
47
+
48
+ class Concrete0:
49
+ __implements__ = MyIFace
50
+ class Concrete1:
51
+ __implements__ = MyIFace, AnotherIFace
52
+ class Concrete2:
53
+ __implements__ = (MyIFace,
54
+ AnotherIFace)
55
+ class Concrete23(Concrete1): pass
56
+
57
+ del YO.member
58
+
59
+ del YO
60
+ [SYN1, SYN2] = Concrete0, Concrete1
61
+ assert `1`
62
+ b = 1 | 2 & 3 ^ 8
63
+ bb = 1 | two | 6
64
+ ccc = one & two & three
65
+ dddd = x ^ o ^ r
66
+ exec 'c = 3'
67
+ exec 'c = 3' in {}, {}
68
+
69
+ def raise_string(a=2, *args, **kwargs):
70
+ raise 'pas glop'
71
+ raise Exception, 'yo'
72
+ yield 'coucou'
73
+
74
+ a = b + 2
75
+ c = b * 2
76
+ c = b / 2
77
+ c = b // 2
78
+ c = b - 2
79
+ c = b % 2
80
+ c = b ** 2
81
+ c = b << 2
82
+ c = b >> 2
83
+ c = ~b
84
+
85
+ c = not b
86
+
87
+ d = [c]
88
+ e = d[:]
89
+ e = d[a:b:c]
90
+
91
+ raise_string(*args, **kwargs)
92
+
93
+ print >> stream, 'bonjour'
94
+ print >> stream, 'salut',
95
+
96
+
97
+ def make_class(any, base=data.module.YO, *args, **kwargs):
98
+ """check base is correctly resolved to Concrete0"""
99
+ class Aaaa(base):
100
+ """dynamic class"""
101
+ return Aaaa
102
+
103
+ from os.path import abspath
104
+
105
+ import os as myos
106
+
107
+
108
+ class A:
109
+ pass
110
+
111
+ class A(A):
112
+ pass
@@ -0,0 +1,57 @@
1
+ # copyright 2003-2010 LOGILAB S.A. (Paris, FRANCE), all rights reserved.
2
+ # contact http://www.logilab.fr/ -- mailto:contact@logilab.fr
3
+ # copyright 2003-2010 Sylvain Thenault, all rights reserved.
4
+ # contact mailto:thenault@gmail.com
5
+ #
6
+ # This file is part of logilab-astng.
7
+ #
8
+ # logilab-astng is free software: you can redistribute it and/or modify it
9
+ # under the terms of the GNU Lesser General Public License as published by the
10
+ # Free Software Foundation, either version 2.1 of the License, or (at your
11
+ # option) any later version.
12
+ #
13
+ # logilab-astng is distributed in the hope that it will be useful, but
14
+ # WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
15
+ # FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License
16
+ # for more details.
17
+ #
18
+ # You should have received a copy of the GNU Lesser General Public License along
19
+ # with logilab-astng. If not, see <http://www.gnu.org/licenses/>.
20
+
21
+
22
+ import unittest
23
+
24
+
25
+ class TestCase(unittest.TestCase):
26
+
27
+ def setUp(self):
28
+ unittest.TestCase.setUp(self)
29
+
30
+
31
+ def tearDown(self):
32
+ unittest.TestCase.tearDown(self)
33
+
34
+ def testIt(self):
35
+ self.a = 10
36
+ self.xxx()
37
+
38
+
39
+ def xxx(self):
40
+ if False:
41
+ pass
42
+ print 'a'
43
+
44
+ if False:
45
+ pass
46
+ pass
47
+
48
+ if False:
49
+ pass
50
+ print 'rara'
51
+
52
+
53
+ if __name__ == '__main__':
54
+ print 'test2'
55
+ unittest.main()
56
+
57
+
@@ -0,0 +1,76 @@
1
+ # copyright 2003-2010 LOGILAB S.A. (Paris, FRANCE), all rights reserved.
2
+ # contact http://www.logilab.fr/ -- mailto:contact@logilab.fr
3
+ # copyright 2003-2010 Sylvain Thenault, all rights reserved.
4
+ # contact mailto:thenault@gmail.com
5
+ #
6
+ # This file is part of logilab-astng.
7
+ #
8
+ # logilab-astng is free software: you can redistribute it and/or modify it
9
+ # under the terms of the GNU Lesser General Public License as published by the
10
+ # Free Software Foundation, either version 2.1 of the License, or (at your
11
+ # option) any later version.
12
+ #
13
+ # logilab-astng is distributed in the hope that it will be useful, but
14
+ # WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
15
+ # FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License
16
+ # for more details.
17
+ #
18
+ # You should have received a copy of the GNU Lesser General Public License along
19
+ # with logilab-astng. If not, see <http://www.gnu.org/licenses/>.
20
+ from __future__ import generators
21
+
22
+ try:
23
+ enumerate = enumerate
24
+ except NameError:
25
+
26
+ def enumerate(iterable):
27
+ """emulates the python2.3 enumerate() function"""
28
+ i = 0
29
+ for val in iterable:
30
+ yield i, val
31
+ i += 1
32
+
33
+ def toto(value):
34
+ for k, v in value:
35
+ print v.get('yo')
36
+
37
+
38
+ import imp
39
+ fp, mpath, desc = imp.find_module('optparse',a)
40
+ s_opt = imp.load_module('std_optparse', fp, mpath, desc)
41
+
42
+ class OptionParser(s_opt.OptionParser):
43
+
44
+ def parse_args(self, args=None, values=None, real_optparse=False):
45
+ if real_optparse:
46
+ pass
47
+ ## return super(OptionParser, self).parse_args()
48
+ else:
49
+ import optcomp
50
+ optcomp.completion(self)
51
+
52
+
53
+ class Aaa(object):
54
+ """docstring"""
55
+ def __init__(self):
56
+ self.__setattr__('a','b')
57
+ pass
58
+
59
+ def one_public(self):
60
+ """docstring"""
61
+ pass
62
+
63
+ def another_public(self):
64
+ """docstring"""
65
+ pass
66
+
67
+ class Ccc(Aaa):
68
+ """docstring"""
69
+
70
+ class Ddd(Aaa):
71
+ """docstring"""
72
+ pass
73
+
74
+ class Eee(Ddd):
75
+ """docstring"""
76
+ pass
@@ -0,0 +1,28 @@
1
+ # copyright 2003-2010 LOGILAB S.A. (Paris, FRANCE), all rights reserved.
2
+ # contact http://www.logilab.fr/ -- mailto:contact@logilab.fr
3
+ # copyright 2003-2010 Sylvain Thenault, all rights reserved.
4
+ # contact mailto:thenault@gmail.com
5
+ #
6
+ # This file is part of logilab-astng.
7
+ #
8
+ # logilab-astng is free software: you can redistribute it and/or modify it
9
+ # under the terms of the GNU Lesser General Public License as published by the
10
+ # Free Software Foundation, either version 2.1 of the License, or (at your
11
+ # option) any later version.
12
+ #
13
+ # logilab-astng is distributed in the hope that it will be useful, but
14
+ # WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
15
+ # FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License
16
+ # for more details.
17
+ #
18
+ # You should have received a copy of the GNU Lesser General Public License along
19
+ # with logilab-astng. If not, see <http://www.gnu.org/licenses/>.
20
+
21
+
22
+ name = 'a'
23
+ _bla = 2
24
+ other = 'o'
25
+ class Aaa: pass
26
+
27
+ def func(): print 'yo'
28
+
@@ -0,0 +1,20 @@
1
+ #
2
+ # copyright 2003-2010 LOGILAB S.A. (Paris, FRANCE), all rights reserved.
3
+ # contact http://www.logilab.fr/ -- mailto:contact@logilab.fr
4
+ # copyright 2003-2010 Sylvain Thenault, all rights reserved.
5
+ # contact mailto:thenault@gmail.com
6
+ #
7
+ # This file is part of logilab-astng.
8
+ #
9
+ # logilab-astng is free software: you can redistribute it and/or modify it
10
+ # under the terms of the GNU Lesser General Public License as published by the
11
+ # Free Software Foundation, either version 2.1 of the License, or (at your
12
+ # option) any later version.
13
+ #
14
+ # logilab-astng is distributed in the hope that it will be useful, but
15
+ # WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
16
+ # FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License
17
+ # for more details.
18
+ #
19
+ # You should have received a copy of the GNU Lesser General Public License along
20
+ # with logilab-astng. If not, see <http://www.gnu.org/licenses/>.
@@ -0,0 +1,51 @@
1
+ # copyright 2003-2010 LOGILAB S.A. (Paris, FRANCE), all rights reserved.
2
+ # contact http://www.logilab.fr/ -- mailto:contact@logilab.fr
3
+ # copyright 2003-2010 Sylvain Thenault, all rights reserved.
4
+ # contact mailto:thenault@gmail.com
5
+ #
6
+ # This file is part of logilab-astng.
7
+ #
8
+ # logilab-astng is free software: you can redistribute it and/or modify it
9
+ # under the terms of the GNU Lesser General Public License as published by the
10
+ # Free Software Foundation, either version 2.1 of the License, or (at your
11
+ # option) any later version.
12
+ #
13
+ # logilab-astng is distributed in the hope that it will be useful, but
14
+ # WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
15
+ # FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License
16
+ # for more details.
17
+ #
18
+ # You should have received a copy of the GNU Lesser General Public License along
19
+ # with logilab-astng. If not, see <http://www.gnu.org/licenses/>.
20
+ """ docstring for file clientmodule.py """
21
+ from data2.suppliermodule_test import Interface as IFace, DoNothing
22
+
23
+ class Toto: pass
24
+
25
+ class Ancestor:
26
+ """ Ancestor method """
27
+ __implements__ = (IFace,)
28
+
29
+ def __init__(self, value):
30
+ local_variable = 0
31
+ self.attr = 'this method shouldn\'t have a docstring'
32
+ self.__value = value
33
+
34
+ def get_value(self):
35
+ """ nice docstring ;-) """
36
+ return self.__value
37
+
38
+ def set_value(self, value):
39
+ self.__value = value
40
+ return 'this method shouldn\'t have a docstring'
41
+
42
+ class Specialization(Ancestor):
43
+ TYPE = 'final class'
44
+ top = 'class'
45
+
46
+ def __init__(self, value, _id):
47
+ Ancestor.__init__(self, value)
48
+ self._id = _id
49
+ self.relation = DoNothing()
50
+ self.toto = Toto()
51
+