├── .cvsignore ├── COPYRIGHT ├── ChangeLog ├── HACKING ├── KNOWN_BUGS ├── MAINTAINERS ├── MANIFEST.in ├── NEWS ├── README ├── TODO ├── VERSION ├── bin └── pychecker ├── doc ├── moap-bisect ├── opcodes │ ├── SETUP_WITH │ ├── opcodes-2.3 │ ├── opcodes-2.4 │ ├── opcodes-2.5 │ ├── opcodes-2.6 │ └── opcodes-2.7 ├── release ├── test-anaconda └── test23 ├── index.html ├── misc └── pychecker-uninstalled ├── pychecker.doap ├── pychecker ├── .cvsignore ├── CodeChecks.py ├── Config.py ├── OP.py ├── OptionTypes.py ├── Options.ad ├── Stack.py ├── Warning.py ├── __init__.py ├── check.py ├── checker.py ├── function.py ├── msgs.py ├── options.py ├── pcmodules.py ├── printer.py ├── python.py ├── utils.py └── warn.py ├── pychecker2 ├── .cvsignore ├── Check.py ├── ClassChecks.py ├── ConditionalChecks.py ├── File.py ├── FormatStringChecks.py ├── ImportChecks.py ├── NOTES.txt ├── OpChecks.py ├── Options.py ├── ParseChecks.py ├── ReachableChecks.py ├── ReturnChecks.py ├── ScopeChecks.py ├── TestSupport.py ├── VariableChecks.py ├── Warning.py ├── __init__.py ├── main.py ├── scripts │ ├── check.sh │ ├── clean.sh │ ├── lib.sh │ └── pychecker2.sh ├── symbols.py ├── test.py ├── tests │ ├── .cvsignore │ ├── __init__.py │ ├── badparse.py │ ├── class.py │ ├── except.py │ ├── expected │ │ ├── incremental │ │ ├── no-importError │ │ ├── no-operator │ │ ├── no-operatorPlus │ │ ├── no-redefinedScope │ │ ├── no-selfName │ │ ├── no-shadowIdentifier │ │ ├── no-syntaxErrors │ │ ├── no-unknown │ │ ├── no-unpackedUsed │ │ ├── no-unused │ │ ├── normal │ │ ├── options │ │ ├── reportUnusedSelf │ │ ├── shadowBuiltins │ │ └── verbose │ ├── format.py │ ├── global.py │ ├── import.py │ ├── nested.py │ ├── op.py │ ├── self.py │ ├── shadow.py │ ├── unreachable.py │ ├── unused.py │ └── unusedImport.py ├── utest │ ├── .cvsignore │ ├── __init__.py │ ├── class.py │ ├── conditional.py │ ├── data.py │ ├── format.py │ ├── import.py │ ├── ops.py │ ├── parseerror.py │ ├── reachable.py │ ├── returns.py │ ├── scopes.py │ ├── self.py │ ├── shadow.py │ ├── unknown.py │ ├── unused.py │ ├── usage.py │ └── warnings.py └── util.py ├── pycheckrc ├── scripts ├── delete-duplicate-expected └── opcodes.py ├── setup.cfg ├── setup.py ├── test ├── .cvsignore ├── __init__.py ├── common.py ├── expected │ ├── future_divide │ ├── nested │ ├── test_DUP_TOPX │ ├── test_STORE_SLICE_PLUS_0 │ ├── test_dict │ ├── test_getmodule │ ├── test_global │ ├── test_global_g │ ├── test_nestedsuppression__objattrs │ ├── test_slice │ ├── test_string_format │ ├── test_zope_interface_q │ └── unused_import ├── input │ ├── .cvsignore │ ├── future_divide.py │ ├── getmodule │ │ ├── .cvsignore │ │ ├── A │ │ │ ├── .cvsignore │ │ │ ├── C.py │ │ │ └── __init__.py │ │ ├── B │ │ │ ├── .cvsignore │ │ │ ├── C.py │ │ │ └── __init__.py │ │ └── __init__.py │ ├── nested.py │ ├── nestedinit.py │ ├── nestedmodule.py │ ├── starimport.py │ ├── starimportfrom.py │ ├── test_DUP_TOPX.py │ ├── test_STORE_SLICE_PLUS_0.py │ ├── test_dict.py │ ├── test_getmodule.py │ ├── test_global.py │ ├── test_nestedsuppression.py │ ├── test_slice.py │ ├── test_string_format.py │ ├── test_zope_interface.py │ └── unused_import.py ├── main.py ├── test_dict.py ├── test_global.py ├── test_internal.py ├── test_module.py ├── test_pychecker_CodeChecks.py ├── test_pychecker_function.py ├── test_scope.py ├── test_slice.py ├── test_stdlib.py ├── test_string_format.py ├── test_suppressions.py └── test_unused.py ├── test_check.sh ├── test_expected ├── test1 ├── test1-2.3 ├── test1-2.5 ├── test10 ├── test100 ├── test101 ├── test102 ├── test103-2.2 ├── test103-2.4 ├── test11 ├── test12 ├── test13 ├── test14 ├── test15 ├── test16 ├── test17 ├── test17-2.4 ├── test18 ├── test19 ├── test2 ├── test20 ├── test20-2.4 ├── test20-2.6 ├── test21 ├── test22 ├── test22-2.5 ├── test23 ├── test24 ├── test25 ├── test26 ├── test27 ├── test27-2.2 ├── test28 ├── test29 ├── test3 ├── test3-2.2 ├── test3-2.3 ├── test3-2.4 ├── test30 ├── test31 ├── test32 ├── test33 ├── test34 ├── test34-2.2 ├── test34-2.3 ├── test34-2.4 ├── test35 ├── test36 ├── test37 ├── test38 ├── test39 ├── test39-2.2 ├── test4 ├── test40 ├── test41 ├── test42 ├── test43 ├── test44 ├── test45 ├── test46 ├── test47 ├── test48 ├── test48-2.5 ├── test49 ├── test5 ├── test50 ├── test51 ├── test52 ├── test53 ├── test53-2.5 ├── test54 ├── test55 ├── test56 ├── test57 ├── test58 ├── test58-2.2 ├── test58-2.3 ├── test59 ├── test6 ├── test60 ├── test61 ├── test62 ├── test63 ├── test64 ├── test65 ├── test66 ├── test67 ├── test68 ├── test68-2.4 ├── test68-2.6 ├── test69 ├── test7 ├── test70 ├── test71 ├── test71-2.4 ├── test72 ├── test73 ├── test74 ├── test74-2.4 ├── test74-2.6 ├── test75 ├── test75-2.2 ├── test76 ├── test77 ├── test78 ├── test79 ├── test8 ├── test80 ├── test80-2.2 ├── test81 ├── test82 ├── test83 ├── test84 ├── test85 ├── test86 ├── test87 ├── test87-2.5 ├── test88 ├── test88-2.4 ├── test88-2.5 ├── test88-2.6 ├── test89 ├── test89-2.2 ├── test9 ├── test90 ├── test92 ├── test93 ├── test94 ├── test95 ├── test96 ├── test97 ├── test98 └── test99 ├── test_input ├── .cvsignore ├── __init__.py ├── import24.py ├── import37.py ├── import44.py ├── import47.py ├── import56a.py ├── import56b.py ├── import69.py ├── import73.py ├── import98.py ├── pycheckrc ├── test1.py ├── test10.py ├── test100.py ├── test101.py ├── test102.py ├── test103.py ├── test11.py ├── test12.py ├── test13.py ├── test14.py ├── test15.py ├── test16.py ├── test17.py ├── test18.py ├── test19.py ├── test2.py ├── test20.py ├── test21.py ├── test22.py ├── test23.py ├── test24.py ├── test25.py ├── test26.py ├── test27.py ├── test28.py ├── test29.py ├── test3.py ├── test30.py ├── test31.py ├── test32.py ├── test33.py ├── test35.py ├── test36.py ├── test37.py ├── test38.py ├── test39.py ├── test4.py ├── test40.py ├── test41.py ├── test42.py ├── test43.py ├── test44.py ├── test45.py ├── test46.py ├── test47.py ├── test48.py ├── test49.py ├── test5.py ├── test50.py ├── test51.py ├── test52.py ├── test53.py ├── test54.py ├── test55.py ├── test56.py ├── test57.py ├── test58.py ├── test59.py ├── test6.py ├── test60.py ├── test61.py ├── test62.py ├── test63.py ├── test64.py ├── test65.py ├── test66.py ├── test67.py ├── test68.py ├── test69.py ├── test7.py ├── test72.py ├── test73.py ├── test74.py ├── test75.py ├── test76.py ├── test79.py ├── test8.py ├── test80.py ├── test81.py ├── test82.py ├── test83.py ├── test84.py ├── test85.py ├── test86.py ├── test87.py ├── test88.py ├── test89.py ├── test9.py ├── test90.py ├── test92.py ├── test93.py ├── test94.py ├── test95.py ├── test96.py ├── test97.py ├── test98.py └── test99.py └── test_todo ├── test34.py ├── test70.py ├── test71.py ├── test77.py └── test78.py /.cvsignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akaihola/PyChecker/HEAD/.cvsignore -------------------------------------------------------------------------------- /COPYRIGHT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akaihola/PyChecker/HEAD/COPYRIGHT -------------------------------------------------------------------------------- /ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akaihola/PyChecker/HEAD/ChangeLog -------------------------------------------------------------------------------- /HACKING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akaihola/PyChecker/HEAD/HACKING -------------------------------------------------------------------------------- /KNOWN_BUGS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akaihola/PyChecker/HEAD/KNOWN_BUGS -------------------------------------------------------------------------------- /MAINTAINERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akaihola/PyChecker/HEAD/MAINTAINERS -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akaihola/PyChecker/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /NEWS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akaihola/PyChecker/HEAD/NEWS -------------------------------------------------------------------------------- /README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akaihola/PyChecker/HEAD/README -------------------------------------------------------------------------------- /TODO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akaihola/PyChecker/HEAD/TODO -------------------------------------------------------------------------------- /VERSION: -------------------------------------------------------------------------------- 1 | 0.8.18 2 | -------------------------------------------------------------------------------- /bin/pychecker: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akaihola/PyChecker/HEAD/bin/pychecker -------------------------------------------------------------------------------- /doc/moap-bisect: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akaihola/PyChecker/HEAD/doc/moap-bisect -------------------------------------------------------------------------------- /doc/opcodes/SETUP_WITH: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akaihola/PyChecker/HEAD/doc/opcodes/SETUP_WITH -------------------------------------------------------------------------------- /doc/opcodes/opcodes-2.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akaihola/PyChecker/HEAD/doc/opcodes/opcodes-2.3 -------------------------------------------------------------------------------- /doc/opcodes/opcodes-2.4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akaihola/PyChecker/HEAD/doc/opcodes/opcodes-2.4 -------------------------------------------------------------------------------- /doc/opcodes/opcodes-2.5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akaihola/PyChecker/HEAD/doc/opcodes/opcodes-2.5 -------------------------------------------------------------------------------- /doc/opcodes/opcodes-2.6: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akaihola/PyChecker/HEAD/doc/opcodes/opcodes-2.6 -------------------------------------------------------------------------------- /doc/opcodes/opcodes-2.7: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akaihola/PyChecker/HEAD/doc/opcodes/opcodes-2.7 -------------------------------------------------------------------------------- /doc/release: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akaihola/PyChecker/HEAD/doc/release -------------------------------------------------------------------------------- /doc/test-anaconda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akaihola/PyChecker/HEAD/doc/test-anaconda -------------------------------------------------------------------------------- /doc/test23: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akaihola/PyChecker/HEAD/doc/test23 -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akaihola/PyChecker/HEAD/index.html -------------------------------------------------------------------------------- /misc/pychecker-uninstalled: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akaihola/PyChecker/HEAD/misc/pychecker-uninstalled -------------------------------------------------------------------------------- /pychecker.doap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akaihola/PyChecker/HEAD/pychecker.doap -------------------------------------------------------------------------------- /pychecker/.cvsignore: -------------------------------------------------------------------------------- 1 | *.pyc 2 | -------------------------------------------------------------------------------- /pychecker/CodeChecks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akaihola/PyChecker/HEAD/pychecker/CodeChecks.py -------------------------------------------------------------------------------- /pychecker/Config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akaihola/PyChecker/HEAD/pychecker/Config.py -------------------------------------------------------------------------------- /pychecker/OP.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akaihola/PyChecker/HEAD/pychecker/OP.py -------------------------------------------------------------------------------- /pychecker/OptionTypes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akaihola/PyChecker/HEAD/pychecker/OptionTypes.py -------------------------------------------------------------------------------- /pychecker/Options.ad: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akaihola/PyChecker/HEAD/pychecker/Options.ad -------------------------------------------------------------------------------- /pychecker/Stack.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akaihola/PyChecker/HEAD/pychecker/Stack.py -------------------------------------------------------------------------------- /pychecker/Warning.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akaihola/PyChecker/HEAD/pychecker/Warning.py -------------------------------------------------------------------------------- /pychecker/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akaihola/PyChecker/HEAD/pychecker/__init__.py -------------------------------------------------------------------------------- /pychecker/check.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akaihola/PyChecker/HEAD/pychecker/check.py -------------------------------------------------------------------------------- /pychecker/checker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akaihola/PyChecker/HEAD/pychecker/checker.py -------------------------------------------------------------------------------- /pychecker/function.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akaihola/PyChecker/HEAD/pychecker/function.py -------------------------------------------------------------------------------- /pychecker/msgs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akaihola/PyChecker/HEAD/pychecker/msgs.py -------------------------------------------------------------------------------- /pychecker/options.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akaihola/PyChecker/HEAD/pychecker/options.py -------------------------------------------------------------------------------- /pychecker/pcmodules.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akaihola/PyChecker/HEAD/pychecker/pcmodules.py -------------------------------------------------------------------------------- /pychecker/printer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akaihola/PyChecker/HEAD/pychecker/printer.py -------------------------------------------------------------------------------- /pychecker/python.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akaihola/PyChecker/HEAD/pychecker/python.py -------------------------------------------------------------------------------- /pychecker/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akaihola/PyChecker/HEAD/pychecker/utils.py -------------------------------------------------------------------------------- /pychecker/warn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akaihola/PyChecker/HEAD/pychecker/warn.py -------------------------------------------------------------------------------- /pychecker2/.cvsignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akaihola/PyChecker/HEAD/pychecker2/.cvsignore -------------------------------------------------------------------------------- /pychecker2/Check.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akaihola/PyChecker/HEAD/pychecker2/Check.py -------------------------------------------------------------------------------- /pychecker2/ClassChecks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akaihola/PyChecker/HEAD/pychecker2/ClassChecks.py -------------------------------------------------------------------------------- /pychecker2/ConditionalChecks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akaihola/PyChecker/HEAD/pychecker2/ConditionalChecks.py -------------------------------------------------------------------------------- /pychecker2/File.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akaihola/PyChecker/HEAD/pychecker2/File.py -------------------------------------------------------------------------------- /pychecker2/FormatStringChecks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akaihola/PyChecker/HEAD/pychecker2/FormatStringChecks.py -------------------------------------------------------------------------------- /pychecker2/ImportChecks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akaihola/PyChecker/HEAD/pychecker2/ImportChecks.py -------------------------------------------------------------------------------- /pychecker2/NOTES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akaihola/PyChecker/HEAD/pychecker2/NOTES.txt -------------------------------------------------------------------------------- /pychecker2/OpChecks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akaihola/PyChecker/HEAD/pychecker2/OpChecks.py -------------------------------------------------------------------------------- /pychecker2/Options.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akaihola/PyChecker/HEAD/pychecker2/Options.py -------------------------------------------------------------------------------- /pychecker2/ParseChecks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akaihola/PyChecker/HEAD/pychecker2/ParseChecks.py -------------------------------------------------------------------------------- /pychecker2/ReachableChecks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akaihola/PyChecker/HEAD/pychecker2/ReachableChecks.py -------------------------------------------------------------------------------- /pychecker2/ReturnChecks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akaihola/PyChecker/HEAD/pychecker2/ReturnChecks.py -------------------------------------------------------------------------------- /pychecker2/ScopeChecks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akaihola/PyChecker/HEAD/pychecker2/ScopeChecks.py -------------------------------------------------------------------------------- /pychecker2/TestSupport.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akaihola/PyChecker/HEAD/pychecker2/TestSupport.py -------------------------------------------------------------------------------- /pychecker2/VariableChecks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akaihola/PyChecker/HEAD/pychecker2/VariableChecks.py -------------------------------------------------------------------------------- /pychecker2/Warning.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akaihola/PyChecker/HEAD/pychecker2/Warning.py -------------------------------------------------------------------------------- /pychecker2/__init__.py: -------------------------------------------------------------------------------- 1 | "" 2 | -------------------------------------------------------------------------------- /pychecker2/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akaihola/PyChecker/HEAD/pychecker2/main.py -------------------------------------------------------------------------------- /pychecker2/scripts/check.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akaihola/PyChecker/HEAD/pychecker2/scripts/check.sh -------------------------------------------------------------------------------- /pychecker2/scripts/clean.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akaihola/PyChecker/HEAD/pychecker2/scripts/clean.sh -------------------------------------------------------------------------------- /pychecker2/scripts/lib.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akaihola/PyChecker/HEAD/pychecker2/scripts/lib.sh -------------------------------------------------------------------------------- /pychecker2/scripts/pychecker2.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akaihola/PyChecker/HEAD/pychecker2/scripts/pychecker2.sh -------------------------------------------------------------------------------- /pychecker2/symbols.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akaihola/PyChecker/HEAD/pychecker2/symbols.py -------------------------------------------------------------------------------- /pychecker2/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akaihola/PyChecker/HEAD/pychecker2/test.py -------------------------------------------------------------------------------- /pychecker2/tests/.cvsignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akaihola/PyChecker/HEAD/pychecker2/tests/.cvsignore -------------------------------------------------------------------------------- /pychecker2/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pychecker2/tests/badparse.py: -------------------------------------------------------------------------------- 1 | === 2 | -------------------------------------------------------------------------------- /pychecker2/tests/class.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akaihola/PyChecker/HEAD/pychecker2/tests/class.py -------------------------------------------------------------------------------- /pychecker2/tests/except.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akaihola/PyChecker/HEAD/pychecker2/tests/except.py -------------------------------------------------------------------------------- /pychecker2/tests/expected/incremental: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akaihola/PyChecker/HEAD/pychecker2/tests/expected/incremental -------------------------------------------------------------------------------- /pychecker2/tests/expected/no-importError: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akaihola/PyChecker/HEAD/pychecker2/tests/expected/no-importError -------------------------------------------------------------------------------- /pychecker2/tests/expected/no-operator: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akaihola/PyChecker/HEAD/pychecker2/tests/expected/no-operator -------------------------------------------------------------------------------- /pychecker2/tests/expected/no-operatorPlus: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akaihola/PyChecker/HEAD/pychecker2/tests/expected/no-operatorPlus -------------------------------------------------------------------------------- /pychecker2/tests/expected/no-redefinedScope: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akaihola/PyChecker/HEAD/pychecker2/tests/expected/no-redefinedScope -------------------------------------------------------------------------------- /pychecker2/tests/expected/no-selfName: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akaihola/PyChecker/HEAD/pychecker2/tests/expected/no-selfName -------------------------------------------------------------------------------- /pychecker2/tests/expected/no-shadowIdentifier: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akaihola/PyChecker/HEAD/pychecker2/tests/expected/no-shadowIdentifier -------------------------------------------------------------------------------- /pychecker2/tests/expected/no-syntaxErrors: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akaihola/PyChecker/HEAD/pychecker2/tests/expected/no-syntaxErrors -------------------------------------------------------------------------------- /pychecker2/tests/expected/no-unknown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akaihola/PyChecker/HEAD/pychecker2/tests/expected/no-unknown -------------------------------------------------------------------------------- /pychecker2/tests/expected/no-unpackedUsed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akaihola/PyChecker/HEAD/pychecker2/tests/expected/no-unpackedUsed -------------------------------------------------------------------------------- /pychecker2/tests/expected/no-unused: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akaihola/PyChecker/HEAD/pychecker2/tests/expected/no-unused -------------------------------------------------------------------------------- /pychecker2/tests/expected/normal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akaihola/PyChecker/HEAD/pychecker2/tests/expected/normal -------------------------------------------------------------------------------- /pychecker2/tests/expected/options: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akaihola/PyChecker/HEAD/pychecker2/tests/expected/options -------------------------------------------------------------------------------- /pychecker2/tests/expected/reportUnusedSelf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akaihola/PyChecker/HEAD/pychecker2/tests/expected/reportUnusedSelf -------------------------------------------------------------------------------- /pychecker2/tests/expected/shadowBuiltins: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akaihola/PyChecker/HEAD/pychecker2/tests/expected/shadowBuiltins -------------------------------------------------------------------------------- /pychecker2/tests/expected/verbose: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akaihola/PyChecker/HEAD/pychecker2/tests/expected/verbose -------------------------------------------------------------------------------- /pychecker2/tests/format.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akaihola/PyChecker/HEAD/pychecker2/tests/format.py -------------------------------------------------------------------------------- /pychecker2/tests/global.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akaihola/PyChecker/HEAD/pychecker2/tests/global.py -------------------------------------------------------------------------------- /pychecker2/tests/import.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akaihola/PyChecker/HEAD/pychecker2/tests/import.py -------------------------------------------------------------------------------- /pychecker2/tests/nested.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akaihola/PyChecker/HEAD/pychecker2/tests/nested.py -------------------------------------------------------------------------------- /pychecker2/tests/op.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akaihola/PyChecker/HEAD/pychecker2/tests/op.py -------------------------------------------------------------------------------- /pychecker2/tests/self.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akaihola/PyChecker/HEAD/pychecker2/tests/self.py -------------------------------------------------------------------------------- /pychecker2/tests/shadow.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akaihola/PyChecker/HEAD/pychecker2/tests/shadow.py -------------------------------------------------------------------------------- /pychecker2/tests/unreachable.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akaihola/PyChecker/HEAD/pychecker2/tests/unreachable.py -------------------------------------------------------------------------------- /pychecker2/tests/unused.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akaihola/PyChecker/HEAD/pychecker2/tests/unused.py -------------------------------------------------------------------------------- /pychecker2/tests/unusedImport.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akaihola/PyChecker/HEAD/pychecker2/tests/unusedImport.py -------------------------------------------------------------------------------- /pychecker2/utest/.cvsignore: -------------------------------------------------------------------------------- 1 | *.pyc 2 | -------------------------------------------------------------------------------- /pychecker2/utest/__init__.py: -------------------------------------------------------------------------------- 1 | "" 2 | -------------------------------------------------------------------------------- /pychecker2/utest/class.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akaihola/PyChecker/HEAD/pychecker2/utest/class.py -------------------------------------------------------------------------------- /pychecker2/utest/conditional.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akaihola/PyChecker/HEAD/pychecker2/utest/conditional.py -------------------------------------------------------------------------------- /pychecker2/utest/data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akaihola/PyChecker/HEAD/pychecker2/utest/data.py -------------------------------------------------------------------------------- /pychecker2/utest/format.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akaihola/PyChecker/HEAD/pychecker2/utest/format.py -------------------------------------------------------------------------------- /pychecker2/utest/import.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akaihola/PyChecker/HEAD/pychecker2/utest/import.py -------------------------------------------------------------------------------- /pychecker2/utest/ops.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akaihola/PyChecker/HEAD/pychecker2/utest/ops.py -------------------------------------------------------------------------------- /pychecker2/utest/parseerror.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akaihola/PyChecker/HEAD/pychecker2/utest/parseerror.py -------------------------------------------------------------------------------- /pychecker2/utest/reachable.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akaihola/PyChecker/HEAD/pychecker2/utest/reachable.py -------------------------------------------------------------------------------- /pychecker2/utest/returns.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akaihola/PyChecker/HEAD/pychecker2/utest/returns.py -------------------------------------------------------------------------------- /pychecker2/utest/scopes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akaihola/PyChecker/HEAD/pychecker2/utest/scopes.py -------------------------------------------------------------------------------- /pychecker2/utest/self.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akaihola/PyChecker/HEAD/pychecker2/utest/self.py -------------------------------------------------------------------------------- /pychecker2/utest/shadow.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akaihola/PyChecker/HEAD/pychecker2/utest/shadow.py -------------------------------------------------------------------------------- /pychecker2/utest/unknown.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akaihola/PyChecker/HEAD/pychecker2/utest/unknown.py -------------------------------------------------------------------------------- /pychecker2/utest/unused.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akaihola/PyChecker/HEAD/pychecker2/utest/unused.py -------------------------------------------------------------------------------- /pychecker2/utest/usage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akaihola/PyChecker/HEAD/pychecker2/utest/usage.py -------------------------------------------------------------------------------- /pychecker2/utest/warnings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akaihola/PyChecker/HEAD/pychecker2/utest/warnings.py -------------------------------------------------------------------------------- /pychecker2/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akaihola/PyChecker/HEAD/pychecker2/util.py -------------------------------------------------------------------------------- /pycheckrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akaihola/PyChecker/HEAD/pycheckrc -------------------------------------------------------------------------------- /scripts/delete-duplicate-expected: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akaihola/PyChecker/HEAD/scripts/delete-duplicate-expected -------------------------------------------------------------------------------- /scripts/opcodes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akaihola/PyChecker/HEAD/scripts/opcodes.py -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akaihola/PyChecker/HEAD/setup.cfg -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akaihola/PyChecker/HEAD/setup.py -------------------------------------------------------------------------------- /test/.cvsignore: -------------------------------------------------------------------------------- 1 | *.pyc 2 | -------------------------------------------------------------------------------- /test/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/common.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akaihola/PyChecker/HEAD/test/common.py -------------------------------------------------------------------------------- /test/expected/future_divide: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akaihola/PyChecker/HEAD/test/expected/future_divide -------------------------------------------------------------------------------- /test/expected/nested: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akaihola/PyChecker/HEAD/test/expected/nested -------------------------------------------------------------------------------- /test/expected/test_DUP_TOPX: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akaihola/PyChecker/HEAD/test/expected/test_DUP_TOPX -------------------------------------------------------------------------------- /test/expected/test_STORE_SLICE_PLUS_0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akaihola/PyChecker/HEAD/test/expected/test_STORE_SLICE_PLUS_0 -------------------------------------------------------------------------------- /test/expected/test_dict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akaihola/PyChecker/HEAD/test/expected/test_dict -------------------------------------------------------------------------------- /test/expected/test_getmodule: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akaihola/PyChecker/HEAD/test/expected/test_getmodule -------------------------------------------------------------------------------- /test/expected/test_global: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akaihola/PyChecker/HEAD/test/expected/test_global -------------------------------------------------------------------------------- /test/expected/test_global_g: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akaihola/PyChecker/HEAD/test/expected/test_global_g -------------------------------------------------------------------------------- /test/expected/test_nestedsuppression__objattrs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akaihola/PyChecker/HEAD/test/expected/test_nestedsuppression__objattrs -------------------------------------------------------------------------------- /test/expected/test_slice: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akaihola/PyChecker/HEAD/test/expected/test_slice -------------------------------------------------------------------------------- /test/expected/test_string_format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akaihola/PyChecker/HEAD/test/expected/test_string_format -------------------------------------------------------------------------------- /test/expected/test_zope_interface_q: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akaihola/PyChecker/HEAD/test/expected/test_zope_interface_q -------------------------------------------------------------------------------- /test/expected/unused_import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akaihola/PyChecker/HEAD/test/expected/unused_import -------------------------------------------------------------------------------- /test/input/.cvsignore: -------------------------------------------------------------------------------- 1 | *.pyc 2 | -------------------------------------------------------------------------------- /test/input/future_divide.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akaihola/PyChecker/HEAD/test/input/future_divide.py -------------------------------------------------------------------------------- /test/input/getmodule/.cvsignore: -------------------------------------------------------------------------------- 1 | *.pyc 2 | -------------------------------------------------------------------------------- /test/input/getmodule/A/.cvsignore: -------------------------------------------------------------------------------- 1 | *.pyc 2 | -------------------------------------------------------------------------------- /test/input/getmodule/A/C.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akaihola/PyChecker/HEAD/test/input/getmodule/A/C.py -------------------------------------------------------------------------------- /test/input/getmodule/A/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/input/getmodule/B/.cvsignore: -------------------------------------------------------------------------------- 1 | *.pyc 2 | -------------------------------------------------------------------------------- /test/input/getmodule/B/C.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akaihola/PyChecker/HEAD/test/input/getmodule/B/C.py -------------------------------------------------------------------------------- /test/input/getmodule/B/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/input/getmodule/__init__.py: -------------------------------------------------------------------------------- 1 | 'd' 2 | -------------------------------------------------------------------------------- /test/input/nested.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akaihola/PyChecker/HEAD/test/input/nested.py -------------------------------------------------------------------------------- /test/input/nestedinit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akaihola/PyChecker/HEAD/test/input/nestedinit.py -------------------------------------------------------------------------------- /test/input/nestedmodule.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akaihola/PyChecker/HEAD/test/input/nestedmodule.py -------------------------------------------------------------------------------- /test/input/starimport.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akaihola/PyChecker/HEAD/test/input/starimport.py -------------------------------------------------------------------------------- /test/input/starimportfrom.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akaihola/PyChecker/HEAD/test/input/starimportfrom.py -------------------------------------------------------------------------------- /test/input/test_DUP_TOPX.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akaihola/PyChecker/HEAD/test/input/test_DUP_TOPX.py -------------------------------------------------------------------------------- /test/input/test_STORE_SLICE_PLUS_0.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akaihola/PyChecker/HEAD/test/input/test_STORE_SLICE_PLUS_0.py -------------------------------------------------------------------------------- /test/input/test_dict.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akaihola/PyChecker/HEAD/test/input/test_dict.py -------------------------------------------------------------------------------- /test/input/test_getmodule.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akaihola/PyChecker/HEAD/test/input/test_getmodule.py -------------------------------------------------------------------------------- /test/input/test_global.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akaihola/PyChecker/HEAD/test/input/test_global.py -------------------------------------------------------------------------------- /test/input/test_nestedsuppression.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akaihola/PyChecker/HEAD/test/input/test_nestedsuppression.py -------------------------------------------------------------------------------- /test/input/test_slice.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akaihola/PyChecker/HEAD/test/input/test_slice.py -------------------------------------------------------------------------------- /test/input/test_string_format.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akaihola/PyChecker/HEAD/test/input/test_string_format.py -------------------------------------------------------------------------------- /test/input/test_zope_interface.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akaihola/PyChecker/HEAD/test/input/test_zope_interface.py -------------------------------------------------------------------------------- /test/input/unused_import.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akaihola/PyChecker/HEAD/test/input/unused_import.py -------------------------------------------------------------------------------- /test/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akaihola/PyChecker/HEAD/test/main.py -------------------------------------------------------------------------------- /test/test_dict.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akaihola/PyChecker/HEAD/test/test_dict.py -------------------------------------------------------------------------------- /test/test_global.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akaihola/PyChecker/HEAD/test/test_global.py -------------------------------------------------------------------------------- /test/test_internal.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akaihola/PyChecker/HEAD/test/test_internal.py -------------------------------------------------------------------------------- /test/test_module.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akaihola/PyChecker/HEAD/test/test_module.py -------------------------------------------------------------------------------- /test/test_pychecker_CodeChecks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akaihola/PyChecker/HEAD/test/test_pychecker_CodeChecks.py -------------------------------------------------------------------------------- /test/test_pychecker_function.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akaihola/PyChecker/HEAD/test/test_pychecker_function.py -------------------------------------------------------------------------------- /test/test_scope.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akaihola/PyChecker/HEAD/test/test_scope.py -------------------------------------------------------------------------------- /test/test_slice.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akaihola/PyChecker/HEAD/test/test_slice.py -------------------------------------------------------------------------------- /test/test_stdlib.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akaihola/PyChecker/HEAD/test/test_stdlib.py -------------------------------------------------------------------------------- /test/test_string_format.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akaihola/PyChecker/HEAD/test/test_string_format.py -------------------------------------------------------------------------------- /test/test_suppressions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akaihola/PyChecker/HEAD/test/test_suppressions.py -------------------------------------------------------------------------------- /test/test_unused.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akaihola/PyChecker/HEAD/test/test_unused.py -------------------------------------------------------------------------------- /test_check.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akaihola/PyChecker/HEAD/test_check.sh -------------------------------------------------------------------------------- /test_expected/test1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akaihola/PyChecker/HEAD/test_expected/test1 -------------------------------------------------------------------------------- /test_expected/test1-2.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akaihola/PyChecker/HEAD/test_expected/test1-2.3 -------------------------------------------------------------------------------- /test_expected/test1-2.5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akaihola/PyChecker/HEAD/test_expected/test1-2.5 -------------------------------------------------------------------------------- /test_expected/test10: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akaihola/PyChecker/HEAD/test_expected/test10 -------------------------------------------------------------------------------- /test_expected/test100: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akaihola/PyChecker/HEAD/test_expected/test100 -------------------------------------------------------------------------------- /test_expected/test101: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akaihola/PyChecker/HEAD/test_expected/test101 -------------------------------------------------------------------------------- /test_expected/test102: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akaihola/PyChecker/HEAD/test_expected/test102 -------------------------------------------------------------------------------- /test_expected/test103-2.2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akaihola/PyChecker/HEAD/test_expected/test103-2.2 -------------------------------------------------------------------------------- /test_expected/test103-2.4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akaihola/PyChecker/HEAD/test_expected/test103-2.4 -------------------------------------------------------------------------------- /test_expected/test11: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akaihola/PyChecker/HEAD/test_expected/test11 -------------------------------------------------------------------------------- /test_expected/test12: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akaihola/PyChecker/HEAD/test_expected/test12 -------------------------------------------------------------------------------- /test_expected/test13: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akaihola/PyChecker/HEAD/test_expected/test13 -------------------------------------------------------------------------------- /test_expected/test14: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akaihola/PyChecker/HEAD/test_expected/test14 -------------------------------------------------------------------------------- /test_expected/test15: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akaihola/PyChecker/HEAD/test_expected/test15 -------------------------------------------------------------------------------- /test_expected/test16: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akaihola/PyChecker/HEAD/test_expected/test16 -------------------------------------------------------------------------------- /test_expected/test17: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akaihola/PyChecker/HEAD/test_expected/test17 -------------------------------------------------------------------------------- /test_expected/test17-2.4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akaihola/PyChecker/HEAD/test_expected/test17-2.4 -------------------------------------------------------------------------------- /test_expected/test18: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akaihola/PyChecker/HEAD/test_expected/test18 -------------------------------------------------------------------------------- /test_expected/test19: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akaihola/PyChecker/HEAD/test_expected/test19 -------------------------------------------------------------------------------- /test_expected/test2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akaihola/PyChecker/HEAD/test_expected/test2 -------------------------------------------------------------------------------- /test_expected/test20: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akaihola/PyChecker/HEAD/test_expected/test20 -------------------------------------------------------------------------------- /test_expected/test20-2.4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akaihola/PyChecker/HEAD/test_expected/test20-2.4 -------------------------------------------------------------------------------- /test_expected/test20-2.6: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akaihola/PyChecker/HEAD/test_expected/test20-2.6 -------------------------------------------------------------------------------- /test_expected/test21: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akaihola/PyChecker/HEAD/test_expected/test21 -------------------------------------------------------------------------------- /test_expected/test22: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akaihola/PyChecker/HEAD/test_expected/test22 -------------------------------------------------------------------------------- /test_expected/test22-2.5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akaihola/PyChecker/HEAD/test_expected/test22-2.5 -------------------------------------------------------------------------------- /test_expected/test23: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akaihola/PyChecker/HEAD/test_expected/test23 -------------------------------------------------------------------------------- /test_expected/test24: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akaihola/PyChecker/HEAD/test_expected/test24 -------------------------------------------------------------------------------- /test_expected/test25: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akaihola/PyChecker/HEAD/test_expected/test25 -------------------------------------------------------------------------------- /test_expected/test26: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akaihola/PyChecker/HEAD/test_expected/test26 -------------------------------------------------------------------------------- /test_expected/test27: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akaihola/PyChecker/HEAD/test_expected/test27 -------------------------------------------------------------------------------- /test_expected/test27-2.2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akaihola/PyChecker/HEAD/test_expected/test27-2.2 -------------------------------------------------------------------------------- /test_expected/test28: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akaihola/PyChecker/HEAD/test_expected/test28 -------------------------------------------------------------------------------- /test_expected/test29: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akaihola/PyChecker/HEAD/test_expected/test29 -------------------------------------------------------------------------------- /test_expected/test3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akaihola/PyChecker/HEAD/test_expected/test3 -------------------------------------------------------------------------------- /test_expected/test3-2.2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akaihola/PyChecker/HEAD/test_expected/test3-2.2 -------------------------------------------------------------------------------- /test_expected/test3-2.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akaihola/PyChecker/HEAD/test_expected/test3-2.3 -------------------------------------------------------------------------------- /test_expected/test3-2.4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akaihola/PyChecker/HEAD/test_expected/test3-2.4 -------------------------------------------------------------------------------- /test_expected/test30: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akaihola/PyChecker/HEAD/test_expected/test30 -------------------------------------------------------------------------------- /test_expected/test31: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akaihola/PyChecker/HEAD/test_expected/test31 -------------------------------------------------------------------------------- /test_expected/test32: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akaihola/PyChecker/HEAD/test_expected/test32 -------------------------------------------------------------------------------- /test_expected/test33: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akaihola/PyChecker/HEAD/test_expected/test33 -------------------------------------------------------------------------------- /test_expected/test34: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akaihola/PyChecker/HEAD/test_expected/test34 -------------------------------------------------------------------------------- /test_expected/test34-2.2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akaihola/PyChecker/HEAD/test_expected/test34-2.2 -------------------------------------------------------------------------------- /test_expected/test34-2.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akaihola/PyChecker/HEAD/test_expected/test34-2.3 -------------------------------------------------------------------------------- /test_expected/test34-2.4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akaihola/PyChecker/HEAD/test_expected/test34-2.4 -------------------------------------------------------------------------------- /test_expected/test35: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akaihola/PyChecker/HEAD/test_expected/test35 -------------------------------------------------------------------------------- /test_expected/test36: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akaihola/PyChecker/HEAD/test_expected/test36 -------------------------------------------------------------------------------- /test_expected/test37: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akaihola/PyChecker/HEAD/test_expected/test37 -------------------------------------------------------------------------------- /test_expected/test38: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akaihola/PyChecker/HEAD/test_expected/test38 -------------------------------------------------------------------------------- /test_expected/test39: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akaihola/PyChecker/HEAD/test_expected/test39 -------------------------------------------------------------------------------- /test_expected/test39-2.2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akaihola/PyChecker/HEAD/test_expected/test39-2.2 -------------------------------------------------------------------------------- /test_expected/test4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akaihola/PyChecker/HEAD/test_expected/test4 -------------------------------------------------------------------------------- /test_expected/test40: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akaihola/PyChecker/HEAD/test_expected/test40 -------------------------------------------------------------------------------- /test_expected/test41: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akaihola/PyChecker/HEAD/test_expected/test41 -------------------------------------------------------------------------------- /test_expected/test42: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akaihola/PyChecker/HEAD/test_expected/test42 -------------------------------------------------------------------------------- /test_expected/test43: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akaihola/PyChecker/HEAD/test_expected/test43 -------------------------------------------------------------------------------- /test_expected/test44: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akaihola/PyChecker/HEAD/test_expected/test44 -------------------------------------------------------------------------------- /test_expected/test45: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akaihola/PyChecker/HEAD/test_expected/test45 -------------------------------------------------------------------------------- /test_expected/test46: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akaihola/PyChecker/HEAD/test_expected/test46 -------------------------------------------------------------------------------- /test_expected/test47: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akaihola/PyChecker/HEAD/test_expected/test47 -------------------------------------------------------------------------------- /test_expected/test48: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akaihola/PyChecker/HEAD/test_expected/test48 -------------------------------------------------------------------------------- /test_expected/test48-2.5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akaihola/PyChecker/HEAD/test_expected/test48-2.5 -------------------------------------------------------------------------------- /test_expected/test49: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akaihola/PyChecker/HEAD/test_expected/test49 -------------------------------------------------------------------------------- /test_expected/test5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akaihola/PyChecker/HEAD/test_expected/test5 -------------------------------------------------------------------------------- /test_expected/test50: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akaihola/PyChecker/HEAD/test_expected/test50 -------------------------------------------------------------------------------- /test_expected/test51: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akaihola/PyChecker/HEAD/test_expected/test51 -------------------------------------------------------------------------------- /test_expected/test52: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akaihola/PyChecker/HEAD/test_expected/test52 -------------------------------------------------------------------------------- /test_expected/test53: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akaihola/PyChecker/HEAD/test_expected/test53 -------------------------------------------------------------------------------- /test_expected/test53-2.5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akaihola/PyChecker/HEAD/test_expected/test53-2.5 -------------------------------------------------------------------------------- /test_expected/test54: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akaihola/PyChecker/HEAD/test_expected/test54 -------------------------------------------------------------------------------- /test_expected/test55: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akaihola/PyChecker/HEAD/test_expected/test55 -------------------------------------------------------------------------------- /test_expected/test56: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akaihola/PyChecker/HEAD/test_expected/test56 -------------------------------------------------------------------------------- /test_expected/test57: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akaihola/PyChecker/HEAD/test_expected/test57 -------------------------------------------------------------------------------- /test_expected/test58: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akaihola/PyChecker/HEAD/test_expected/test58 -------------------------------------------------------------------------------- /test_expected/test58-2.2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akaihola/PyChecker/HEAD/test_expected/test58-2.2 -------------------------------------------------------------------------------- /test_expected/test58-2.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akaihola/PyChecker/HEAD/test_expected/test58-2.3 -------------------------------------------------------------------------------- /test_expected/test59: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akaihola/PyChecker/HEAD/test_expected/test59 -------------------------------------------------------------------------------- /test_expected/test6: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akaihola/PyChecker/HEAD/test_expected/test6 -------------------------------------------------------------------------------- /test_expected/test60: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akaihola/PyChecker/HEAD/test_expected/test60 -------------------------------------------------------------------------------- /test_expected/test61: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akaihola/PyChecker/HEAD/test_expected/test61 -------------------------------------------------------------------------------- /test_expected/test62: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akaihola/PyChecker/HEAD/test_expected/test62 -------------------------------------------------------------------------------- /test_expected/test63: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akaihola/PyChecker/HEAD/test_expected/test63 -------------------------------------------------------------------------------- /test_expected/test64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akaihola/PyChecker/HEAD/test_expected/test64 -------------------------------------------------------------------------------- /test_expected/test65: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akaihola/PyChecker/HEAD/test_expected/test65 -------------------------------------------------------------------------------- /test_expected/test66: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akaihola/PyChecker/HEAD/test_expected/test66 -------------------------------------------------------------------------------- /test_expected/test67: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akaihola/PyChecker/HEAD/test_expected/test67 -------------------------------------------------------------------------------- /test_expected/test68: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akaihola/PyChecker/HEAD/test_expected/test68 -------------------------------------------------------------------------------- /test_expected/test68-2.4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akaihola/PyChecker/HEAD/test_expected/test68-2.4 -------------------------------------------------------------------------------- /test_expected/test68-2.6: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akaihola/PyChecker/HEAD/test_expected/test68-2.6 -------------------------------------------------------------------------------- /test_expected/test69: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akaihola/PyChecker/HEAD/test_expected/test69 -------------------------------------------------------------------------------- /test_expected/test7: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akaihola/PyChecker/HEAD/test_expected/test7 -------------------------------------------------------------------------------- /test_expected/test70: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akaihola/PyChecker/HEAD/test_expected/test70 -------------------------------------------------------------------------------- /test_expected/test71: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akaihola/PyChecker/HEAD/test_expected/test71 -------------------------------------------------------------------------------- /test_expected/test71-2.4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akaihola/PyChecker/HEAD/test_expected/test71-2.4 -------------------------------------------------------------------------------- /test_expected/test72: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akaihola/PyChecker/HEAD/test_expected/test72 -------------------------------------------------------------------------------- /test_expected/test73: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akaihola/PyChecker/HEAD/test_expected/test73 -------------------------------------------------------------------------------- /test_expected/test74: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akaihola/PyChecker/HEAD/test_expected/test74 -------------------------------------------------------------------------------- /test_expected/test74-2.4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akaihola/PyChecker/HEAD/test_expected/test74-2.4 -------------------------------------------------------------------------------- /test_expected/test74-2.6: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akaihola/PyChecker/HEAD/test_expected/test74-2.6 -------------------------------------------------------------------------------- /test_expected/test75: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akaihola/PyChecker/HEAD/test_expected/test75 -------------------------------------------------------------------------------- /test_expected/test75-2.2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akaihola/PyChecker/HEAD/test_expected/test75-2.2 -------------------------------------------------------------------------------- /test_expected/test76: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akaihola/PyChecker/HEAD/test_expected/test76 -------------------------------------------------------------------------------- /test_expected/test77: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akaihola/PyChecker/HEAD/test_expected/test77 -------------------------------------------------------------------------------- /test_expected/test78: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akaihola/PyChecker/HEAD/test_expected/test78 -------------------------------------------------------------------------------- /test_expected/test79: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akaihola/PyChecker/HEAD/test_expected/test79 -------------------------------------------------------------------------------- /test_expected/test8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akaihola/PyChecker/HEAD/test_expected/test8 -------------------------------------------------------------------------------- /test_expected/test80: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akaihola/PyChecker/HEAD/test_expected/test80 -------------------------------------------------------------------------------- /test_expected/test80-2.2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akaihola/PyChecker/HEAD/test_expected/test80-2.2 -------------------------------------------------------------------------------- /test_expected/test81: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akaihola/PyChecker/HEAD/test_expected/test81 -------------------------------------------------------------------------------- /test_expected/test82: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akaihola/PyChecker/HEAD/test_expected/test82 -------------------------------------------------------------------------------- /test_expected/test83: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akaihola/PyChecker/HEAD/test_expected/test83 -------------------------------------------------------------------------------- /test_expected/test84: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akaihola/PyChecker/HEAD/test_expected/test84 -------------------------------------------------------------------------------- /test_expected/test85: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akaihola/PyChecker/HEAD/test_expected/test85 -------------------------------------------------------------------------------- /test_expected/test86: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akaihola/PyChecker/HEAD/test_expected/test86 -------------------------------------------------------------------------------- /test_expected/test87: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akaihola/PyChecker/HEAD/test_expected/test87 -------------------------------------------------------------------------------- /test_expected/test87-2.5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akaihola/PyChecker/HEAD/test_expected/test87-2.5 -------------------------------------------------------------------------------- /test_expected/test88: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akaihola/PyChecker/HEAD/test_expected/test88 -------------------------------------------------------------------------------- /test_expected/test88-2.4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akaihola/PyChecker/HEAD/test_expected/test88-2.4 -------------------------------------------------------------------------------- /test_expected/test88-2.5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akaihola/PyChecker/HEAD/test_expected/test88-2.5 -------------------------------------------------------------------------------- /test_expected/test88-2.6: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akaihola/PyChecker/HEAD/test_expected/test88-2.6 -------------------------------------------------------------------------------- /test_expected/test89: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akaihola/PyChecker/HEAD/test_expected/test89 -------------------------------------------------------------------------------- /test_expected/test89-2.2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akaihola/PyChecker/HEAD/test_expected/test89-2.2 -------------------------------------------------------------------------------- /test_expected/test9: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akaihola/PyChecker/HEAD/test_expected/test9 -------------------------------------------------------------------------------- /test_expected/test90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akaihola/PyChecker/HEAD/test_expected/test90 -------------------------------------------------------------------------------- /test_expected/test92: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akaihola/PyChecker/HEAD/test_expected/test92 -------------------------------------------------------------------------------- /test_expected/test93: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akaihola/PyChecker/HEAD/test_expected/test93 -------------------------------------------------------------------------------- /test_expected/test94: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akaihola/PyChecker/HEAD/test_expected/test94 -------------------------------------------------------------------------------- /test_expected/test95: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akaihola/PyChecker/HEAD/test_expected/test95 -------------------------------------------------------------------------------- /test_expected/test96: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akaihola/PyChecker/HEAD/test_expected/test96 -------------------------------------------------------------------------------- /test_expected/test97: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akaihola/PyChecker/HEAD/test_expected/test97 -------------------------------------------------------------------------------- /test_expected/test98: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akaihola/PyChecker/HEAD/test_expected/test98 -------------------------------------------------------------------------------- /test_expected/test99: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akaihola/PyChecker/HEAD/test_expected/test99 -------------------------------------------------------------------------------- /test_input/.cvsignore: -------------------------------------------------------------------------------- 1 | *.pyc 2 | nn*.py 3 | -------------------------------------------------------------------------------- /test_input/__init__.py: -------------------------------------------------------------------------------- 1 | """ 2 | Tests for PyChecker 3 | """ 4 | -------------------------------------------------------------------------------- /test_input/import24.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akaihola/PyChecker/HEAD/test_input/import24.py -------------------------------------------------------------------------------- /test_input/import37.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akaihola/PyChecker/HEAD/test_input/import37.py -------------------------------------------------------------------------------- /test_input/import44.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akaihola/PyChecker/HEAD/test_input/import44.py -------------------------------------------------------------------------------- /test_input/import47.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akaihola/PyChecker/HEAD/test_input/import47.py -------------------------------------------------------------------------------- /test_input/import56a.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akaihola/PyChecker/HEAD/test_input/import56a.py -------------------------------------------------------------------------------- /test_input/import56b.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akaihola/PyChecker/HEAD/test_input/import56b.py -------------------------------------------------------------------------------- /test_input/import69.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akaihola/PyChecker/HEAD/test_input/import69.py -------------------------------------------------------------------------------- /test_input/import73.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akaihola/PyChecker/HEAD/test_input/import73.py -------------------------------------------------------------------------------- /test_input/import98.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akaihola/PyChecker/HEAD/test_input/import98.py -------------------------------------------------------------------------------- /test_input/pycheckrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akaihola/PyChecker/HEAD/test_input/pycheckrc -------------------------------------------------------------------------------- /test_input/test1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akaihola/PyChecker/HEAD/test_input/test1.py -------------------------------------------------------------------------------- /test_input/test10.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akaihola/PyChecker/HEAD/test_input/test10.py -------------------------------------------------------------------------------- /test_input/test100.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akaihola/PyChecker/HEAD/test_input/test100.py -------------------------------------------------------------------------------- /test_input/test101.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akaihola/PyChecker/HEAD/test_input/test101.py -------------------------------------------------------------------------------- /test_input/test102.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akaihola/PyChecker/HEAD/test_input/test102.py -------------------------------------------------------------------------------- /test_input/test103.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akaihola/PyChecker/HEAD/test_input/test103.py -------------------------------------------------------------------------------- /test_input/test11.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akaihola/PyChecker/HEAD/test_input/test11.py -------------------------------------------------------------------------------- /test_input/test12.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akaihola/PyChecker/HEAD/test_input/test12.py -------------------------------------------------------------------------------- /test_input/test13.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akaihola/PyChecker/HEAD/test_input/test13.py -------------------------------------------------------------------------------- /test_input/test14.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akaihola/PyChecker/HEAD/test_input/test14.py -------------------------------------------------------------------------------- /test_input/test15.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akaihola/PyChecker/HEAD/test_input/test15.py -------------------------------------------------------------------------------- /test_input/test16.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akaihola/PyChecker/HEAD/test_input/test16.py -------------------------------------------------------------------------------- /test_input/test17.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akaihola/PyChecker/HEAD/test_input/test17.py -------------------------------------------------------------------------------- /test_input/test18.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akaihola/PyChecker/HEAD/test_input/test18.py -------------------------------------------------------------------------------- /test_input/test19.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akaihola/PyChecker/HEAD/test_input/test19.py -------------------------------------------------------------------------------- /test_input/test2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akaihola/PyChecker/HEAD/test_input/test2.py -------------------------------------------------------------------------------- /test_input/test20.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akaihola/PyChecker/HEAD/test_input/test20.py -------------------------------------------------------------------------------- /test_input/test21.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akaihola/PyChecker/HEAD/test_input/test21.py -------------------------------------------------------------------------------- /test_input/test22.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akaihola/PyChecker/HEAD/test_input/test22.py -------------------------------------------------------------------------------- /test_input/test23.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akaihola/PyChecker/HEAD/test_input/test23.py -------------------------------------------------------------------------------- /test_input/test24.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akaihola/PyChecker/HEAD/test_input/test24.py -------------------------------------------------------------------------------- /test_input/test25.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akaihola/PyChecker/HEAD/test_input/test25.py -------------------------------------------------------------------------------- /test_input/test26.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akaihola/PyChecker/HEAD/test_input/test26.py -------------------------------------------------------------------------------- /test_input/test27.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akaihola/PyChecker/HEAD/test_input/test27.py -------------------------------------------------------------------------------- /test_input/test28.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akaihola/PyChecker/HEAD/test_input/test28.py -------------------------------------------------------------------------------- /test_input/test29.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akaihola/PyChecker/HEAD/test_input/test29.py -------------------------------------------------------------------------------- /test_input/test3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akaihola/PyChecker/HEAD/test_input/test3.py -------------------------------------------------------------------------------- /test_input/test30.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akaihola/PyChecker/HEAD/test_input/test30.py -------------------------------------------------------------------------------- /test_input/test31.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akaihola/PyChecker/HEAD/test_input/test31.py -------------------------------------------------------------------------------- /test_input/test32.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akaihola/PyChecker/HEAD/test_input/test32.py -------------------------------------------------------------------------------- /test_input/test33.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akaihola/PyChecker/HEAD/test_input/test33.py -------------------------------------------------------------------------------- /test_input/test35.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akaihola/PyChecker/HEAD/test_input/test35.py -------------------------------------------------------------------------------- /test_input/test36.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akaihola/PyChecker/HEAD/test_input/test36.py -------------------------------------------------------------------------------- /test_input/test37.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akaihola/PyChecker/HEAD/test_input/test37.py -------------------------------------------------------------------------------- /test_input/test38.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akaihola/PyChecker/HEAD/test_input/test38.py -------------------------------------------------------------------------------- /test_input/test39.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akaihola/PyChecker/HEAD/test_input/test39.py -------------------------------------------------------------------------------- /test_input/test4.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akaihola/PyChecker/HEAD/test_input/test4.py -------------------------------------------------------------------------------- /test_input/test40.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akaihola/PyChecker/HEAD/test_input/test40.py -------------------------------------------------------------------------------- /test_input/test41.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akaihola/PyChecker/HEAD/test_input/test41.py -------------------------------------------------------------------------------- /test_input/test42.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akaihola/PyChecker/HEAD/test_input/test42.py -------------------------------------------------------------------------------- /test_input/test43.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akaihola/PyChecker/HEAD/test_input/test43.py -------------------------------------------------------------------------------- /test_input/test44.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akaihola/PyChecker/HEAD/test_input/test44.py -------------------------------------------------------------------------------- /test_input/test45.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akaihola/PyChecker/HEAD/test_input/test45.py -------------------------------------------------------------------------------- /test_input/test46.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akaihola/PyChecker/HEAD/test_input/test46.py -------------------------------------------------------------------------------- /test_input/test47.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akaihola/PyChecker/HEAD/test_input/test47.py -------------------------------------------------------------------------------- /test_input/test48.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akaihola/PyChecker/HEAD/test_input/test48.py -------------------------------------------------------------------------------- /test_input/test49.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akaihola/PyChecker/HEAD/test_input/test49.py -------------------------------------------------------------------------------- /test_input/test5.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akaihola/PyChecker/HEAD/test_input/test5.py -------------------------------------------------------------------------------- /test_input/test50.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akaihola/PyChecker/HEAD/test_input/test50.py -------------------------------------------------------------------------------- /test_input/test51.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akaihola/PyChecker/HEAD/test_input/test51.py -------------------------------------------------------------------------------- /test_input/test52.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akaihola/PyChecker/HEAD/test_input/test52.py -------------------------------------------------------------------------------- /test_input/test53.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akaihola/PyChecker/HEAD/test_input/test53.py -------------------------------------------------------------------------------- /test_input/test54.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akaihola/PyChecker/HEAD/test_input/test54.py -------------------------------------------------------------------------------- /test_input/test55.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akaihola/PyChecker/HEAD/test_input/test55.py -------------------------------------------------------------------------------- /test_input/test56.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akaihola/PyChecker/HEAD/test_input/test56.py -------------------------------------------------------------------------------- /test_input/test57.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akaihola/PyChecker/HEAD/test_input/test57.py -------------------------------------------------------------------------------- /test_input/test58.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akaihola/PyChecker/HEAD/test_input/test58.py -------------------------------------------------------------------------------- /test_input/test59.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akaihola/PyChecker/HEAD/test_input/test59.py -------------------------------------------------------------------------------- /test_input/test6.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akaihola/PyChecker/HEAD/test_input/test6.py -------------------------------------------------------------------------------- /test_input/test60.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akaihola/PyChecker/HEAD/test_input/test60.py -------------------------------------------------------------------------------- /test_input/test61.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akaihola/PyChecker/HEAD/test_input/test61.py -------------------------------------------------------------------------------- /test_input/test62.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akaihola/PyChecker/HEAD/test_input/test62.py -------------------------------------------------------------------------------- /test_input/test63.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akaihola/PyChecker/HEAD/test_input/test63.py -------------------------------------------------------------------------------- /test_input/test64.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akaihola/PyChecker/HEAD/test_input/test64.py -------------------------------------------------------------------------------- /test_input/test65.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akaihola/PyChecker/HEAD/test_input/test65.py -------------------------------------------------------------------------------- /test_input/test66.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akaihola/PyChecker/HEAD/test_input/test66.py -------------------------------------------------------------------------------- /test_input/test67.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akaihola/PyChecker/HEAD/test_input/test67.py -------------------------------------------------------------------------------- /test_input/test68.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akaihola/PyChecker/HEAD/test_input/test68.py -------------------------------------------------------------------------------- /test_input/test69.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akaihola/PyChecker/HEAD/test_input/test69.py -------------------------------------------------------------------------------- /test_input/test7.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akaihola/PyChecker/HEAD/test_input/test7.py -------------------------------------------------------------------------------- /test_input/test72.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akaihola/PyChecker/HEAD/test_input/test72.py -------------------------------------------------------------------------------- /test_input/test73.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akaihola/PyChecker/HEAD/test_input/test73.py -------------------------------------------------------------------------------- /test_input/test74.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akaihola/PyChecker/HEAD/test_input/test74.py -------------------------------------------------------------------------------- /test_input/test75.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akaihola/PyChecker/HEAD/test_input/test75.py -------------------------------------------------------------------------------- /test_input/test76.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akaihola/PyChecker/HEAD/test_input/test76.py -------------------------------------------------------------------------------- /test_input/test79.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akaihola/PyChecker/HEAD/test_input/test79.py -------------------------------------------------------------------------------- /test_input/test8.py: -------------------------------------------------------------------------------- 1 | "doc" 2 | 3 | def func(): 4 | syntax error here 5 | -------------------------------------------------------------------------------- /test_input/test80.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akaihola/PyChecker/HEAD/test_input/test80.py -------------------------------------------------------------------------------- /test_input/test81.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akaihola/PyChecker/HEAD/test_input/test81.py -------------------------------------------------------------------------------- /test_input/test82.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akaihola/PyChecker/HEAD/test_input/test82.py -------------------------------------------------------------------------------- /test_input/test83.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akaihola/PyChecker/HEAD/test_input/test83.py -------------------------------------------------------------------------------- /test_input/test84.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akaihola/PyChecker/HEAD/test_input/test84.py -------------------------------------------------------------------------------- /test_input/test85.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akaihola/PyChecker/HEAD/test_input/test85.py -------------------------------------------------------------------------------- /test_input/test86.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akaihola/PyChecker/HEAD/test_input/test86.py -------------------------------------------------------------------------------- /test_input/test87.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akaihola/PyChecker/HEAD/test_input/test87.py -------------------------------------------------------------------------------- /test_input/test88.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akaihola/PyChecker/HEAD/test_input/test88.py -------------------------------------------------------------------------------- /test_input/test89.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akaihola/PyChecker/HEAD/test_input/test89.py -------------------------------------------------------------------------------- /test_input/test9.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akaihola/PyChecker/HEAD/test_input/test9.py -------------------------------------------------------------------------------- /test_input/test90.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akaihola/PyChecker/HEAD/test_input/test90.py -------------------------------------------------------------------------------- /test_input/test92.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akaihola/PyChecker/HEAD/test_input/test92.py -------------------------------------------------------------------------------- /test_input/test93.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akaihola/PyChecker/HEAD/test_input/test93.py -------------------------------------------------------------------------------- /test_input/test94.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akaihola/PyChecker/HEAD/test_input/test94.py -------------------------------------------------------------------------------- /test_input/test95.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akaihola/PyChecker/HEAD/test_input/test95.py -------------------------------------------------------------------------------- /test_input/test96.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akaihola/PyChecker/HEAD/test_input/test96.py -------------------------------------------------------------------------------- /test_input/test97.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akaihola/PyChecker/HEAD/test_input/test97.py -------------------------------------------------------------------------------- /test_input/test98.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akaihola/PyChecker/HEAD/test_input/test98.py -------------------------------------------------------------------------------- /test_input/test99.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akaihola/PyChecker/HEAD/test_input/test99.py -------------------------------------------------------------------------------- /test_todo/test34.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akaihola/PyChecker/HEAD/test_todo/test34.py -------------------------------------------------------------------------------- /test_todo/test70.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akaihola/PyChecker/HEAD/test_todo/test70.py -------------------------------------------------------------------------------- /test_todo/test71.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akaihola/PyChecker/HEAD/test_todo/test71.py -------------------------------------------------------------------------------- /test_todo/test77.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akaihola/PyChecker/HEAD/test_todo/test77.py -------------------------------------------------------------------------------- /test_todo/test78.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akaihola/PyChecker/HEAD/test_todo/test78.py --------------------------------------------------------------------------------