cobol-py 0.1.0__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- cobol_py-0.1.0/.gitignore +223 -0
- cobol_py-0.1.0/Cobol.g4 +3269 -0
- cobol_py-0.1.0/CobolPreprocessor.g4 +671 -0
- cobol_py-0.1.0/LICENSE +21 -0
- cobol_py-0.1.0/PKG-INFO +269 -0
- cobol_py-0.1.0/README.md +242 -0
- cobol_py-0.1.0/examples/example.cbl +19 -0
- cobol_py-0.1.0/pyproject.toml +67 -0
- cobol_py-0.1.0/scripts/dump_parse_trees.py +53 -0
- cobol_py-0.1.0/scripts/generate_parser.py +123 -0
- cobol_py-0.1.0/src/cobol_py/CobolLexer.py +3337 -0
- cobol_py-0.1.0/src/cobol_py/CobolListener.py +5403 -0
- cobol_py-0.1.0/src/cobol_py/CobolParser.py +54518 -0
- cobol_py-0.1.0/src/cobol_py/CobolPreprocessorLexer.py +1428 -0
- cobol_py-0.1.0/src/cobol_py/CobolPreprocessorListener.py +282 -0
- cobol_py-0.1.0/src/cobol_py/CobolPreprocessorParser.py +6682 -0
- cobol_py-0.1.0/src/cobol_py/CobolPreprocessorVisitor.py +163 -0
- cobol_py-0.1.0/src/cobol_py/CobolVisitor.py +3008 -0
- cobol_py-0.1.0/src/cobol_py/__init__.py +59 -0
- cobol_py-0.1.0/src/cobol_py/_antlr_patch.py +82 -0
- cobol_py-0.1.0/src/cobol_py/_treeutil.py +99 -0
- cobol_py-0.1.0/src/cobol_py/asg/__init__.py +579 -0
- cobol_py-0.1.0/src/cobol_py/asg/antlr_utils.py +91 -0
- cobol_py-0.1.0/src/cobol_py/asg/base.py +117 -0
- cobol_py-0.1.0/src/cobol_py/asg/call.py +227 -0
- cobol_py-0.1.0/src/cobol_py/asg/communication.py +542 -0
- cobol_py-0.1.0/src/cobol_py/asg/data.py +1661 -0
- cobol_py-0.1.0/src/cobol_py/asg/environment.py +1113 -0
- cobol_py-0.1.0/src/cobol_py/asg/factory.py +705 -0
- cobol_py-0.1.0/src/cobol_py/asg/identification.py +200 -0
- cobol_py-0.1.0/src/cobol_py/asg/literal.py +95 -0
- cobol_py-0.1.0/src/cobol_py/asg/mainframe.py +1538 -0
- cobol_py-0.1.0/src/cobol_py/asg/procedure/__init__.py +2 -0
- cobol_py-0.1.0/src/cobol_py/asg/procedure/division.py +512 -0
- cobol_py-0.1.0/src/cobol_py/asg/procedure/statements.py +2297 -0
- cobol_py-0.1.0/src/cobol_py/asg/program.py +149 -0
- cobol_py-0.1.0/src/cobol_py/asg/registry.py +48 -0
- cobol_py-0.1.0/src/cobol_py/asg/resolver.py +46 -0
- cobol_py-0.1.0/src/cobol_py/asg/util_string.py +17 -0
- cobol_py-0.1.0/src/cobol_py/asg/valuestmt.py +720 -0
- cobol_py-0.1.0/src/cobol_py/asg/visitor.py +582 -0
- cobol_py-0.1.0/src/cobol_py/error_listener.py +27 -0
- cobol_py-0.1.0/src/cobol_py/exceptions.py +23 -0
- cobol_py-0.1.0/src/cobol_py/params.py +45 -0
- cobol_py-0.1.0/src/cobol_py/preprocessor/__init__.py +7 -0
- cobol_py-0.1.0/src/cobol_py/preprocessor/comment_entries_marker.py +140 -0
- cobol_py-0.1.0/src/cobol_py/preprocessor/constants.py +67 -0
- cobol_py-0.1.0/src/cobol_py/preprocessor/copybook.py +222 -0
- cobol_py-0.1.0/src/cobol_py/preprocessor/document_context.py +47 -0
- cobol_py-0.1.0/src/cobol_py/preprocessor/document_parser.py +83 -0
- cobol_py-0.1.0/src/cobol_py/preprocessor/document_parser_listener.py +267 -0
- cobol_py-0.1.0/src/cobol_py/preprocessor/hidden_token_collector.py +34 -0
- cobol_py-0.1.0/src/cobol_py/preprocessor/inline_comment_entries_normalizer.py +29 -0
- cobol_py-0.1.0/src/cobol_py/preprocessor/line.py +276 -0
- cobol_py-0.1.0/src/cobol_py/preprocessor/line_indicator_processor.py +168 -0
- cobol_py-0.1.0/src/cobol_py/preprocessor/line_reader.py +128 -0
- cobol_py-0.1.0/src/cobol_py/preprocessor/line_writer.py +27 -0
- cobol_py-0.1.0/src/cobol_py/preprocessor/preprocessor.py +100 -0
- cobol_py-0.1.0/src/cobol_py/preprocessor/replacement_mapping.py +101 -0
- cobol_py-0.1.0/src/cobol_py/preprocessor/string_utils.py +15 -0
- cobol_py-0.1.0/src/cobol_py/preprocessor/token_utils.py +46 -0
- cobol_py-0.1.0/src/cobol_py/runner.py +237 -0
- cobol_py-0.1.0/src/cobol_py/util/__init__.py +26 -0
- cobol_py-0.1.0/src/cobol_py/util/filename_utils.py +52 -0
- cobol_py-0.1.0/src/cobol_py/util/string_utils.py +47 -0
- cobol_py-0.1.0/tests/conftest.py +26 -0
- cobol_py-0.1.0/tests/fixtures/MYCOPY.CPY +1 -0
- cobol_py-0.1.0/tests/fixtures/copy_main.cbl +11 -0
- cobol_py-0.1.0/tests/fixtures/exec_cics.cbl +12 -0
- cobol_py-0.1.0/tests/fixtures/exec_sql.cbl +12 -0
- cobol_py-0.1.0/tests/fixtures/hello.cbl +7 -0
- cobol_py-0.1.0/tests/fixtures/replace.cbl +11 -0
- cobol_py-0.1.0/tests/fixtures/tandem.cbl +6 -0
- cobol_py-0.1.0/tests/fixtures/variable.cbl +6 -0
- cobol_py-0.1.0/tests/test_asg/__init__.py +0 -0
- cobol_py-0.1.0/tests/test_asg/conftest.py +18 -0
- cobol_py-0.1.0/tests/test_asg/test_arithmetic.py +369 -0
- cobol_py-0.1.0/tests/test_asg/test_c2_tail.py +187 -0
- cobol_py-0.1.0/tests/test_asg/test_data.py +646 -0
- cobol_py-0.1.0/tests/test_asg/test_declaratives.py +143 -0
- cobol_py-0.1.0/tests/test_asg/test_environment.py +250 -0
- cobol_py-0.1.0/tests/test_asg/test_file_verbs.py +76 -0
- cobol_py-0.1.0/tests/test_asg/test_foundation.py +57 -0
- cobol_py-0.1.0/tests/test_asg/test_more_verbs.py +250 -0
- cobol_py-0.1.0/tests/test_asg/test_phrase_scopes.py +293 -0
- cobol_py-0.1.0/tests/test_asg/test_procedure.py +208 -0
- cobol_py-0.1.0/tests/test_asg/test_read_call_correctness.py +138 -0
- cobol_py-0.1.0/tests/test_asg/test_statements.py +167 -0
- cobol_py-0.1.0/tests/test_asg/test_string_table_verbs.py +57 -0
- cobol_py-0.1.0/tests/test_asg/test_write_rewrite_start.py +94 -0
- cobol_py-0.1.0/tests/test_ast_tree.py +60 -0
- cobol_py-0.1.0/tests/test_nist.py +62 -0
- cobol_py-0.1.0/tests/test_parse.py +188 -0
- cobol_py-0.1.0/tests/test_phase1_leaf.py +278 -0
- cobol_py-0.1.0/tests/test_phase2_line.py +275 -0
- cobol_py-0.1.0/tests/test_preprocessor.py +90 -0
- cobol_py-0.1.0/tests/testdata/gov/nist/ALTL1.CPY +7 -0
- cobol_py-0.1.0/tests/testdata/gov/nist/ALTLB.CPY +7 -0
- cobol_py-0.1.0/tests/testdata/gov/nist/CM101M.CBL +671 -0
- cobol_py-0.1.0/tests/testdata/gov/nist/CM102M.CBL +967 -0
- cobol_py-0.1.0/tests/testdata/gov/nist/CM103M.CBL +281 -0
- cobol_py-0.1.0/tests/testdata/gov/nist/CM104M.CBL +337 -0
- cobol_py-0.1.0/tests/testdata/gov/nist/CM105M.CBL +493 -0
- cobol_py-0.1.0/tests/testdata/gov/nist/CM201M.CBL +87 -0
- cobol_py-0.1.0/tests/testdata/gov/nist/CM202M.CBL +644 -0
- cobol_py-0.1.0/tests/testdata/gov/nist/CM303M.CBL +37 -0
- cobol_py-0.1.0/tests/testdata/gov/nist/CM401M.CBL +67 -0
- cobol_py-0.1.0/tests/testdata/gov/nist/DB101A.CBL +826 -0
- cobol_py-0.1.0/tests/testdata/gov/nist/DB102A.CBL +686 -0
- cobol_py-0.1.0/tests/testdata/gov/nist/DB103M.CBL +684 -0
- cobol_py-0.1.0/tests/testdata/gov/nist/DB104A.CBL +750 -0
- cobol_py-0.1.0/tests/testdata/gov/nist/DB105A.CBL +1454 -0
- cobol_py-0.1.0/tests/testdata/gov/nist/DB201A.CBL +1517 -0
- cobol_py-0.1.0/tests/testdata/gov/nist/DB202A.CBL +846 -0
- cobol_py-0.1.0/tests/testdata/gov/nist/DB203A.CBL +820 -0
- cobol_py-0.1.0/tests/testdata/gov/nist/DB204A.CBL +556 -0
- cobol_py-0.1.0/tests/testdata/gov/nist/DB205A.CBL +598 -0
- cobol_py-0.1.0/tests/testdata/gov/nist/DB301M.CBL +47 -0
- cobol_py-0.1.0/tests/testdata/gov/nist/DB302M.CBL +46 -0
- cobol_py-0.1.0/tests/testdata/gov/nist/DB303M.CBL +54 -0
- cobol_py-0.1.0/tests/testdata/gov/nist/DB304M.CBL +43 -0
- cobol_py-0.1.0/tests/testdata/gov/nist/DB305M.CBL +46 -0
- cobol_py-0.1.0/tests/testdata/gov/nist/EXEC85.CBL +2261 -0
- cobol_py-0.1.0/tests/testdata/gov/nist/IC101A.CBL +384 -0
- cobol_py-0.1.0/tests/testdata/gov/nist/IC102A.CBL +50 -0
- cobol_py-0.1.0/tests/testdata/gov/nist/IC103A.CBL +499 -0
- cobol_py-0.1.0/tests/testdata/gov/nist/IC104A.CBL +73 -0
- cobol_py-0.1.0/tests/testdata/gov/nist/IC105A.CBL +66 -0
- cobol_py-0.1.0/tests/testdata/gov/nist/IC106A.CBL +532 -0
- cobol_py-0.1.0/tests/testdata/gov/nist/IC107A.CBL +111 -0
- cobol_py-0.1.0/tests/testdata/gov/nist/IC108A.CBL +446 -0
- cobol_py-0.1.0/tests/testdata/gov/nist/IC109A.CBL +67 -0
- cobol_py-0.1.0/tests/testdata/gov/nist/IC110A.CBL +71 -0
- cobol_py-0.1.0/tests/testdata/gov/nist/IC111A.CBL +58 -0
- cobol_py-0.1.0/tests/testdata/gov/nist/IC112A.CBL +557 -0
- cobol_py-0.1.0/tests/testdata/gov/nist/IC113A.CBL +80 -0
- cobol_py-0.1.0/tests/testdata/gov/nist/IC114A.CBL +473 -0
- cobol_py-0.1.0/tests/testdata/gov/nist/IC115A.CBL +215 -0
- cobol_py-0.1.0/tests/testdata/gov/nist/IC116M.CBL +345 -0
- cobol_py-0.1.0/tests/testdata/gov/nist/IC117M.CBL +73 -0
- cobol_py-0.1.0/tests/testdata/gov/nist/IC118M.CBL +57 -0
- cobol_py-0.1.0/tests/testdata/gov/nist/IC201A.CBL +621 -0
- cobol_py-0.1.0/tests/testdata/gov/nist/IC202A.CBL +60 -0
- cobol_py-0.1.0/tests/testdata/gov/nist/IC203A.CBL +685 -0
- cobol_py-0.1.0/tests/testdata/gov/nist/IC204A.CBL +75 -0
- cobol_py-0.1.0/tests/testdata/gov/nist/IC205A.CBL +72 -0
- cobol_py-0.1.0/tests/testdata/gov/nist/IC206A.CBL +58 -0
- cobol_py-0.1.0/tests/testdata/gov/nist/IC207A.CBL +481 -0
- cobol_py-0.1.0/tests/testdata/gov/nist/IC208A.CBL +105 -0
- cobol_py-0.1.0/tests/testdata/gov/nist/IC209A.CBL +354 -0
- cobol_py-0.1.0/tests/testdata/gov/nist/IC210A.CBL +52 -0
- cobol_py-0.1.0/tests/testdata/gov/nist/IC211A.CBL +42 -0
- cobol_py-0.1.0/tests/testdata/gov/nist/IC212A.CBL +42 -0
- cobol_py-0.1.0/tests/testdata/gov/nist/IC213A.CBL +343 -0
- cobol_py-0.1.0/tests/testdata/gov/nist/IC214A.CBL +38 -0
- cobol_py-0.1.0/tests/testdata/gov/nist/IC215A.CBL +42 -0
- cobol_py-0.1.0/tests/testdata/gov/nist/IC216A.CBL +335 -0
- cobol_py-0.1.0/tests/testdata/gov/nist/IC217A.CBL +50 -0
- cobol_py-0.1.0/tests/testdata/gov/nist/IC222A.CBL +1164 -0
- cobol_py-0.1.0/tests/testdata/gov/nist/IC223A.CBL +773 -0
- cobol_py-0.1.0/tests/testdata/gov/nist/IC224A.CBL +705 -0
- cobol_py-0.1.0/tests/testdata/gov/nist/IC225A.CBL +1056 -0
- cobol_py-0.1.0/tests/testdata/gov/nist/IC226A.CBL +508 -0
- cobol_py-0.1.0/tests/testdata/gov/nist/IC227A.CBL +1202 -0
- cobol_py-0.1.0/tests/testdata/gov/nist/IC228A.CBL +447 -0
- cobol_py-0.1.0/tests/testdata/gov/nist/IC233A.CBL +515 -0
- cobol_py-0.1.0/tests/testdata/gov/nist/IC234A.CBL +739 -0
- cobol_py-0.1.0/tests/testdata/gov/nist/IC235A.CBL +670 -0
- cobol_py-0.1.0/tests/testdata/gov/nist/IC237A.CBL +435 -0
- cobol_py-0.1.0/tests/testdata/gov/nist/IC401M.CBL +76 -0
- cobol_py-0.1.0/tests/testdata/gov/nist/IF101A.CBL +908 -0
- cobol_py-0.1.0/tests/testdata/gov/nist/IF102A.CBL +619 -0
- cobol_py-0.1.0/tests/testdata/gov/nist/IF103A.CBL +842 -0
- cobol_py-0.1.0/tests/testdata/gov/nist/IF104A.CBL +929 -0
- cobol_py-0.1.0/tests/testdata/gov/nist/IF105A.CBL +489 -0
- cobol_py-0.1.0/tests/testdata/gov/nist/IF106A.CBL +1007 -0
- cobol_py-0.1.0/tests/testdata/gov/nist/IF107A.CBL +381 -0
- cobol_py-0.1.0/tests/testdata/gov/nist/IF108A.CBL +491 -0
- cobol_py-0.1.0/tests/testdata/gov/nist/IF109A.CBL +453 -0
- cobol_py-0.1.0/tests/testdata/gov/nist/IF110A.CBL +502 -0
- cobol_py-0.1.0/tests/testdata/gov/nist/IF111A.CBL +733 -0
- cobol_py-0.1.0/tests/testdata/gov/nist/IF112A.CBL +454 -0
- cobol_py-0.1.0/tests/testdata/gov/nist/IF113A.CBL +453 -0
- cobol_py-0.1.0/tests/testdata/gov/nist/IF114A.CBL +734 -0
- cobol_py-0.1.0/tests/testdata/gov/nist/IF115A.CBL +452 -0
- cobol_py-0.1.0/tests/testdata/gov/nist/IF116A.CBL +891 -0
- cobol_py-0.1.0/tests/testdata/gov/nist/IF117A.CBL +1039 -0
- cobol_py-0.1.0/tests/testdata/gov/nist/IF118A.CBL +546 -0
- cobol_py-0.1.0/tests/testdata/gov/nist/IF119A.CBL +799 -0
- cobol_py-0.1.0/tests/testdata/gov/nist/IF120A.CBL +686 -0
- cobol_py-0.1.0/tests/testdata/gov/nist/IF121A.CBL +682 -0
- cobol_py-0.1.0/tests/testdata/gov/nist/IF122A.CBL +682 -0
- cobol_py-0.1.0/tests/testdata/gov/nist/IF123A.CBL +799 -0
- cobol_py-0.1.0/tests/testdata/gov/nist/IF124A.CBL +763 -0
- cobol_py-0.1.0/tests/testdata/gov/nist/IF125A.CBL +688 -0
- cobol_py-0.1.0/tests/testdata/gov/nist/IF126A.CBL +888 -0
- cobol_py-0.1.0/tests/testdata/gov/nist/IF127A.CBL +507 -0
- cobol_py-0.1.0/tests/testdata/gov/nist/IF128A.CBL +649 -0
- cobol_py-0.1.0/tests/testdata/gov/nist/IF129A.CBL +634 -0
- cobol_py-0.1.0/tests/testdata/gov/nist/IF130A.CBL +820 -0
- cobol_py-0.1.0/tests/testdata/gov/nist/IF131A.CBL +514 -0
- cobol_py-0.1.0/tests/testdata/gov/nist/IF132A.CBL +635 -0
- cobol_py-0.1.0/tests/testdata/gov/nist/IF133A.CBL +680 -0
- cobol_py-0.1.0/tests/testdata/gov/nist/IF134A.CBL +548 -0
- cobol_py-0.1.0/tests/testdata/gov/nist/IF135A.CBL +1038 -0
- cobol_py-0.1.0/tests/testdata/gov/nist/IF136A.CBL +906 -0
- cobol_py-0.1.0/tests/testdata/gov/nist/IF137A.CBL +727 -0
- cobol_py-0.1.0/tests/testdata/gov/nist/IF138A.CBL +661 -0
- cobol_py-0.1.0/tests/testdata/gov/nist/IF139A.CBL +994 -0
- cobol_py-0.1.0/tests/testdata/gov/nist/IF140A.CBL +545 -0
- cobol_py-0.1.0/tests/testdata/gov/nist/IF141A.CBL +694 -0
- cobol_py-0.1.0/tests/testdata/gov/nist/IF142A.CBL +369 -0
- cobol_py-0.1.0/tests/testdata/gov/nist/IF401M.CBL +106 -0
- cobol_py-0.1.0/tests/testdata/gov/nist/IF402M.CBL +126 -0
- cobol_py-0.1.0/tests/testdata/gov/nist/IF403M.CBL +99 -0
- cobol_py-0.1.0/tests/testdata/gov/nist/IX101A.CBL +509 -0
- cobol_py-0.1.0/tests/testdata/gov/nist/IX102A.CBL +703 -0
- cobol_py-0.1.0/tests/testdata/gov/nist/IX103A.CBL +759 -0
- cobol_py-0.1.0/tests/testdata/gov/nist/IX104A.CBL +731 -0
- cobol_py-0.1.0/tests/testdata/gov/nist/IX105A.CBL +877 -0
- cobol_py-0.1.0/tests/testdata/gov/nist/IX106A.CBL +1235 -0
- cobol_py-0.1.0/tests/testdata/gov/nist/IX107A.CBL +984 -0
- cobol_py-0.1.0/tests/testdata/gov/nist/IX108A.CBL +1460 -0
- cobol_py-0.1.0/tests/testdata/gov/nist/IX109A.CBL +1073 -0
- cobol_py-0.1.0/tests/testdata/gov/nist/IX110A.CBL +622 -0
- cobol_py-0.1.0/tests/testdata/gov/nist/IX111A.CBL +446 -0
- cobol_py-0.1.0/tests/testdata/gov/nist/IX112A.CBL +878 -0
- cobol_py-0.1.0/tests/testdata/gov/nist/IX113A.CBL +771 -0
- cobol_py-0.1.0/tests/testdata/gov/nist/IX114A.CBL +722 -0
- cobol_py-0.1.0/tests/testdata/gov/nist/IX115A.CBL +723 -0
- cobol_py-0.1.0/tests/testdata/gov/nist/IX116A.CBL +723 -0
- cobol_py-0.1.0/tests/testdata/gov/nist/IX117A.CBL +722 -0
- cobol_py-0.1.0/tests/testdata/gov/nist/IX118A.CBL +724 -0
- cobol_py-0.1.0/tests/testdata/gov/nist/IX119A.CBL +733 -0
- cobol_py-0.1.0/tests/testdata/gov/nist/IX120A.CBL +707 -0
- cobol_py-0.1.0/tests/testdata/gov/nist/IX121A.CBL +764 -0
- cobol_py-0.1.0/tests/testdata/gov/nist/IX201A.CBL +508 -0
- cobol_py-0.1.0/tests/testdata/gov/nist/IX202A.CBL +666 -0
- cobol_py-0.1.0/tests/testdata/gov/nist/IX203A.CBL +737 -0
- cobol_py-0.1.0/tests/testdata/gov/nist/IX204A.CBL +741 -0
- cobol_py-0.1.0/tests/testdata/gov/nist/IX205A.CBL +975 -0
- cobol_py-0.1.0/tests/testdata/gov/nist/IX206A.CBL +894 -0
- cobol_py-0.1.0/tests/testdata/gov/nist/IX207A.CBL +1083 -0
- cobol_py-0.1.0/tests/testdata/gov/nist/IX208A.CBL +1527 -0
- cobol_py-0.1.0/tests/testdata/gov/nist/IX209A.CBL +2861 -0
- cobol_py-0.1.0/tests/testdata/gov/nist/IX210A.CBL +2335 -0
- cobol_py-0.1.0/tests/testdata/gov/nist/IX211A.CBL +1127 -0
- cobol_py-0.1.0/tests/testdata/gov/nist/IX212A.CBL +1055 -0
- cobol_py-0.1.0/tests/testdata/gov/nist/IX213A.CBL +1021 -0
- cobol_py-0.1.0/tests/testdata/gov/nist/IX214A.CBL +2360 -0
- cobol_py-0.1.0/tests/testdata/gov/nist/IX215A.CBL +2807 -0
- cobol_py-0.1.0/tests/testdata/gov/nist/IX216A.CBL +794 -0
- cobol_py-0.1.0/tests/testdata/gov/nist/IX217A.CBL +689 -0
- cobol_py-0.1.0/tests/testdata/gov/nist/IX218A.CBL +615 -0
- cobol_py-0.1.0/tests/testdata/gov/nist/IX301M.CBL +72 -0
- cobol_py-0.1.0/tests/testdata/gov/nist/IX302M.CBL +73 -0
- cobol_py-0.1.0/tests/testdata/gov/nist/IX401M.CBL +86 -0
- cobol_py-0.1.0/tests/testdata/gov/nist/K101A.CPY +5 -0
- cobol_py-0.1.0/tests/testdata/gov/nist/K1DAA.CPY +7 -0
- cobol_py-0.1.0/tests/testdata/gov/nist/K1FDA.CPY +9 -0
- cobol_py-0.1.0/tests/testdata/gov/nist/K1P01.CPY +3 -0
- cobol_py-0.1.0/tests/testdata/gov/nist/K1PRA.CPY +3 -0
- cobol_py-0.1.0/tests/testdata/gov/nist/K1PRB.CPY +5 -0
- cobol_py-0.1.0/tests/testdata/gov/nist/K1PRC.CPY +3 -0
- cobol_py-0.1.0/tests/testdata/gov/nist/K1SEA.CPY +10 -0
- cobol_py-0.1.0/tests/testdata/gov/nist/K1W01.CPY +4 -0
- cobol_py-0.1.0/tests/testdata/gov/nist/K1W02.CPY +4 -0
- cobol_py-0.1.0/tests/testdata/gov/nist/K1W03.CPY +3 -0
- cobol_py-0.1.0/tests/testdata/gov/nist/K1W04.CPY +7 -0
- cobol_py-0.1.0/tests/testdata/gov/nist/K1WKA.CPY +4 -0
- cobol_py-0.1.0/tests/testdata/gov/nist/K1WKB.CPY +5 -0
- cobol_py-0.1.0/tests/testdata/gov/nist/K1WKC.CPY +4 -0
- cobol_py-0.1.0/tests/testdata/gov/nist/K1WKY.CPY +4 -0
- cobol_py-0.1.0/tests/testdata/gov/nist/K1WKZ.CPY +5 -0
- cobol_py-0.1.0/tests/testdata/gov/nist/K2PRA.CPY +9 -0
- cobol_py-0.1.0/tests/testdata/gov/nist/K2SEA.CPY +12 -0
- cobol_py-0.1.0/tests/testdata/gov/nist/K3FCA.CPY +8 -0
- cobol_py-0.1.0/tests/testdata/gov/nist/K3FCB.CPY +6 -0
- cobol_py-0.1.0/tests/testdata/gov/nist/K3IOA.CPY +4 -0
- cobol_py-0.1.0/tests/testdata/gov/nist/K3IOB.CPY +3 -0
- cobol_py-0.1.0/tests/testdata/gov/nist/K3LGE.CPY +8 -0
- cobol_py-0.1.0/tests/testdata/gov/nist/K3OCA.CPY +3 -0
- cobol_py-0.1.0/tests/testdata/gov/nist/K3SCA.CPY +3 -0
- cobol_py-0.1.0/tests/testdata/gov/nist/K3SML.CPY +3 -0
- cobol_py-0.1.0/tests/testdata/gov/nist/K3SNA.CPY +3 -0
- cobol_py-0.1.0/tests/testdata/gov/nist/K3SNB.CPY +6 -0
- cobol_py-0.1.0/tests/testdata/gov/nist/K4NTA.CPY +5 -0
- cobol_py-0.1.0/tests/testdata/gov/nist/K501A.CPY +10 -0
- cobol_py-0.1.0/tests/testdata/gov/nist/K501B.CPY +10 -0
- cobol_py-0.1.0/tests/testdata/gov/nist/K5SDA.CPY +3 -0
- cobol_py-0.1.0/tests/testdata/gov/nist/K5SDB.CPY +3 -0
- cobol_py-0.1.0/tests/testdata/gov/nist/K6SCA.CPY +292 -0
- cobol_py-0.1.0/tests/testdata/gov/nist/K7SEA.CPY +1601 -0
- cobol_py-0.1.0/tests/testdata/gov/nist/KK208A.CPY +3 -0
- cobol_py-0.1.0/tests/testdata/gov/nist/KP001.CPY +12 -0
- cobol_py-0.1.0/tests/testdata/gov/nist/KP002.CPY +11 -0
- cobol_py-0.1.0/tests/testdata/gov/nist/KP003.CPY +7 -0
- cobol_py-0.1.0/tests/testdata/gov/nist/KP004.CPY +17 -0
- cobol_py-0.1.0/tests/testdata/gov/nist/KP005.CPY +3 -0
- cobol_py-0.1.0/tests/testdata/gov/nist/KP006.CPY +4 -0
- cobol_py-0.1.0/tests/testdata/gov/nist/KP007.CPY +5 -0
- cobol_py-0.1.0/tests/testdata/gov/nist/KP008.CPY +5 -0
- cobol_py-0.1.0/tests/testdata/gov/nist/KP009.CPY +3 -0
- cobol_py-0.1.0/tests/testdata/gov/nist/KP010.CPY +8 -0
- cobol_py-0.1.0/tests/testdata/gov/nist/KSM31.CPY +3 -0
- cobol_py-0.1.0/tests/testdata/gov/nist/KSM41.CPY +3 -0
- cobol_py-0.1.0/tests/testdata/gov/nist/NC101A.CBL +1869 -0
- cobol_py-0.1.0/tests/testdata/gov/nist/NC102A.CBL +1505 -0
- cobol_py-0.1.0/tests/testdata/gov/nist/NC103A.CBL +2141 -0
- cobol_py-0.1.0/tests/testdata/gov/nist/NC104A.CBL +2853 -0
- cobol_py-0.1.0/tests/testdata/gov/nist/NC105A.CBL +3119 -0
- cobol_py-0.1.0/tests/testdata/gov/nist/NC106A.CBL +2535 -0
- cobol_py-0.1.0/tests/testdata/gov/nist/NC107A.CBL +2035 -0
- cobol_py-0.1.0/tests/testdata/gov/nist/NC108M.CBL +779 -0
- cobol_py-0.1.0/tests/testdata/gov/nist/NC109M.CBL +966 -0
- cobol_py-0.1.0/tests/testdata/gov/nist/NC109M.DAT +13 -0
- cobol_py-0.1.0/tests/testdata/gov/nist/NC110M.CBL +91 -0
- cobol_py-0.1.0/tests/testdata/gov/nist/NC111A.CBL +480 -0
- cobol_py-0.1.0/tests/testdata/gov/nist/NC112A.CBL +1029 -0
- cobol_py-0.1.0/tests/testdata/gov/nist/NC113M.CBL +264 -0
- cobol_py-0.1.0/tests/testdata/gov/nist/NC114M.CBL +502 -0
- cobol_py-0.1.0/tests/testdata/gov/nist/NC115A.CBL +1106 -0
- cobol_py-0.1.0/tests/testdata/gov/nist/NC116A.CBL +1495 -0
- cobol_py-0.1.0/tests/testdata/gov/nist/NC117A.CBL +1210 -0
- cobol_py-0.1.0/tests/testdata/gov/nist/NC118A.CBL +1039 -0
- cobol_py-0.1.0/tests/testdata/gov/nist/NC119A.CBL +1178 -0
- cobol_py-0.1.0/tests/testdata/gov/nist/NC120A.CBL +1149 -0
- cobol_py-0.1.0/tests/testdata/gov/nist/NC121M.CBL +1290 -0
- cobol_py-0.1.0/tests/testdata/gov/nist/NC122A.CBL +1040 -0
- cobol_py-0.1.0/tests/testdata/gov/nist/NC123A.CBL +1131 -0
- cobol_py-0.1.0/tests/testdata/gov/nist/NC124A.CBL +2356 -0
- cobol_py-0.1.0/tests/testdata/gov/nist/NC125A.CBL +752 -0
- cobol_py-0.1.0/tests/testdata/gov/nist/NC126A.CBL +2638 -0
- cobol_py-0.1.0/tests/testdata/gov/nist/NC127A.CBL +351 -0
- cobol_py-0.1.0/tests/testdata/gov/nist/NC131A.CBL +470 -0
- cobol_py-0.1.0/tests/testdata/gov/nist/NC132A.CBL +796 -0
- cobol_py-0.1.0/tests/testdata/gov/nist/NC133A.CBL +715 -0
- cobol_py-0.1.0/tests/testdata/gov/nist/NC134A.CBL +715 -0
- cobol_py-0.1.0/tests/testdata/gov/nist/NC135A.CBL +523 -0
- cobol_py-0.1.0/tests/testdata/gov/nist/NC136A.CBL +491 -0
- cobol_py-0.1.0/tests/testdata/gov/nist/NC137A.CBL +505 -0
- cobol_py-0.1.0/tests/testdata/gov/nist/NC138A.CBL +656 -0
- cobol_py-0.1.0/tests/testdata/gov/nist/NC139A.CBL +619 -0
- cobol_py-0.1.0/tests/testdata/gov/nist/NC140A.CBL +751 -0
- cobol_py-0.1.0/tests/testdata/gov/nist/NC141A.CBL +509 -0
- cobol_py-0.1.0/tests/testdata/gov/nist/NC170A.CBL +2017 -0
- cobol_py-0.1.0/tests/testdata/gov/nist/NC171A.CBL +2270 -0
- cobol_py-0.1.0/tests/testdata/gov/nist/NC172A.CBL +2217 -0
- cobol_py-0.1.0/tests/testdata/gov/nist/NC173A.CBL +2220 -0
- cobol_py-0.1.0/tests/testdata/gov/nist/NC174A.CBL +1937 -0
- cobol_py-0.1.0/tests/testdata/gov/nist/NC175A.CBL +2081 -0
- cobol_py-0.1.0/tests/testdata/gov/nist/NC176A.CBL +2419 -0
- cobol_py-0.1.0/tests/testdata/gov/nist/NC177A.CBL +2139 -0
- cobol_py-0.1.0/tests/testdata/gov/nist/NC201A.CBL +2122 -0
- cobol_py-0.1.0/tests/testdata/gov/nist/NC202A.CBL +2221 -0
- cobol_py-0.1.0/tests/testdata/gov/nist/NC203A.CBL +1695 -0
- cobol_py-0.1.0/tests/testdata/gov/nist/NC204M.CBL +1209 -0
- cobol_py-0.1.0/tests/testdata/gov/nist/NC204M.DAT +19 -0
- cobol_py-0.1.0/tests/testdata/gov/nist/NC205A.CBL +806 -0
- cobol_py-0.1.0/tests/testdata/gov/nist/NC206A.CBL +1697 -0
- cobol_py-0.1.0/tests/testdata/gov/nist/NC207A.CBL +2725 -0
- cobol_py-0.1.0/tests/testdata/gov/nist/NC208A.CBL +1132 -0
- cobol_py-0.1.0/tests/testdata/gov/nist/NC209A.CBL +968 -0
- cobol_py-0.1.0/tests/testdata/gov/nist/NC210A.CBL +739 -0
- cobol_py-0.1.0/tests/testdata/gov/nist/NC211A.CBL +1898 -0
- cobol_py-0.1.0/tests/testdata/gov/nist/NC214M.CBL +411 -0
- cobol_py-0.1.0/tests/testdata/gov/nist/NC215A.CBL +485 -0
- cobol_py-0.1.0/tests/testdata/gov/nist/NC216A.CBL +2229 -0
- cobol_py-0.1.0/tests/testdata/gov/nist/NC217A.CBL +2189 -0
- cobol_py-0.1.0/tests/testdata/gov/nist/NC218A.CBL +3079 -0
- cobol_py-0.1.0/tests/testdata/gov/nist/NC219A.CBL +593 -0
- cobol_py-0.1.0/tests/testdata/gov/nist/NC220M.CBL +1039 -0
- cobol_py-0.1.0/tests/testdata/gov/nist/NC221A.CBL +963 -0
- cobol_py-0.1.0/tests/testdata/gov/nist/NC222A.CBL +554 -0
- cobol_py-0.1.0/tests/testdata/gov/nist/NC223A.CBL +2292 -0
- cobol_py-0.1.0/tests/testdata/gov/nist/NC224A.CBL +649 -0
- cobol_py-0.1.0/tests/testdata/gov/nist/NC225A.CBL +1926 -0
- cobol_py-0.1.0/tests/testdata/gov/nist/NC231A.CBL +1112 -0
- cobol_py-0.1.0/tests/testdata/gov/nist/NC232A.CBL +925 -0
- cobol_py-0.1.0/tests/testdata/gov/nist/NC233A.CBL +883 -0
- cobol_py-0.1.0/tests/testdata/gov/nist/NC234A.CBL +924 -0
- cobol_py-0.1.0/tests/testdata/gov/nist/NC235A.CBL +628 -0
- cobol_py-0.1.0/tests/testdata/gov/nist/NC236A.CBL +586 -0
- cobol_py-0.1.0/tests/testdata/gov/nist/NC237A.CBL +663 -0
- cobol_py-0.1.0/tests/testdata/gov/nist/NC238A.CBL +660 -0
- cobol_py-0.1.0/tests/testdata/gov/nist/NC239A.CBL +530 -0
- cobol_py-0.1.0/tests/testdata/gov/nist/NC240A.CBL +695 -0
- cobol_py-0.1.0/tests/testdata/gov/nist/NC241A.CBL +673 -0
- cobol_py-0.1.0/tests/testdata/gov/nist/NC242A.CBL +577 -0
- cobol_py-0.1.0/tests/testdata/gov/nist/NC243A.CBL +704 -0
- cobol_py-0.1.0/tests/testdata/gov/nist/NC244A.CBL +513 -0
- cobol_py-0.1.0/tests/testdata/gov/nist/NC245A.CBL +539 -0
- cobol_py-0.1.0/tests/testdata/gov/nist/NC246A.CBL +1322 -0
- cobol_py-0.1.0/tests/testdata/gov/nist/NC247A.CBL +866 -0
- cobol_py-0.1.0/tests/testdata/gov/nist/NC248A.CBL +623 -0
- cobol_py-0.1.0/tests/testdata/gov/nist/NC250A.CBL +1973 -0
- cobol_py-0.1.0/tests/testdata/gov/nist/NC251A.CBL +1419 -0
- cobol_py-0.1.0/tests/testdata/gov/nist/NC252A.CBL +1712 -0
- cobol_py-0.1.0/tests/testdata/gov/nist/NC253A.CBL +1980 -0
- cobol_py-0.1.0/tests/testdata/gov/nist/NC254A.CBL +673 -0
- cobol_py-0.1.0/tests/testdata/gov/nist/NC302M.CBL +53 -0
- cobol_py-0.1.0/tests/testdata/gov/nist/NC303M.CBL +34 -0
- cobol_py-0.1.0/tests/testdata/gov/nist/NC401M.CBL +334 -0
- cobol_py-0.1.0/tests/testdata/gov/nist/OBIC1A.CBL +82 -0
- cobol_py-0.1.0/tests/testdata/gov/nist/OBIC2A.CBL +312 -0
- cobol_py-0.1.0/tests/testdata/gov/nist/OBIC3A.CBL +338 -0
- cobol_py-0.1.0/tests/testdata/gov/nist/OBNC1M.CBL +784 -0
- cobol_py-0.1.0/tests/testdata/gov/nist/OBNC2M.CBL +931 -0
- cobol_py-0.1.0/tests/testdata/gov/nist/OBSQ1A.CBL +631 -0
- cobol_py-0.1.0/tests/testdata/gov/nist/OBSQ3A.CBL +649 -0
- cobol_py-0.1.0/tests/testdata/gov/nist/OBSQ4A.CBL +576 -0
- cobol_py-0.1.0/tests/testdata/gov/nist/OBSQ5A.CBL +628 -0
- cobol_py-0.1.0/tests/testdata/gov/nist/RL101A.CBL +459 -0
- cobol_py-0.1.0/tests/testdata/gov/nist/RL102A.CBL +619 -0
- cobol_py-0.1.0/tests/testdata/gov/nist/RL103A.CBL +618 -0
- cobol_py-0.1.0/tests/testdata/gov/nist/RL104A.CBL +641 -0
- cobol_py-0.1.0/tests/testdata/gov/nist/RL105A.CBL +635 -0
- cobol_py-0.1.0/tests/testdata/gov/nist/RL106A.CBL +816 -0
- cobol_py-0.1.0/tests/testdata/gov/nist/RL107A.CBL +793 -0
- cobol_py-0.1.0/tests/testdata/gov/nist/RL108A.CBL +464 -0
- cobol_py-0.1.0/tests/testdata/gov/nist/RL109A.CBL +647 -0
- cobol_py-0.1.0/tests/testdata/gov/nist/RL110A.CBL +624 -0
- cobol_py-0.1.0/tests/testdata/gov/nist/RL111A.CBL +1096 -0
- cobol_py-0.1.0/tests/testdata/gov/nist/RL112A.CBL +644 -0
- cobol_py-0.1.0/tests/testdata/gov/nist/RL113A.CBL +814 -0
- cobol_py-0.1.0/tests/testdata/gov/nist/RL114A.CBL +826 -0
- cobol_py-0.1.0/tests/testdata/gov/nist/RL115A.CBL +721 -0
- cobol_py-0.1.0/tests/testdata/gov/nist/RL116A.CBL +616 -0
- cobol_py-0.1.0/tests/testdata/gov/nist/RL117A.CBL +606 -0
- cobol_py-0.1.0/tests/testdata/gov/nist/RL118A.CBL +556 -0
- cobol_py-0.1.0/tests/testdata/gov/nist/RL119A.CBL +547 -0
- cobol_py-0.1.0/tests/testdata/gov/nist/RL201A.CBL +446 -0
- cobol_py-0.1.0/tests/testdata/gov/nist/RL202A.CBL +619 -0
- cobol_py-0.1.0/tests/testdata/gov/nist/RL203A.CBL +616 -0
- cobol_py-0.1.0/tests/testdata/gov/nist/RL204A.CBL +646 -0
- cobol_py-0.1.0/tests/testdata/gov/nist/RL205A.CBL +2412 -0
- cobol_py-0.1.0/tests/testdata/gov/nist/RL206A.CBL +565 -0
- cobol_py-0.1.0/tests/testdata/gov/nist/RL207A.CBL +1066 -0
- cobol_py-0.1.0/tests/testdata/gov/nist/RL208A.CBL +617 -0
- cobol_py-0.1.0/tests/testdata/gov/nist/RL209A.CBL +462 -0
- cobol_py-0.1.0/tests/testdata/gov/nist/RL210A.CBL +489 -0
- cobol_py-0.1.0/tests/testdata/gov/nist/RL211A.CBL +555 -0
- cobol_py-0.1.0/tests/testdata/gov/nist/RL212A.CBL +446 -0
- cobol_py-0.1.0/tests/testdata/gov/nist/RL213A.CBL +477 -0
- cobol_py-0.1.0/tests/testdata/gov/nist/RL301M.CBL +69 -0
- cobol_py-0.1.0/tests/testdata/gov/nist/RL302M.CBL +72 -0
- cobol_py-0.1.0/tests/testdata/gov/nist/RL401M.CBL +80 -0
- cobol_py-0.1.0/tests/testdata/gov/nist/RW101A.CBL +554 -0
- cobol_py-0.1.0/tests/testdata/gov/nist/RW102A.CBL +452 -0
- cobol_py-0.1.0/tests/testdata/gov/nist/RW103A.CBL +716 -0
- cobol_py-0.1.0/tests/testdata/gov/nist/RW104A.CBL +731 -0
- cobol_py-0.1.0/tests/testdata/gov/nist/RW301M.CBL +86 -0
- cobol_py-0.1.0/tests/testdata/gov/nist/RW302M.CBL +81 -0
- cobol_py-0.1.0/tests/testdata/gov/nist/SG101A.CBL +2851 -0
- cobol_py-0.1.0/tests/testdata/gov/nist/SG102A.CBL +612 -0
- cobol_py-0.1.0/tests/testdata/gov/nist/SG103A.CBL +487 -0
- cobol_py-0.1.0/tests/testdata/gov/nist/SG104A.CBL +594 -0
- cobol_py-0.1.0/tests/testdata/gov/nist/SG105A.CBL +594 -0
- cobol_py-0.1.0/tests/testdata/gov/nist/SG106A.CBL +594 -0
- cobol_py-0.1.0/tests/testdata/gov/nist/SG201A.CBL +1952 -0
- cobol_py-0.1.0/tests/testdata/gov/nist/SG202A.CBL +434 -0
- cobol_py-0.1.0/tests/testdata/gov/nist/SG203A.CBL +796 -0
- cobol_py-0.1.0/tests/testdata/gov/nist/SG204A.CBL +882 -0
- cobol_py-0.1.0/tests/testdata/gov/nist/SG302M.CBL +23 -0
- cobol_py-0.1.0/tests/testdata/gov/nist/SG303M.CBL +39 -0
- cobol_py-0.1.0/tests/testdata/gov/nist/SG401M.CBL +41 -0
- cobol_py-0.1.0/tests/testdata/gov/nist/SM101A.CBL +571 -0
- cobol_py-0.1.0/tests/testdata/gov/nist/SM102A.CBL +395 -0
- cobol_py-0.1.0/tests/testdata/gov/nist/SM103A.CBL +557 -0
- cobol_py-0.1.0/tests/testdata/gov/nist/SM104A.CBL +451 -0
- cobol_py-0.1.0/tests/testdata/gov/nist/SM105A.CBL +614 -0
- cobol_py-0.1.0/tests/testdata/gov/nist/SM106A.CBL +31 -0
- cobol_py-0.1.0/tests/testdata/gov/nist/SM107A.CBL +314 -0
- cobol_py-0.1.0/tests/testdata/gov/nist/SM201A.CBL +636 -0
- cobol_py-0.1.0/tests/testdata/gov/nist/SM202A.CBL +531 -0
- cobol_py-0.1.0/tests/testdata/gov/nist/SM203A.CBL +381 -0
- cobol_py-0.1.0/tests/testdata/gov/nist/SM204A.CBL +399 -0
- cobol_py-0.1.0/tests/testdata/gov/nist/SM205A.CBL +623 -0
- cobol_py-0.1.0/tests/testdata/gov/nist/SM206A.CBL +713 -0
- cobol_py-0.1.0/tests/testdata/gov/nist/SM207A.CBL +364 -0
- cobol_py-0.1.0/tests/testdata/gov/nist/SM208A.CBL +644 -0
- cobol_py-0.1.0/tests/testdata/gov/nist/SM301M.CBL +29 -0
- cobol_py-0.1.0/tests/testdata/gov/nist/SM401M.CBL +32 -0
- cobol_py-0.1.0/tests/testdata/gov/nist/SQ101M.CBL +1883 -0
- cobol_py-0.1.0/tests/testdata/gov/nist/SQ102A.CBL +843 -0
- cobol_py-0.1.0/tests/testdata/gov/nist/SQ103A.CBL +1057 -0
- cobol_py-0.1.0/tests/testdata/gov/nist/SQ104A.CBL +847 -0
- cobol_py-0.1.0/tests/testdata/gov/nist/SQ105A.CBL +1176 -0
- cobol_py-0.1.0/tests/testdata/gov/nist/SQ106A.CBL +2662 -0
- cobol_py-0.1.0/tests/testdata/gov/nist/SQ107A.CBL +710 -0
- cobol_py-0.1.0/tests/testdata/gov/nist/SQ108A.CBL +801 -0
- cobol_py-0.1.0/tests/testdata/gov/nist/SQ109M.CBL +617 -0
- cobol_py-0.1.0/tests/testdata/gov/nist/SQ110M.CBL +617 -0
- cobol_py-0.1.0/tests/testdata/gov/nist/SQ111A.CBL +493 -0
- cobol_py-0.1.0/tests/testdata/gov/nist/SQ112A.CBL +688 -0
- cobol_py-0.1.0/tests/testdata/gov/nist/SQ113A.CBL +1024 -0
- cobol_py-0.1.0/tests/testdata/gov/nist/SQ114A.CBL +964 -0
- cobol_py-0.1.0/tests/testdata/gov/nist/SQ115A.CBL +586 -0
- cobol_py-0.1.0/tests/testdata/gov/nist/SQ116A.CBL +959 -0
- cobol_py-0.1.0/tests/testdata/gov/nist/SQ117A.CBL +819 -0
- cobol_py-0.1.0/tests/testdata/gov/nist/SQ121A.CBL +610 -0
- cobol_py-0.1.0/tests/testdata/gov/nist/SQ122A.CBL +758 -0
- cobol_py-0.1.0/tests/testdata/gov/nist/SQ123A.CBL +906 -0
- cobol_py-0.1.0/tests/testdata/gov/nist/SQ124A.CBL +1194 -0
- cobol_py-0.1.0/tests/testdata/gov/nist/SQ125A.CBL +602 -0
- cobol_py-0.1.0/tests/testdata/gov/nist/SQ126A.CBL +737 -0
- cobol_py-0.1.0/tests/testdata/gov/nist/SQ127A.CBL +621 -0
- cobol_py-0.1.0/tests/testdata/gov/nist/SQ128A.CBL +554 -0
- cobol_py-0.1.0/tests/testdata/gov/nist/SQ129A.CBL +627 -0
- cobol_py-0.1.0/tests/testdata/gov/nist/SQ130A.CBL +526 -0
- cobol_py-0.1.0/tests/testdata/gov/nist/SQ131A.CBL +585 -0
- cobol_py-0.1.0/tests/testdata/gov/nist/SQ132A.CBL +584 -0
- cobol_py-0.1.0/tests/testdata/gov/nist/SQ133A.CBL +1115 -0
- cobol_py-0.1.0/tests/testdata/gov/nist/SQ134A.CBL +1092 -0
- cobol_py-0.1.0/tests/testdata/gov/nist/SQ135A.CBL +598 -0
- cobol_py-0.1.0/tests/testdata/gov/nist/SQ136A.CBL +815 -0
- cobol_py-0.1.0/tests/testdata/gov/nist/SQ137A.CBL +837 -0
- cobol_py-0.1.0/tests/testdata/gov/nist/SQ138A.CBL +833 -0
- cobol_py-0.1.0/tests/testdata/gov/nist/SQ139A.CBL +652 -0
- cobol_py-0.1.0/tests/testdata/gov/nist/SQ140A.CBL +660 -0
- cobol_py-0.1.0/tests/testdata/gov/nist/SQ141A.CBL +627 -0
- cobol_py-0.1.0/tests/testdata/gov/nist/SQ142A.CBL +630 -0
- cobol_py-0.1.0/tests/testdata/gov/nist/SQ143A.CBL +481 -0
- cobol_py-0.1.0/tests/testdata/gov/nist/SQ144A.CBL +771 -0
- cobol_py-0.1.0/tests/testdata/gov/nist/SQ146A.CBL +512 -0
- cobol_py-0.1.0/tests/testdata/gov/nist/SQ147A.CBL +615 -0
- cobol_py-0.1.0/tests/testdata/gov/nist/SQ148A.CBL +654 -0
- cobol_py-0.1.0/tests/testdata/gov/nist/SQ149A.CBL +507 -0
- cobol_py-0.1.0/tests/testdata/gov/nist/SQ150A.CBL +514 -0
- cobol_py-0.1.0/tests/testdata/gov/nist/SQ151A.CBL +600 -0
- cobol_py-0.1.0/tests/testdata/gov/nist/SQ152A.CBL +609 -0
- cobol_py-0.1.0/tests/testdata/gov/nist/SQ153A.CBL +598 -0
- cobol_py-0.1.0/tests/testdata/gov/nist/SQ154A.CBL +505 -0
- cobol_py-0.1.0/tests/testdata/gov/nist/SQ155A.CBL +518 -0
- cobol_py-0.1.0/tests/testdata/gov/nist/SQ156A.CBL +518 -0
- cobol_py-0.1.0/tests/testdata/gov/nist/SQ201M.CBL +780 -0
- cobol_py-0.1.0/tests/testdata/gov/nist/SQ202A.CBL +450 -0
- cobol_py-0.1.0/tests/testdata/gov/nist/SQ203A.CBL +555 -0
- cobol_py-0.1.0/tests/testdata/gov/nist/SQ204A.CBL +619 -0
- cobol_py-0.1.0/tests/testdata/gov/nist/SQ205A.CBL +573 -0
- cobol_py-0.1.0/tests/testdata/gov/nist/SQ206A.CBL +691 -0
- cobol_py-0.1.0/tests/testdata/gov/nist/SQ207M.CBL +442 -0
- cobol_py-0.1.0/tests/testdata/gov/nist/SQ208M.CBL +666 -0
- cobol_py-0.1.0/tests/testdata/gov/nist/SQ209M.CBL +461 -0
- cobol_py-0.1.0/tests/testdata/gov/nist/SQ210M.CBL +376 -0
- cobol_py-0.1.0/tests/testdata/gov/nist/SQ211A.CBL +556 -0
- cobol_py-0.1.0/tests/testdata/gov/nist/SQ212A.CBL +769 -0
- cobol_py-0.1.0/tests/testdata/gov/nist/SQ213A.CBL +642 -0
- cobol_py-0.1.0/tests/testdata/gov/nist/SQ214A.CBL +572 -0
- cobol_py-0.1.0/tests/testdata/gov/nist/SQ215A.CBL +650 -0
- cobol_py-0.1.0/tests/testdata/gov/nist/SQ216A.CBL +610 -0
- cobol_py-0.1.0/tests/testdata/gov/nist/SQ217A.CBL +611 -0
- cobol_py-0.1.0/tests/testdata/gov/nist/SQ218A.CBL +701 -0
- cobol_py-0.1.0/tests/testdata/gov/nist/SQ219A.CBL +704 -0
- cobol_py-0.1.0/tests/testdata/gov/nist/SQ220A.CBL +722 -0
- cobol_py-0.1.0/tests/testdata/gov/nist/SQ221A.CBL +719 -0
- cobol_py-0.1.0/tests/testdata/gov/nist/SQ222A.CBL +703 -0
- cobol_py-0.1.0/tests/testdata/gov/nist/SQ223A.CBL +713 -0
- cobol_py-0.1.0/tests/testdata/gov/nist/SQ224A.CBL +573 -0
- cobol_py-0.1.0/tests/testdata/gov/nist/SQ225A.CBL +654 -0
- cobol_py-0.1.0/tests/testdata/gov/nist/SQ226A.CBL +1652 -0
- cobol_py-0.1.0/tests/testdata/gov/nist/SQ227A.CBL +1114 -0
- cobol_py-0.1.0/tests/testdata/gov/nist/SQ228A.CBL +785 -0
- cobol_py-0.1.0/tests/testdata/gov/nist/SQ229A.CBL +611 -0
- cobol_py-0.1.0/tests/testdata/gov/nist/SQ230A.CBL +514 -0
- cobol_py-0.1.0/tests/testdata/gov/nist/SQ302M.CBL +70 -0
- cobol_py-0.1.0/tests/testdata/gov/nist/SQ303M.CBL +51 -0
- cobol_py-0.1.0/tests/testdata/gov/nist/SQ401M.CBL +139 -0
- cobol_py-0.1.0/tests/testdata/gov/nist/ST101A.CBL +577 -0
- cobol_py-0.1.0/tests/testdata/gov/nist/ST102A.CBL +80 -0
- cobol_py-0.1.0/tests/testdata/gov/nist/ST103A.CBL +475 -0
- cobol_py-0.1.0/tests/testdata/gov/nist/ST104A.CBL +354 -0
- cobol_py-0.1.0/tests/testdata/gov/nist/ST105A.CBL +447 -0
- cobol_py-0.1.0/tests/testdata/gov/nist/ST106A.CBL +402 -0
- cobol_py-0.1.0/tests/testdata/gov/nist/ST107A.CBL +524 -0
- cobol_py-0.1.0/tests/testdata/gov/nist/ST108A.CBL +621 -0
- cobol_py-0.1.0/tests/testdata/gov/nist/ST109A.CBL +370 -0
- cobol_py-0.1.0/tests/testdata/gov/nist/ST110A.CBL +107 -0
- cobol_py-0.1.0/tests/testdata/gov/nist/ST111A.CBL +499 -0
- cobol_py-0.1.0/tests/testdata/gov/nist/ST112M.CBL +388 -0
- cobol_py-0.1.0/tests/testdata/gov/nist/ST113M.CBL +69 -0
- cobol_py-0.1.0/tests/testdata/gov/nist/ST114M.CBL +469 -0
- cobol_py-0.1.0/tests/testdata/gov/nist/ST115A.CBL +520 -0
- cobol_py-0.1.0/tests/testdata/gov/nist/ST116A.CBL +186 -0
- cobol_py-0.1.0/tests/testdata/gov/nist/ST117A.CBL +552 -0
- cobol_py-0.1.0/tests/testdata/gov/nist/ST118A.CBL +631 -0
- cobol_py-0.1.0/tests/testdata/gov/nist/ST119A.CBL +1001 -0
- cobol_py-0.1.0/tests/testdata/gov/nist/ST120A.CBL +80 -0
- cobol_py-0.1.0/tests/testdata/gov/nist/ST121A.CBL +475 -0
- cobol_py-0.1.0/tests/testdata/gov/nist/ST122A.CBL +379 -0
- cobol_py-0.1.0/tests/testdata/gov/nist/ST123A.CBL +123 -0
- cobol_py-0.1.0/tests/testdata/gov/nist/ST124A.CBL +512 -0
- cobol_py-0.1.0/tests/testdata/gov/nist/ST125A.CBL +436 -0
- cobol_py-0.1.0/tests/testdata/gov/nist/ST126A.CBL +962 -0
- cobol_py-0.1.0/tests/testdata/gov/nist/ST127A.CBL +1003 -0
- cobol_py-0.1.0/tests/testdata/gov/nist/ST131A.CBL +962 -0
- cobol_py-0.1.0/tests/testdata/gov/nist/ST132A.CBL +745 -0
- cobol_py-0.1.0/tests/testdata/gov/nist/ST133A.CBL +907 -0
- cobol_py-0.1.0/tests/testdata/gov/nist/ST134A.CBL +619 -0
- cobol_py-0.1.0/tests/testdata/gov/nist/ST135A.CBL +595 -0
- cobol_py-0.1.0/tests/testdata/gov/nist/ST136A.CBL +556 -0
- cobol_py-0.1.0/tests/testdata/gov/nist/ST137A.CBL +749 -0
- cobol_py-0.1.0/tests/testdata/gov/nist/ST139A.CBL +866 -0
- cobol_py-0.1.0/tests/testdata/gov/nist/ST140A.CBL +949 -0
- cobol_py-0.1.0/tests/testdata/gov/nist/ST144A.CBL +953 -0
- cobol_py-0.1.0/tests/testdata/gov/nist/ST146A.CBL +690 -0
- cobol_py-0.1.0/tests/testdata/gov/nist/ST147A.CBL +1317 -0
- cobol_py-0.1.0/tests/testdata/gov/nist/ST301M.CBL +86 -0
- cobol_py-0.1.0/tests/testdata/io/proleap/cobol/asg/ASGElement.cbl +4 -0
- cobol_py-0.1.0/tests/testdata/io/proleap/cobol/asg/HelloWorld.cbl +7 -0
- cobol_py-0.1.0/tests/testdata/io/proleap/cobol/asg/InvalidKeyword.cbl +2 -0
- cobol_py-0.1.0/tests/testdata/io/proleap/cobol/asg/InvalidLineFormat.cbl +2 -0
- cobol_py-0.1.0/tests/testdata/io/proleap/cobol/asg/call/DataDescriptionEntryCall.cbl +7 -0
- cobol_py-0.1.0/tests/testdata/io/proleap/cobol/asg/call/FileDataDescriptionEntryCall.cbl +60 -0
- cobol_py-0.1.0/tests/testdata/io/proleap/cobol/asg/call/FileDescriptionEntryFromFileControlClauseCall.cbl +21 -0
- cobol_py-0.1.0/tests/testdata/io/proleap/cobol/asg/call/FunctionCall.cbl +55 -0
- cobol_py-0.1.0/tests/testdata/io/proleap/cobol/asg/call/FunctionDateOfIntegerCall.cbl +9 -0
- cobol_py-0.1.0/tests/testdata/io/proleap/cobol/asg/call/InDataCall.cbl +11 -0
- cobol_py-0.1.0/tests/testdata/io/proleap/cobol/asg/call/InDataInvalidCall.cbl +8 -0
- cobol_py-0.1.0/tests/testdata/io/proleap/cobol/asg/call/ParagraphCall.cbl +7 -0
- cobol_py-0.1.0/tests/testdata/io/proleap/cobol/asg/call/ParagraphInSectionCall.cbl +10 -0
- cobol_py-0.1.0/tests/testdata/io/proleap/cobol/asg/call/RecordCall.cbl +26 -0
- cobol_py-0.1.0/tests/testdata/io/proleap/cobol/asg/call/SectionCall.cbl +7 -0
- cobol_py-0.1.0/tests/testdata/io/proleap/cobol/asg/call/SpecialRegisterCall.cbl +31 -0
- cobol_py-0.1.0/tests/testdata/io/proleap/cobol/asg/call/TableCall.cbl +19 -0
- cobol_py-0.1.0/tests/testdata/io/proleap/cobol/asg/data/communication/CommunicationDescriptionInput.cbl +16 -0
- cobol_py-0.1.0/tests/testdata/io/proleap/cobol/asg/data/communication/CommunicationDescriptionInput.cbl.tree +0 -0
- cobol_py-0.1.0/tests/testdata/io/proleap/cobol/asg/data/communication/CommunicationDescriptionInputOutput.cbl +13 -0
- cobol_py-0.1.0/tests/testdata/io/proleap/cobol/asg/data/communication/CommunicationDescriptionOutput.cbl +13 -0
- cobol_py-0.1.0/tests/testdata/io/proleap/cobol/asg/data/database/Database.cbl +6 -0
- cobol_py-0.1.0/tests/testdata/io/proleap/cobol/asg/data/file/FileControlRead.cbl +20 -0
- cobol_py-0.1.0/tests/testdata/io/proleap/cobol/asg/data/file/FileDescriptionEntry.cbl +19 -0
- cobol_py-0.1.0/tests/testdata/io/proleap/cobol/asg/data/linkage/DataDescription01.cbl +7 -0
- cobol_py-0.1.0/tests/testdata/io/proleap/cobol/asg/data/localstorage/DataDescription01.cbl +8 -0
- cobol_py-0.1.0/tests/testdata/io/proleap/cobol/asg/data/localstorage/DataDescription02.cbl +6 -0
- cobol_py-0.1.0/tests/testdata/io/proleap/cobol/asg/data/programlibrary/ProgramLibraryExport.cbl +8 -0
- cobol_py-0.1.0/tests/testdata/io/proleap/cobol/asg/data/programlibrary/ProgramLibraryImport.cbl +17 -0
- cobol_py-0.1.0/tests/testdata/io/proleap/cobol/asg/data/report/ReportDescription.cbl +22 -0
- cobol_py-0.1.0/tests/testdata/io/proleap/cobol/asg/data/report/ReportGroupDescriptionHierarchy.cbl +13 -0
- cobol_py-0.1.0/tests/testdata/io/proleap/cobol/asg/data/report/ReportGroupDescriptionPrintable.cbl +17 -0
- cobol_py-0.1.0/tests/testdata/io/proleap/cobol/asg/data/report/ReportGroupDescriptionSingle.cbl +10 -0
- cobol_py-0.1.0/tests/testdata/io/proleap/cobol/asg/data/report/ReportGroupDescriptionSource.cbl +9 -0
- cobol_py-0.1.0/tests/testdata/io/proleap/cobol/asg/data/report/ReportGroupDescriptionVertical.cbl +12 -0
- cobol_py-0.1.0/tests/testdata/io/proleap/cobol/asg/data/screen/Screen.cbl +9 -0
- cobol_py-0.1.0/tests/testdata/io/proleap/cobol/asg/data/screen/ScreenFiller.cbl +5 -0
- cobol_py-0.1.0/tests/testdata/io/proleap/cobol/asg/data/screen/ScreenUsing.cbl +7 -0
- cobol_py-0.1.0/tests/testdata/io/proleap/cobol/asg/data/workingstorage/BinaryDataDescriptionEntry.cbl +11 -0
- cobol_py-0.1.0/tests/testdata/io/proleap/cobol/asg/data/workingstorage/DataDescription01.cbl +8 -0
- cobol_py-0.1.0/tests/testdata/io/proleap/cobol/asg/data/workingstorage/DataDescription66Group.cbl +8 -0
- cobol_py-0.1.0/tests/testdata/io/proleap/cobol/asg/data/workingstorage/DataDescription66Through.cbl +10 -0
- cobol_py-0.1.0/tests/testdata/io/proleap/cobol/asg/data/workingstorage/DataDescription77.cbl +6 -0
- cobol_py-0.1.0/tests/testdata/io/proleap/cobol/asg/data/workingstorage/DataDescription88.cbl +7 -0
- cobol_py-0.1.0/tests/testdata/io/proleap/cobol/asg/data/workingstorage/DataDescriptionClauses.cbl +40 -0
- cobol_py-0.1.0/tests/testdata/io/proleap/cobol/asg/data/workingstorage/DataDescriptionFiller.cbl +6 -0
- cobol_py-0.1.0/tests/testdata/io/proleap/cobol/asg/data/workingstorage/DataDescriptionFillerNested.cbl +7 -0
- cobol_py-0.1.0/tests/testdata/io/proleap/cobol/asg/data/workingstorage/DataDescriptionPicture.cbl +5 -0
- cobol_py-0.1.0/tests/testdata/io/proleap/cobol/asg/data/workingstorage/DataDescriptionRedefined.cbl +8 -0
- cobol_py-0.1.0/tests/testdata/io/proleap/cobol/asg/data/workingstorage/DataDescriptionRedefines.cbl +10 -0
- cobol_py-0.1.0/tests/testdata/io/proleap/cobol/asg/data/workingstorage/DataDescriptionValueAre.cbl +5 -0
- cobol_py-0.1.0/tests/testdata/io/proleap/cobol/asg/data/workingstorage/DataDescriptionValueBoolean.cbl +6 -0
- cobol_py-0.1.0/tests/testdata/io/proleap/cobol/asg/data/workingstorage/DataDescriptionValueFigurativeConstant.cbl +18 -0
- cobol_py-0.1.0/tests/testdata/io/proleap/cobol/asg/data/workingstorage/DataDescriptionValueNonNumeric.cbl +6 -0
- cobol_py-0.1.0/tests/testdata/io/proleap/cobol/asg/data/workingstorage/DataDescriptionValueNumeric.cbl +6 -0
- cobol_py-0.1.0/tests/testdata/io/proleap/cobol/asg/environment/configuration/ConfigurationSection.cbl +13 -0
- cobol_py-0.1.0/tests/testdata/io/proleap/cobol/asg/environment/configuration/ConfigurationSectionWrongOrder.cbl +14 -0
- cobol_py-0.1.0/tests/testdata/io/proleap/cobol/asg/environment/configuration/EmptyConfigurationSectionParagraphs.cbl +7 -0
- cobol_py-0.1.0/tests/testdata/io/proleap/cobol/asg/environment/inputoutput/filecontrol/AssignToDisk.cbl +6 -0
- cobol_py-0.1.0/tests/testdata/io/proleap/cobol/asg/environment/inputoutput/filecontrol/AssignToDynamic.cbl +6 -0
- cobol_py-0.1.0/tests/testdata/io/proleap/cobol/asg/environment/inputoutput/filecontrol/AssignToExternal.cbl +6 -0
- cobol_py-0.1.0/tests/testdata/io/proleap/cobol/asg/environment/inputoutput/filecontrol/FileControl.cbl +17 -0
- cobol_py-0.1.0/tests/testdata/io/proleap/cobol/asg/environment/inputoutput/filecontrol/FileControlDisplay.cbl +7 -0
- cobol_py-0.1.0/tests/testdata/io/proleap/cobol/asg/environment/inputoutput/filecontrol/MissingFileControl.cbl +5 -0
- cobol_py-0.1.0/tests/testdata/io/proleap/cobol/asg/environment/inputoutput/iocontrol/IoControl.cbl +10 -0
- cobol_py-0.1.0/tests/testdata/io/proleap/cobol/asg/environment/specialnames/SpecialNames.cbl +18 -0
- cobol_py-0.1.0/tests/testdata/io/proleap/cobol/asg/identification/ProgramIdCommon.cbl +2 -0
- cobol_py-0.1.0/tests/testdata/io/proleap/cobol/asg/identification/ProgramIdLibrary.cbl +2 -0
- cobol_py-0.1.0/tests/testdata/io/proleap/cobol/asg/identification/fixed/IdentificationDivision.cbl +15 -0
- cobol_py-0.1.0/tests/testdata/io/proleap/cobol/asg/identification/fixed/IdentificationDivisionEndRemarks.cbl +6 -0
- cobol_py-0.1.0/tests/testdata/io/proleap/cobol/asg/identification/fixed/IdentificationDivisionMultiline.cbl +21 -0
- cobol_py-0.1.0/tests/testdata/io/proleap/cobol/asg/identification/fixed/IdentificationDivisionWithoutDots.cbl +15 -0
- cobol_py-0.1.0/tests/testdata/io/proleap/cobol/asg/identification/tandem/IdentificationDivision.cbl +8 -0
- cobol_py-0.1.0/tests/testdata/io/proleap/cobol/asg/identification/tandem/IdentificationDivisionEndRemarks.cbl +4 -0
- cobol_py-0.1.0/tests/testdata/io/proleap/cobol/asg/identification/variable/IdentificationDivision.cbl +15 -0
- cobol_py-0.1.0/tests/testdata/io/proleap/cobol/asg/identification/variable/IdentificationDivisionComments.cbl +15 -0
- cobol_py-0.1.0/tests/testdata/io/proleap/cobol/asg/identification/variable/IdentificationDivisionEndRemarks.cbl +6 -0
- cobol_py-0.1.0/tests/testdata/io/proleap/cobol/asg/identification/variable/IdentificationDivisionMultiline.cbl +21 -0
- cobol_py-0.1.0/tests/testdata/io/proleap/cobol/asg/procedure/Paragraph.cbl +5 -0
- cobol_py-0.1.0/tests/testdata/io/proleap/cobol/asg/procedure/ParagraphRedefined.cbl +7 -0
- cobol_py-0.1.0/tests/testdata/io/proleap/cobol/asg/procedure/ProcedureDivisionGivingClause.cbl +7 -0
- cobol_py-0.1.0/tests/testdata/io/proleap/cobol/asg/procedure/ProcedureDivisionUsingClause.cbl +9 -0
- cobol_py-0.1.0/tests/testdata/io/proleap/cobol/asg/procedure/Section.cbl +5 -0
- cobol_py-0.1.0/tests/testdata/io/proleap/cobol/asg/procedure/SectionRedefined.cbl +7 -0
- cobol_py-0.1.0/tests/testdata/io/proleap/cobol/asg/procedure/SectionWithParagraphs.cbl +10 -0
- cobol_py-0.1.0/tests/testdata/io/proleap/cobol/asg/procedure/SectionWithParagraphsRedefined.cbl +10 -0
- cobol_py-0.1.0/tests/testdata/io/proleap/cobol/asg/procedure/accept/AcceptStatement.cbl +7 -0
- cobol_py-0.1.0/tests/testdata/io/proleap/cobol/asg/procedure/add/AddCorrespondingStatement.cbl +8 -0
- cobol_py-0.1.0/tests/testdata/io/proleap/cobol/asg/procedure/add/AddToGivingStatement.cbl +13 -0
- cobol_py-0.1.0/tests/testdata/io/proleap/cobol/asg/procedure/add/AddToStatement.cbl +10 -0
- cobol_py-0.1.0/tests/testdata/io/proleap/cobol/asg/procedure/alter/AlterStatement.cbl +9 -0
- cobol_py-0.1.0/tests/testdata/io/proleap/cobol/asg/procedure/call/CallStatement.cbl +9 -0
- cobol_py-0.1.0/tests/testdata/io/proleap/cobol/asg/procedure/call/CallStatementFunction.cbl +15 -0
- cobol_py-0.1.0/tests/testdata/io/proleap/cobol/asg/procedure/cancel/CancelStatement.cbl +5 -0
- cobol_py-0.1.0/tests/testdata/io/proleap/cobol/asg/procedure/close/CloseStatement.cbl +31 -0
- cobol_py-0.1.0/tests/testdata/io/proleap/cobol/asg/procedure/compute/ComputeStatement.cbl +4 -0
- cobol_py-0.1.0/tests/testdata/io/proleap/cobol/asg/procedure/compute/ComputeStatementInTable.cbl +4 -0
- cobol_py-0.1.0/tests/testdata/io/proleap/cobol/asg/procedure/continuestmt/ContinueStatement.cbl +4 -0
- cobol_py-0.1.0/tests/testdata/io/proleap/cobol/asg/procedure/delete/DeleteStatement.cbl +6 -0
- cobol_py-0.1.0/tests/testdata/io/proleap/cobol/asg/procedure/disable/DisableStatement.cbl +11 -0
- cobol_py-0.1.0/tests/testdata/io/proleap/cobol/asg/procedure/display/DisplayAtStatement.cbl +8 -0
- cobol_py-0.1.0/tests/testdata/io/proleap/cobol/asg/procedure/display/DisplayStatement.cbl +5 -0
- cobol_py-0.1.0/tests/testdata/io/proleap/cobol/asg/procedure/display/DisplayUponStatement.cbl +8 -0
- cobol_py-0.1.0/tests/testdata/io/proleap/cobol/asg/procedure/divide/DivideStatement.cbl +20 -0
- cobol_py-0.1.0/tests/testdata/io/proleap/cobol/asg/procedure/enable/EnableStatement.cbl +11 -0
- cobol_py-0.1.0/tests/testdata/io/proleap/cobol/asg/procedure/entry/EntryStatement.cbl +4 -0
- cobol_py-0.1.0/tests/testdata/io/proleap/cobol/asg/procedure/evaluate/EvaluateStatement.cbl +9 -0
- cobol_py-0.1.0/tests/testdata/io/proleap/cobol/asg/procedure/evaluate/EvaluateStatementWhenOther.cbl +6 -0
- cobol_py-0.1.0/tests/testdata/io/proleap/cobol/asg/procedure/execcics/ExecCics.cbl +32 -0
- cobol_py-0.1.0/tests/testdata/io/proleap/cobol/asg/procedure/execsql/ExecSql.cbl +17 -0
- cobol_py-0.1.0/tests/testdata/io/proleap/cobol/asg/procedure/execsql/ExecSqlBeforeParagraph.cbl +10 -0
- cobol_py-0.1.0/tests/testdata/io/proleap/cobol/asg/procedure/execsql/ExecSqlMultiline.cbl +32 -0
- cobol_py-0.1.0/tests/testdata/io/proleap/cobol/asg/procedure/execsql/ExecSqlMultilineWithDot.cbl +7 -0
- cobol_py-0.1.0/tests/testdata/io/proleap/cobol/asg/procedure/execsqlims/ExecSqlIms.cbl +24 -0
- cobol_py-0.1.0/tests/testdata/io/proleap/cobol/asg/procedure/exhibit/ExhibitStatement.cbl +4 -0
- cobol_py-0.1.0/tests/testdata/io/proleap/cobol/asg/procedure/exit/ExitProgramStatement.cbl +4 -0
- cobol_py-0.1.0/tests/testdata/io/proleap/cobol/asg/procedure/exit/ExitStatement.cbl +4 -0
- cobol_py-0.1.0/tests/testdata/io/proleap/cobol/asg/procedure/generate/GenerateStatement.cbl +8 -0
- cobol_py-0.1.0/tests/testdata/io/proleap/cobol/asg/procedure/goback/GobackStatement.cbl +4 -0
- cobol_py-0.1.0/tests/testdata/io/proleap/cobol/asg/procedure/gotostmt/GoToStatement.cbl +16 -0
- cobol_py-0.1.0/tests/testdata/io/proleap/cobol/asg/procedure/ifstmt/IfStatement.cbl +8 -0
- cobol_py-0.1.0/tests/testdata/io/proleap/cobol/asg/procedure/ifstmt/IfStatementNoThen.cbl +8 -0
- cobol_py-0.1.0/tests/testdata/io/proleap/cobol/asg/procedure/initialize/InitializeStatement.cbl +11 -0
- cobol_py-0.1.0/tests/testdata/io/proleap/cobol/asg/procedure/initiate/InitiateStatement.cbl +10 -0
- cobol_py-0.1.0/tests/testdata/io/proleap/cobol/asg/procedure/inspect/InspectConvertingStatement.cbl +7 -0
- cobol_py-0.1.0/tests/testdata/io/proleap/cobol/asg/procedure/inspect/InspectReplacingStatement.cbl +7 -0
- cobol_py-0.1.0/tests/testdata/io/proleap/cobol/asg/procedure/inspect/InspectTallyingReplacingStatement.cbl +10 -0
- cobol_py-0.1.0/tests/testdata/io/proleap/cobol/asg/procedure/inspect/InspectTallyingStatement.cbl +7 -0
- cobol_py-0.1.0/tests/testdata/io/proleap/cobol/asg/procedure/merge/MergeStatement.cbl +18 -0
- cobol_py-0.1.0/tests/testdata/io/proleap/cobol/asg/procedure/move/MoveCorrespondingToStatement.cbl +9 -0
- cobol_py-0.1.0/tests/testdata/io/proleap/cobol/asg/procedure/move/MoveToStatement.cbl +11 -0
- cobol_py-0.1.0/tests/testdata/io/proleap/cobol/asg/procedure/move/MoveToStatementQualifiedDataName.cbl +10 -0
- cobol_py-0.1.0/tests/testdata/io/proleap/cobol/asg/procedure/multiply/MultiplyGivingStatement.cbl +13 -0
- cobol_py-0.1.0/tests/testdata/io/proleap/cobol/asg/procedure/multiply/MultiplyRegularStatement.cbl +12 -0
- cobol_py-0.1.0/tests/testdata/io/proleap/cobol/asg/procedure/open/OpenStatement.cbl +28 -0
- cobol_py-0.1.0/tests/testdata/io/proleap/cobol/asg/procedure/perform/PerformEndPerformOneLine.cbl +19 -0
- cobol_py-0.1.0/tests/testdata/io/proleap/cobol/asg/procedure/perform/PerformInlineTimes.cbl +7 -0
- cobol_py-0.1.0/tests/testdata/io/proleap/cobol/asg/procedure/perform/PerformInlineUntil.cbl +9 -0
- cobol_py-0.1.0/tests/testdata/io/proleap/cobol/asg/procedure/perform/PerformInlineVarying.cbl +9 -0
- cobol_py-0.1.0/tests/testdata/io/proleap/cobol/asg/procedure/perform/PerformProcedure.cbl +12 -0
- cobol_py-0.1.0/tests/testdata/io/proleap/cobol/asg/procedure/perform/PerformProcedureThrough.cbl +15 -0
- cobol_py-0.1.0/tests/testdata/io/proleap/cobol/asg/procedure/perform/PerformProcedureTimes.cbl +7 -0
- cobol_py-0.1.0/tests/testdata/io/proleap/cobol/asg/procedure/perform/PerformProcedureUntil.cbl +8 -0
- cobol_py-0.1.0/tests/testdata/io/proleap/cobol/asg/procedure/perform/PerformProcedureVarying.cbl +6 -0
- cobol_py-0.1.0/tests/testdata/io/proleap/cobol/asg/procedure/perform/PerformSection.cbl +6 -0
- cobol_py-0.1.0/tests/testdata/io/proleap/cobol/asg/procedure/purge/PurgeStatement.cbl +4 -0
- cobol_py-0.1.0/tests/testdata/io/proleap/cobol/asg/procedure/read/ReadStatement.cbl +19 -0
- cobol_py-0.1.0/tests/testdata/io/proleap/cobol/asg/procedure/receive/ReceiveFromStatement.cbl +9 -0
- cobol_py-0.1.0/tests/testdata/io/proleap/cobol/asg/procedure/receive/ReceiveIntoStatement.cbl +6 -0
- cobol_py-0.1.0/tests/testdata/io/proleap/cobol/asg/procedure/release/ReleaseStatement.cbl +4 -0
- cobol_py-0.1.0/tests/testdata/io/proleap/cobol/asg/procedure/returnstmt/ReturnStatement.cbl +7 -0
- cobol_py-0.1.0/tests/testdata/io/proleap/cobol/asg/procedure/rewrite/RewriteStatement.cbl +7 -0
- cobol_py-0.1.0/tests/testdata/io/proleap/cobol/asg/procedure/search/SearchStatement.cbl +8 -0
- cobol_py-0.1.0/tests/testdata/io/proleap/cobol/asg/procedure/send/SendAsyncStatement.cbl +5 -0
- cobol_py-0.1.0/tests/testdata/io/proleap/cobol/asg/procedure/send/SendSyncStatement.cbl +8 -0
- cobol_py-0.1.0/tests/testdata/io/proleap/cobol/asg/procedure/set/SetByStatement.cbl +4 -0
- cobol_py-0.1.0/tests/testdata/io/proleap/cobol/asg/procedure/set/SetToStatement.cbl +9 -0
- cobol_py-0.1.0/tests/testdata/io/proleap/cobol/asg/procedure/sort/SortStatement.cbl +20 -0
- cobol_py-0.1.0/tests/testdata/io/proleap/cobol/asg/procedure/start/StartStatement.cbl +7 -0
- cobol_py-0.1.0/tests/testdata/io/proleap/cobol/asg/procedure/stop/StopStatement.cbl +5 -0
- cobol_py-0.1.0/tests/testdata/io/proleap/cobol/asg/procedure/stop/StopStatementGiving.cbl +4 -0
- cobol_py-0.1.0/tests/testdata/io/proleap/cobol/asg/procedure/string/StringStatement.cbl +10 -0
- cobol_py-0.1.0/tests/testdata/io/proleap/cobol/asg/procedure/subtract/SubtractCorrespondingStatement.cbl +8 -0
- cobol_py-0.1.0/tests/testdata/io/proleap/cobol/asg/procedure/subtract/SubtractFromGivingStatement.cbl +11 -0
- cobol_py-0.1.0/tests/testdata/io/proleap/cobol/asg/procedure/subtract/SubtractFromStatement.cbl +9 -0
- cobol_py-0.1.0/tests/testdata/io/proleap/cobol/asg/procedure/terminate/TerminateStatement.cbl +4 -0
- cobol_py-0.1.0/tests/testdata/io/proleap/cobol/asg/procedure/unstring/UnstringStatement.cbl +14 -0
- cobol_py-0.1.0/tests/testdata/io/proleap/cobol/asg/procedure/unstring/UnstringStatementIndexedItem.cbl +117 -0
- cobol_py-0.1.0/tests/testdata/io/proleap/cobol/asg/procedure/use/UseStatement.cbl +15 -0
- cobol_py-0.1.0/tests/testdata/io/proleap/cobol/asg/procedure/write/WriteStatement.cbl +18 -0
- cobol_py-0.1.0/tests/testdata/io/proleap/cobol/asg/valuestmt/relation/ConditionAnd.cbl +8 -0
- cobol_py-0.1.0/tests/testdata/io/proleap/cobol/asg/valuestmt/relation/ConditionGreater.cbl +4 -0
- cobol_py-0.1.0/tests/testdata/io/proleap/cobol/asg/valuestmt/relation/ConditionGreaterOrEqual.cbl +4 -0
- cobol_py-0.1.0/tests/testdata/io/proleap/cobol/asg/valuestmt/relation/ConditionLess.cbl +4 -0
- cobol_py-0.1.0/tests/testdata/io/proleap/cobol/asg/valuestmt/relation/ConditionLessOrEqual.cbl +4 -0
- cobol_py-0.1.0/tests/testdata/io/proleap/cobol/asg/valuestmt/relation/ConditionNotEqualChar.cbl +4 -0
- cobol_py-0.1.0/tests/testdata/io/proleap/cobol/asg/valuestmt/relation/ConditionOr.cbl +8 -0
- cobol_py-0.1.0/tests/testdata/io/proleap/cobol/ast/HelloWorld.cbl +6 -0
- cobol_py-0.1.0/tests/testdata/io/proleap/cobol/ast/HelloWorld.cbl.tree +18 -0
- cobol_py-0.1.0/tests/testdata/io/proleap/cobol/ast/fixed/ExecSqlEmptyLine.cbl +7 -0
- cobol_py-0.1.0/tests/testdata/io/proleap/cobol/ast/fixed/ExecSqlEmptyLine.cbl.tree +12 -0
- cobol_py-0.1.0/tests/testdata/io/proleap/cobol/ast/fixed/ExecSqlReplaceToken.cbl +7 -0
- cobol_py-0.1.0/tests/testdata/io/proleap/cobol/ast/fixed/ExecSqlReplaceToken.cbl.tree +12 -0
- cobol_py-0.1.0/tests/testdata/io/proleap/cobol/ast/fixed/Fixed.cbl +7 -0
- cobol_py-0.1.0/tests/testdata/io/proleap/cobol/ast/fixed/Fixed.cbl.tree +18 -0
- cobol_py-0.1.0/tests/testdata/io/proleap/cobol/ast/fixed/LineContinuationMixed.cbl +50 -0
- cobol_py-0.1.0/tests/testdata/io/proleap/cobol/ast/fixed/LineContinuationMixed.cbl.tree +225 -0
- cobol_py-0.1.0/tests/testdata/io/proleap/cobol/ast/fixed/ProgramIdCommentEntry.cbl +7 -0
- cobol_py-0.1.0/tests/testdata/io/proleap/cobol/ast/fixed/ProgramIdCommentEntry.cbl.tree +9 -0
- cobol_py-0.1.0/tests/testdata/io/proleap/cobol/ast/fixed/ProgramIdNoDot.cbl +4 -0
- cobol_py-0.1.0/tests/testdata/io/proleap/cobol/ast/fixed/ProgramIdNoDot.cbl.tree +7 -0
- cobol_py-0.1.0/tests/testdata/io/proleap/cobol/ast/fixed/QuotesInCommentEntry.cbl +8 -0
- cobol_py-0.1.0/tests/testdata/io/proleap/cobol/ast/fixed/QuotesInCommentEntry.cbl.tree +21 -0
- cobol_py-0.1.0/tests/testdata/io/proleap/cobol/ast/fixed/Security.cbl +13 -0
- cobol_py-0.1.0/tests/testdata/io/proleap/cobol/ast/fixed/Security.cbl.tree +32 -0
- cobol_py-0.1.0/tests/testdata/io/proleap/cobol/ast/tandem/CommaSpace.cbl +15 -0
- cobol_py-0.1.0/tests/testdata/io/proleap/cobol/ast/tandem/CommaSpace.cbl.tree +99 -0
- cobol_py-0.1.0/tests/testdata/io/proleap/cobol/ast/tandem/ComputeStatement.cbl +4 -0
- cobol_py-0.1.0/tests/testdata/io/proleap/cobol/ast/tandem/ComputeStatement.cbl.tree +38 -0
- cobol_py-0.1.0/tests/testdata/io/proleap/cobol/ast/tandem/ComputeStatementInTable.cbl +4 -0
- cobol_py-0.1.0/tests/testdata/io/proleap/cobol/ast/tandem/ComputeStatementInTable.cbl.tree +42 -0
- cobol_py-0.1.0/tests/testdata/io/proleap/cobol/ast/tandem/Condition.cbl +6 -0
- cobol_py-0.1.0/tests/testdata/io/proleap/cobol/ast/tandem/Condition.cbl.tree +22 -0
- cobol_py-0.1.0/tests/testdata/io/proleap/cobol/ast/tandem/ConditionInAnd.cbl +6 -0
- cobol_py-0.1.0/tests/testdata/io/proleap/cobol/ast/tandem/ConditionInAnd.cbl.tree +46 -0
- cobol_py-0.1.0/tests/testdata/io/proleap/cobol/ast/tandem/ConditionInOr.cbl +6 -0
- cobol_py-0.1.0/tests/testdata/io/proleap/cobol/ast/tandem/ConditionInOr.cbl.tree +46 -0
- cobol_py-0.1.0/tests/testdata/io/proleap/cobol/ast/tandem/ConditionNameSubscript.cbl +7 -0
- cobol_py-0.1.0/tests/testdata/io/proleap/cobol/ast/tandem/ConditionNameSubscript.cbl.tree +33 -0
- cobol_py-0.1.0/tests/testdata/io/proleap/cobol/ast/tandem/ConditionNot.cbl +6 -0
- cobol_py-0.1.0/tests/testdata/io/proleap/cobol/ast/tandem/ConditionNot.cbl.tree +22 -0
- cobol_py-0.1.0/tests/testdata/io/proleap/cobol/ast/tandem/ConditionNotInAnd.cbl +6 -0
- cobol_py-0.1.0/tests/testdata/io/proleap/cobol/ast/tandem/ConditionNotInAnd.cbl.tree +46 -0
- cobol_py-0.1.0/tests/testdata/io/proleap/cobol/ast/tandem/ConditionNotInOr.cbl +6 -0
- cobol_py-0.1.0/tests/testdata/io/proleap/cobol/ast/tandem/ConditionNotInOr.cbl.tree +46 -0
- cobol_py-0.1.0/tests/testdata/io/proleap/cobol/ast/tandem/Evaluate.cbl +37 -0
- cobol_py-0.1.0/tests/testdata/io/proleap/cobol/ast/tandem/Evaluate.cbl.tree +344 -0
- cobol_py-0.1.0/tests/testdata/io/proleap/cobol/ast/tandem/InlineComment.cbl +12 -0
- cobol_py-0.1.0/tests/testdata/io/proleap/cobol/ast/tandem/InlineComment.cbl.tree +90 -0
- cobol_py-0.1.0/tests/testdata/io/proleap/cobol/ast/tandem/InlineCommentNoWs.cbl +5 -0
- cobol_py-0.1.0/tests/testdata/io/proleap/cobol/ast/tandem/InlineCommentNoWs.cbl.tree +19 -0
- cobol_py-0.1.0/tests/testdata/io/proleap/cobol/ast/tandem/Minimal.cbl +8 -0
- cobol_py-0.1.0/tests/testdata/io/proleap/cobol/ast/tandem/Minimal.cbl.tree +42 -0
- cobol_py-0.1.0/tests/testdata/io/proleap/cobol/ast/tandem/ParagraphWithoutDot.cbl +5 -0
- cobol_py-0.1.0/tests/testdata/io/proleap/cobol/ast/tandem/ParagraphWithoutDot.cbl.tree +16 -0
- cobol_py-0.1.0/tests/testdata/io/proleap/cobol/ast/tandem/Tandem.cbl +7 -0
- cobol_py-0.1.0/tests/testdata/io/proleap/cobol/ast/tandem/Tandem.cbl.tree +18 -0
- cobol_py-0.1.0/tests/testdata/io/proleap/cobol/ast/variable/AddToStatement.cbl +6 -0
- cobol_py-0.1.0/tests/testdata/io/proleap/cobol/ast/variable/AddToStatement.cbl.tree +27 -0
- cobol_py-0.1.0/tests/testdata/io/proleap/cobol/ast/variable/CopyDisplay.cbl +6 -0
- cobol_py-0.1.0/tests/testdata/io/proleap/cobol/ast/variable/CopyDisplay.cbl.tree +18 -0
- cobol_py-0.1.0/tests/testdata/io/proleap/cobol/ast/variable/CopyDisplayBook.cpy +1 -0
- cobol_py-0.1.0/tests/testdata/io/proleap/cobol/ast/variable/CopyInAdd.cbl +7 -0
- cobol_py-0.1.0/tests/testdata/io/proleap/cobol/ast/variable/CopyInAdd.cbl.tree +56 -0
- cobol_py-0.1.0/tests/testdata/io/proleap/cobol/ast/variable/CopyInAddBook.cpy +3 -0
- cobol_py-0.1.0/tests/testdata/io/proleap/cobol/ast/variable/CopyInLiteral.cbl +11 -0
- cobol_py-0.1.0/tests/testdata/io/proleap/cobol/ast/variable/CopyInLiteral.cbl.tree +39 -0
- cobol_py-0.1.0/tests/testdata/io/proleap/cobol/ast/variable/CopyInPicture.cbl +6 -0
- cobol_py-0.1.0/tests/testdata/io/proleap/cobol/ast/variable/CopyInPicture.cbl.tree +21 -0
- cobol_py-0.1.0/tests/testdata/io/proleap/cobol/ast/variable/CopyInPictureBook.cpy +2 -0
- cobol_py-0.1.0/tests/testdata/io/proleap/cobol/ast/variable/CopyNewLine.cbl +7 -0
- cobol_py-0.1.0/tests/testdata/io/proleap/cobol/ast/variable/CopyNewLine.cbl.tree +18 -0
- cobol_py-0.1.0/tests/testdata/io/proleap/cobol/ast/variable/CopyNewLineBook.cpy +1 -0
- cobol_py-0.1.0/tests/testdata/io/proleap/cobol/ast/variable/CopyReplace.cbl +7 -0
- cobol_py-0.1.0/tests/testdata/io/proleap/cobol/ast/variable/CopyReplace.cbl.tree +32 -0
- cobol_py-0.1.0/tests/testdata/io/proleap/cobol/ast/variable/CopyReplace1.cpy +1 -0
- cobol_py-0.1.0/tests/testdata/io/proleap/cobol/ast/variable/CopyReplace2.cpy +1 -0
- cobol_py-0.1.0/tests/testdata/io/proleap/cobol/ast/variable/CopyReplaceLinebreak.cbl +6 -0
- cobol_py-0.1.0/tests/testdata/io/proleap/cobol/ast/variable/CopyReplaceLinebreak.cbl.tree +17 -0
- cobol_py-0.1.0/tests/testdata/io/proleap/cobol/ast/variable/CopyReplaceLinebreakBook.cpy +2 -0
- cobol_py-0.1.0/tests/testdata/io/proleap/cobol/ast/variable/EqualOr.cbl +7 -0
- cobol_py-0.1.0/tests/testdata/io/proleap/cobol/ast/variable/EqualOr.cbl.tree +62 -0
- cobol_py-0.1.0/tests/testdata/io/proleap/cobol/ast/variable/ExecCics.cbl +34 -0
- cobol_py-0.1.0/tests/testdata/io/proleap/cobol/ast/variable/ExecCics.cbl.tree +95 -0
- cobol_py-0.1.0/tests/testdata/io/proleap/cobol/ast/variable/ExecCicsEof.cbl +4 -0
- cobol_py-0.1.0/tests/testdata/io/proleap/cobol/ast/variable/ExecCicsEof.cbl.tree +13 -0
- cobol_py-0.1.0/tests/testdata/io/proleap/cobol/ast/variable/ExecSql.cbl +17 -0
- cobol_py-0.1.0/tests/testdata/io/proleap/cobol/ast/variable/ExecSql.cbl.tree +38 -0
- cobol_py-0.1.0/tests/testdata/io/proleap/cobol/ast/variable/ExecSqlCopy.cbl +7 -0
- cobol_py-0.1.0/tests/testdata/io/proleap/cobol/ast/variable/ExecSqlCopy.cbl.tree +16 -0
- cobol_py-0.1.0/tests/testdata/io/proleap/cobol/ast/variable/FunctionCall.cbl +80 -0
- cobol_py-0.1.0/tests/testdata/io/proleap/cobol/ast/variable/FunctionCall.cbl.tree +790 -0
- cobol_py-0.1.0/tests/testdata/io/proleap/cobol/ast/variable/HelloWorldVar.cbl +6 -0
- cobol_py-0.1.0/tests/testdata/io/proleap/cobol/ast/variable/HelloWorldVar.cbl.tree +18 -0
- cobol_py-0.1.0/tests/testdata/io/proleap/cobol/ast/variable/IfElseMoveStatement.cbl +13 -0
- cobol_py-0.1.0/tests/testdata/io/proleap/cobol/ast/variable/IfElseMoveStatement.cbl.tree +63 -0
- cobol_py-0.1.0/tests/testdata/io/proleap/cobol/ast/variable/IfElseStatement.cbl +11 -0
- cobol_py-0.1.0/tests/testdata/io/proleap/cobol/ast/variable/IfElseStatement.cbl.tree +60 -0
- cobol_py-0.1.0/tests/testdata/io/proleap/cobol/ast/variable/IfStatement.cbl +15 -0
- cobol_py-0.1.0/tests/testdata/io/proleap/cobol/ast/variable/IfStatement.cbl.tree +97 -0
- cobol_py-0.1.0/tests/testdata/io/proleap/cobol/ast/variable/Literal.cbl +11 -0
- cobol_py-0.1.0/tests/testdata/io/proleap/cobol/ast/variable/Literal.cbl.tree +53 -0
- cobol_py-0.1.0/tests/testdata/io/proleap/cobol/ast/variable/MoveStatement.cbl +6 -0
- cobol_py-0.1.0/tests/testdata/io/proleap/cobol/ast/variable/MoveStatement.cbl.tree +33 -0
- cobol_py-0.1.0/tests/testdata/io/proleap/cobol/ast/variable/PictureGreedy.cbl +22 -0
- cobol_py-0.1.0/tests/testdata/io/proleap/cobol/ast/variable/PictureGreedy.cbl.tree +185 -0
- cobol_py-0.1.0/tests/testdata/io/proleap/cobol/ast/variable/ProcedureDeclaratives.cbl +10 -0
- cobol_py-0.1.0/tests/testdata/io/proleap/cobol/ast/variable/ProcedureDeclaratives.cbl.tree +34 -0
- cobol_py-0.1.0/tests/testdata/io/proleap/cobol/ast/variable/Replace.cbl +8 -0
- cobol_py-0.1.0/tests/testdata/io/proleap/cobol/ast/variable/Replace.cbl.tree +18 -0
- cobol_py-0.1.0/tests/testdata/io/proleap/cobol/ast/variable/ReplaceAmbiguous.cbl +9 -0
- cobol_py-0.1.0/tests/testdata/io/proleap/cobol/ast/variable/ReplaceAmbiguous.cbl.tree +18 -0
- cobol_py-0.1.0/tests/testdata/io/proleap/cobol/ast/variable/ReplaceMultiline.cbl +16 -0
- cobol_py-0.1.0/tests/testdata/io/proleap/cobol/ast/variable/ReplaceMultiline.cbl.tree +57 -0
- cobol_py-0.1.0/tests/testdata/io/proleap/cobol/ast/variable/StringStatement.cbl +5 -0
- cobol_py-0.1.0/tests/testdata/io/proleap/cobol/ast/variable/StringStatement.cbl.tree +64 -0
- cobol_py-0.1.0/tests/testdata/io/proleap/cobol/ast/variable/Variable.cbl +7 -0
- cobol_py-0.1.0/tests/testdata/io/proleap/cobol/ast/variable/Variable.cbl.tree +18 -0
- cobol_py-0.1.0/tests/testdata/io/proleap/cobol/ast/variable/XoptsApost.cbl +6 -0
- cobol_py-0.1.0/tests/testdata/io/proleap/cobol/ast/variable/XoptsApost.cbl.tree +9 -0
- cobol_py-0.1.0/tests/testdata/io/proleap/cobol/ast/variable/XoptsSpApost.cbl +6 -0
- cobol_py-0.1.0/tests/testdata/io/proleap/cobol/ast/variable/XoptsSpApost.cbl.tree +9 -0
- cobol_py-0.1.0/tests/testdata/io/proleap/cobol/preprocessor/copy/cobolword/variable/CopyCblWord.cbl +6 -0
- cobol_py-0.1.0/tests/testdata/io/proleap/cobol/preprocessor/copy/cobolword/variable/CopyCblWord.cbl.preprocessed +7 -0
- cobol_py-0.1.0/tests/testdata/io/proleap/cobol/preprocessor/copy/cobolword/variable/copybooks/abc.cpy +1 -0
- cobol_py-0.1.0/tests/testdata/io/proleap/cobol/preprocessor/copy/cobolwordlibrary/variable/CopyCobolWordLibrary.cbl +6 -0
- cobol_py-0.1.0/tests/testdata/io/proleap/cobol/preprocessor/copy/cobolwordlibrary/variable/CopyCobolWordLibrary.cbl.preprocessed +7 -0
- cobol_py-0.1.0/tests/testdata/io/proleap/cobol/preprocessor/copy/cobolwordlibrary/variable/copybooks/CopyBook1.cpy +1 -0
- cobol_py-0.1.0/tests/testdata/io/proleap/cobol/preprocessor/copy/copyof/CopyOf.cbl +7 -0
- cobol_py-0.1.0/tests/testdata/io/proleap/cobol/preprocessor/copy/copyof/CopyOf.cbl.preprocessed +8 -0
- cobol_py-0.1.0/tests/testdata/io/proleap/cobol/preprocessor/copy/copyof/copybooks/CopyOf1.cpy +3 -0
- cobol_py-0.1.0/tests/testdata/io/proleap/cobol/preprocessor/copy/copyreplace/variable/CopyReplace.cbl +7 -0
- cobol_py-0.1.0/tests/testdata/io/proleap/cobol/preprocessor/copy/copyreplace/variable/CopyReplace.cbl.preprocessed +9 -0
- cobol_py-0.1.0/tests/testdata/io/proleap/cobol/preprocessor/copy/copyreplace/variable/copybooks/CopyReplace1.cpy +1 -0
- cobol_py-0.1.0/tests/testdata/io/proleap/cobol/preprocessor/copy/copyreplace/variable/copybooks/CopyReplace2.cpy +1 -0
- cobol_py-0.1.0/tests/testdata/io/proleap/cobol/preprocessor/copy/extension/empty/variable/CopyNoExtension.cbl +6 -0
- cobol_py-0.1.0/tests/testdata/io/proleap/cobol/preprocessor/copy/extension/empty/variable/CopyNoExtension.cbl.preprocessed +7 -0
- cobol_py-0.1.0/tests/testdata/io/proleap/cobol/preprocessor/copy/extension/empty/variable/copybooks/SomeCopyBook +1 -0
- cobol_py-0.1.0/tests/testdata/io/proleap/cobol/preprocessor/copy/extension/precedence/variable/CopyPrecedence.cbl +5 -0
- cobol_py-0.1.0/tests/testdata/io/proleap/cobol/preprocessor/copy/extension/precedence/variable/CopyPrecedence.cbl.preprocessed +5 -0
- cobol_py-0.1.0/tests/testdata/io/proleap/cobol/preprocessor/copy/extension/precedence/variable/copybooks/SomeCopyBook +1 -0
- cobol_py-0.1.0/tests/testdata/io/proleap/cobol/preprocessor/copy/extension/precedence/variable/copybooks/SomeCopyBook.cbl +1 -0
- cobol_py-0.1.0/tests/testdata/io/proleap/cobol/preprocessor/copy/extension/precedence/variable/copybooks/SomeCopyBook.txt +1 -0
- cobol_py-0.1.0/tests/testdata/io/proleap/cobol/preprocessor/copy/extension/txt/variable/CopyTxtExtension.cbl +6 -0
- cobol_py-0.1.0/tests/testdata/io/proleap/cobol/preprocessor/copy/extension/txt/variable/CopyTxtExtension.cbl.preprocessed +7 -0
- cobol_py-0.1.0/tests/testdata/io/proleap/cobol/preprocessor/copy/extension/txt/variable/copybooks/SomeCopyBook.txt +1 -0
- cobol_py-0.1.0/tests/testdata/io/proleap/cobol/preprocessor/copy/linkage/variable/CopyLinkage.cbl +5 -0
- cobol_py-0.1.0/tests/testdata/io/proleap/cobol/preprocessor/copy/linkage/variable/CopyLinkage.cbl.preprocessed +5 -0
- cobol_py-0.1.0/tests/testdata/io/proleap/cobol/preprocessor/copy/linkage/variable/copybooks/Linkage +1 -0
- cobol_py-0.1.0/tests/testdata/io/proleap/cobol/preprocessor/copy/literallibrary/variable/CopyLiteralLibrary.cbl +6 -0
- cobol_py-0.1.0/tests/testdata/io/proleap/cobol/preprocessor/copy/literallibrary/variable/CopyLiteralLibrary.cbl.preprocessed +7 -0
- cobol_py-0.1.0/tests/testdata/io/proleap/cobol/preprocessor/copy/literallibrary/variable/copybooks/CopyBook1.cpy +1 -0
- cobol_py-0.1.0/tests/testdata/io/proleap/cobol/preprocessor/copy/literalpath/variable/CopySubDir.cbl +10 -0
- cobol_py-0.1.0/tests/testdata/io/proleap/cobol/preprocessor/copy/literalpath/variable/CopySubDir.cbl.preprocessed +15 -0
- cobol_py-0.1.0/tests/testdata/io/proleap/cobol/preprocessor/copy/literalpath/variable/copybooks/somedir/CopyBook1.cpy +1 -0
- cobol_py-0.1.0/tests/testdata/io/proleap/cobol/preprocessor/copy/literalpath/variable/copybooks/somedir/CopyBook2.cpy +1 -0
- cobol_py-0.1.0/tests/testdata/io/proleap/cobol/preprocessor/copy/literalpath/variable/copybooks/somedir/CopyBook3.cpy +1 -0
- cobol_py-0.1.0/tests/testdata/io/proleap/cobol/preprocessor/copy/literalpath/variable/copybooks/somedir/CopyBook4.cpy +1 -0
- cobol_py-0.1.0/tests/testdata/io/proleap/cobol/preprocessor/copy/literalpath/variable/copybooks/somedir/CopyBook5.cpy +1 -0
- cobol_py-0.1.0/tests/testdata/io/proleap/cobol/preprocessor/copy/suppress/fixed/CopySuppress.cbl +10 -0
- cobol_py-0.1.0/tests/testdata/io/proleap/cobol/preprocessor/copy/suppress/fixed/CopySuppress.cbl.preprocessed +7 -0
- cobol_py-0.1.0/tests/testdata/io/proleap/cobol/preprocessor/copy/suppress/fixed/copybooks/CopySuppress.cpy +1 -0
- cobol_py-0.1.0/tests/testdata/io/proleap/cobol/preprocessor/fixed/CompilerDirective.cbl +4 -0
- cobol_py-0.1.0/tests/testdata/io/proleap/cobol/preprocessor/fixed/CompilerDirective.cbl.preprocessed +4 -0
- cobol_py-0.1.0/tests/testdata/io/proleap/cobol/preprocessor/fixed/DeformedLines.cbl +8 -0
- cobol_py-0.1.0/tests/testdata/io/proleap/cobol/preprocessor/fixed/DeformedLines.cbl.preprocessed +8 -0
- cobol_py-0.1.0/tests/testdata/io/proleap/cobol/preprocessor/fixed/EmptyLines.cbl +9 -0
- cobol_py-0.1.0/tests/testdata/io/proleap/cobol/preprocessor/fixed/EmptyLines.cbl.preprocessed +9 -0
- cobol_py-0.1.0/tests/testdata/io/proleap/cobol/preprocessor/fixed/ExecCics.cbl +32 -0
- cobol_py-0.1.0/tests/testdata/io/proleap/cobol/preprocessor/fixed/ExecCics.cbl.preprocessed +32 -0
- cobol_py-0.1.0/tests/testdata/io/proleap/cobol/preprocessor/fixed/ExecSql.cbl +17 -0
- cobol_py-0.1.0/tests/testdata/io/proleap/cobol/preprocessor/fixed/ExecSql.cbl.preprocessed +17 -0
- cobol_py-0.1.0/tests/testdata/io/proleap/cobol/preprocessor/fixed/ExecSqlEmptyLine.cbl +7 -0
- cobol_py-0.1.0/tests/testdata/io/proleap/cobol/preprocessor/fixed/ExecSqlEmptyLine.cbl.preprocessed +7 -0
- cobol_py-0.1.0/tests/testdata/io/proleap/cobol/preprocessor/fixed/ExecSqlIms.cbl +24 -0
- cobol_py-0.1.0/tests/testdata/io/proleap/cobol/preprocessor/fixed/ExecSqlIms.cbl.preprocessed +24 -0
- cobol_py-0.1.0/tests/testdata/io/proleap/cobol/preprocessor/fixed/ExecSqlMultiline.cbl +32 -0
- cobol_py-0.1.0/tests/testdata/io/proleap/cobol/preprocessor/fixed/ExecSqlMultiline.cbl.preprocessed +32 -0
- cobol_py-0.1.0/tests/testdata/io/proleap/cobol/preprocessor/fixed/Fixed.cbl +7 -0
- cobol_py-0.1.0/tests/testdata/io/proleap/cobol/preprocessor/fixed/Fixed.cbl.preprocessed +7 -0
- cobol_py-0.1.0/tests/testdata/io/proleap/cobol/preprocessor/fixed/IdentificationDivision.cbl +15 -0
- cobol_py-0.1.0/tests/testdata/io/proleap/cobol/preprocessor/fixed/IdentificationDivision.cbl.preprocessed +15 -0
- cobol_py-0.1.0/tests/testdata/io/proleap/cobol/preprocessor/fixed/IdentificationDivisionMultiline.cbl +21 -0
- cobol_py-0.1.0/tests/testdata/io/proleap/cobol/preprocessor/fixed/IdentificationDivisionMultiline.cbl.preprocessed +21 -0
- cobol_py-0.1.0/tests/testdata/io/proleap/cobol/preprocessor/fixed/IdentificationDivisionWithPadding.cbl +5 -0
- cobol_py-0.1.0/tests/testdata/io/proleap/cobol/preprocessor/fixed/IdentificationDivisionWithPadding.cbl.preprocessed +5 -0
- cobol_py-0.1.0/tests/testdata/io/proleap/cobol/preprocessor/fixed/InlineCommentNoWs.cbl +5 -0
- cobol_py-0.1.0/tests/testdata/io/proleap/cobol/preprocessor/fixed/InlineCommentNoWs.cbl.preprocessed +5 -0
- cobol_py-0.1.0/tests/testdata/io/proleap/cobol/preprocessor/fixed/LineContinuation.cbl +6 -0
- cobol_py-0.1.0/tests/testdata/io/proleap/cobol/preprocessor/fixed/LineContinuation.cbl.preprocessed +5 -0
- cobol_py-0.1.0/tests/testdata/io/proleap/cobol/preprocessor/fixed/LineContinuationAmbiguousProcedureDivision.cbl +7 -0
- cobol_py-0.1.0/tests/testdata/io/proleap/cobol/preprocessor/fixed/LineContinuationAmbiguousProcedureDivision.cbl.preprocessed +6 -0
- cobol_py-0.1.0/tests/testdata/io/proleap/cobol/preprocessor/fixed/LineContinuationDoubleQuotes.cbl +5 -0
- cobol_py-0.1.0/tests/testdata/io/proleap/cobol/preprocessor/fixed/LineContinuationDoubleQuotes.cbl.preprocessed +4 -0
- cobol_py-0.1.0/tests/testdata/io/proleap/cobol/preprocessor/fixed/LineContinuationDoubleQuotesNonCompliant.cbl +10 -0
- cobol_py-0.1.0/tests/testdata/io/proleap/cobol/preprocessor/fixed/LineContinuationDoubleQuotesNonCompliant.cbl.preprocessed +8 -0
- cobol_py-0.1.0/tests/testdata/io/proleap/cobol/preprocessor/fixed/LineContinuationEscapedQuotes.cbl +8 -0
- cobol_py-0.1.0/tests/testdata/io/proleap/cobol/preprocessor/fixed/LineContinuationEscapedQuotes.cbl.preprocessed +7 -0
- cobol_py-0.1.0/tests/testdata/io/proleap/cobol/preprocessor/fixed/LineContinuationMultiple.cbl +7 -0
- cobol_py-0.1.0/tests/testdata/io/proleap/cobol/preprocessor/fixed/LineContinuationMultiple.cbl.preprocessed +5 -0
- cobol_py-0.1.0/tests/testdata/io/proleap/cobol/preprocessor/fixed/LineContinuationWhitespace.cbl +8 -0
- cobol_py-0.1.0/tests/testdata/io/proleap/cobol/preprocessor/fixed/LineContinuationWhitespace.cbl.preprocessed +7 -0
- cobol_py-0.1.0/tests/testdata/io/proleap/cobol/preprocessor/fixed/QuotesInCommentEntry.cbl +8 -0
- cobol_py-0.1.0/tests/testdata/io/proleap/cobol/preprocessor/fixed/QuotesInCommentEntry.cbl.preprocessed +8 -0
- cobol_py-0.1.0/tests/testdata/io/proleap/cobol/preprocessor/fixed/Security.cbl +13 -0
- cobol_py-0.1.0/tests/testdata/io/proleap/cobol/preprocessor/fixed/Security.cbl.preprocessed +13 -0
- cobol_py-0.1.0/tests/testdata/io/proleap/cobol/preprocessor/sub/line/writer/LineContinuation.cbl.preprocessed +3 -0
- cobol_py-0.1.0/tests/testdata/io/proleap/cobol/preprocessor/tandem/EjectStatement.cbl +5 -0
- cobol_py-0.1.0/tests/testdata/io/proleap/cobol/preprocessor/tandem/EjectStatement.cbl.preprocessed +5 -0
- cobol_py-0.1.0/tests/testdata/io/proleap/cobol/preprocessor/tandem/EmptyLines.cbl +9 -0
- cobol_py-0.1.0/tests/testdata/io/proleap/cobol/preprocessor/tandem/EmptyLines.cbl.preprocessed +9 -0
- cobol_py-0.1.0/tests/testdata/io/proleap/cobol/preprocessor/tandem/ExecCics.cbl +32 -0
- cobol_py-0.1.0/tests/testdata/io/proleap/cobol/preprocessor/tandem/ExecCics.cbl.preprocessed +32 -0
- cobol_py-0.1.0/tests/testdata/io/proleap/cobol/preprocessor/tandem/ExecSql.cbl +17 -0
- cobol_py-0.1.0/tests/testdata/io/proleap/cobol/preprocessor/tandem/ExecSql.cbl.preprocessed +17 -0
- cobol_py-0.1.0/tests/testdata/io/proleap/cobol/preprocessor/tandem/ExecSqlIms.cbl +24 -0
- cobol_py-0.1.0/tests/testdata/io/proleap/cobol/preprocessor/tandem/ExecSqlIms.cbl.preprocessed +24 -0
- cobol_py-0.1.0/tests/testdata/io/proleap/cobol/preprocessor/tandem/ExecSqlMultiline.cbl +32 -0
- cobol_py-0.1.0/tests/testdata/io/proleap/cobol/preprocessor/tandem/ExecSqlMultiline.cbl.preprocessed +32 -0
- cobol_py-0.1.0/tests/testdata/io/proleap/cobol/preprocessor/tandem/IdentificationDivisionInline.cbl +8 -0
- cobol_py-0.1.0/tests/testdata/io/proleap/cobol/preprocessor/tandem/IdentificationDivisionInline.cbl.preprocessed +8 -0
- cobol_py-0.1.0/tests/testdata/io/proleap/cobol/preprocessor/tandem/IdentificationDivisionInlineWithPadding.cbl +3 -0
- cobol_py-0.1.0/tests/testdata/io/proleap/cobol/preprocessor/tandem/IdentificationDivisionInlineWithPadding.cbl.preprocessed +3 -0
- cobol_py-0.1.0/tests/testdata/io/proleap/cobol/preprocessor/tandem/InlineCommentNoWs.cbl +5 -0
- cobol_py-0.1.0/tests/testdata/io/proleap/cobol/preprocessor/tandem/InlineCommentNoWs.cbl.preprocessed +5 -0
- cobol_py-0.1.0/tests/testdata/io/proleap/cobol/preprocessor/tandem/LineContinuation.cbl +6 -0
- cobol_py-0.1.0/tests/testdata/io/proleap/cobol/preprocessor/tandem/LineContinuation.cbl.preprocessed +5 -0
- cobol_py-0.1.0/tests/testdata/io/proleap/cobol/preprocessor/tandem/LineContinuationWhitespace.cbl +8 -0
- cobol_py-0.1.0/tests/testdata/io/proleap/cobol/preprocessor/tandem/LineContinuationWhitespace.cbl.preprocessed +7 -0
- cobol_py-0.1.0/tests/testdata/io/proleap/cobol/preprocessor/tandem/Minimal.cbl +8 -0
- cobol_py-0.1.0/tests/testdata/io/proleap/cobol/preprocessor/tandem/Minimal.cbl.preprocessed +8 -0
- cobol_py-0.1.0/tests/testdata/io/proleap/cobol/preprocessor/tandem/Skip1Statement.cbl +5 -0
- cobol_py-0.1.0/tests/testdata/io/proleap/cobol/preprocessor/tandem/Skip1Statement.cbl.preprocessed +5 -0
- cobol_py-0.1.0/tests/testdata/io/proleap/cobol/preprocessor/tandem/Skip2Statement.cbl +5 -0
- cobol_py-0.1.0/tests/testdata/io/proleap/cobol/preprocessor/tandem/Skip2Statement.cbl.preprocessed +5 -0
- cobol_py-0.1.0/tests/testdata/io/proleap/cobol/preprocessor/tandem/Skip3Statement.cbl +5 -0
- cobol_py-0.1.0/tests/testdata/io/proleap/cobol/preprocessor/tandem/Skip3Statement.cbl.preprocessed +5 -0
- cobol_py-0.1.0/tests/testdata/io/proleap/cobol/preprocessor/tandem/Tandem.cbl +7 -0
- cobol_py-0.1.0/tests/testdata/io/proleap/cobol/preprocessor/tandem/Tandem.cbl.preprocessed +7 -0
- cobol_py-0.1.0/tests/testdata/io/proleap/cobol/preprocessor/tandem/TitleStatement.cbl +6 -0
- cobol_py-0.1.0/tests/testdata/io/proleap/cobol/preprocessor/tandem/TitleStatement.cbl.preprocessed +6 -0
- cobol_py-0.1.0/tests/testdata/io/proleap/cobol/preprocessor/variable/CblOpts.cbl +13 -0
- cobol_py-0.1.0/tests/testdata/io/proleap/cobol/preprocessor/variable/CblOpts.cbl.preprocessed +13 -0
- cobol_py-0.1.0/tests/testdata/io/proleap/cobol/preprocessor/variable/CblXoptsApost.cbl +6 -0
- cobol_py-0.1.0/tests/testdata/io/proleap/cobol/preprocessor/variable/CblXoptsApost.cbl.preprocessed +6 -0
- cobol_py-0.1.0/tests/testdata/io/proleap/cobol/preprocessor/variable/CompilerOptions.cbl +62 -0
- cobol_py-0.1.0/tests/testdata/io/proleap/cobol/preprocessor/variable/CompilerOptions.cbl.preprocessed +62 -0
- cobol_py-0.1.0/tests/testdata/io/proleap/cobol/preprocessor/variable/EmptyLines.cbl +12 -0
- cobol_py-0.1.0/tests/testdata/io/proleap/cobol/preprocessor/variable/EmptyLines.cbl.preprocessed +12 -0
- cobol_py-0.1.0/tests/testdata/io/proleap/cobol/preprocessor/variable/ExecCics.cbl +32 -0
- cobol_py-0.1.0/tests/testdata/io/proleap/cobol/preprocessor/variable/ExecCics.cbl.preprocessed +32 -0
- cobol_py-0.1.0/tests/testdata/io/proleap/cobol/preprocessor/variable/ExecSql.cbl +17 -0
- cobol_py-0.1.0/tests/testdata/io/proleap/cobol/preprocessor/variable/ExecSql.cbl.preprocessed +17 -0
- cobol_py-0.1.0/tests/testdata/io/proleap/cobol/preprocessor/variable/ExecSqlIms.cbl +24 -0
- cobol_py-0.1.0/tests/testdata/io/proleap/cobol/preprocessor/variable/ExecSqlIms.cbl.preprocessed +24 -0
- cobol_py-0.1.0/tests/testdata/io/proleap/cobol/preprocessor/variable/ExecSqlMultiline.cbl +32 -0
- cobol_py-0.1.0/tests/testdata/io/proleap/cobol/preprocessor/variable/ExecSqlMultiline.cbl.preprocessed +32 -0
- cobol_py-0.1.0/tests/testdata/io/proleap/cobol/preprocessor/variable/IdentificationDivision.cbl +15 -0
- cobol_py-0.1.0/tests/testdata/io/proleap/cobol/preprocessor/variable/IdentificationDivision.cbl.preprocessed +15 -0
- cobol_py-0.1.0/tests/testdata/io/proleap/cobol/preprocessor/variable/IdentificationDivisionInline.cbl +8 -0
- cobol_py-0.1.0/tests/testdata/io/proleap/cobol/preprocessor/variable/IdentificationDivisionInline.cbl.preprocessed +8 -0
- cobol_py-0.1.0/tests/testdata/io/proleap/cobol/preprocessor/variable/IdentificationDivisionInlineWithPadding.cbl +3 -0
- cobol_py-0.1.0/tests/testdata/io/proleap/cobol/preprocessor/variable/IdentificationDivisionInlineWithPadding.cbl.preprocessed +3 -0
- cobol_py-0.1.0/tests/testdata/io/proleap/cobol/preprocessor/variable/IdentificationDivisionMultiline.cbl +21 -0
- cobol_py-0.1.0/tests/testdata/io/proleap/cobol/preprocessor/variable/IdentificationDivisionMultiline.cbl.preprocessed +21 -0
- cobol_py-0.1.0/tests/testdata/io/proleap/cobol/preprocessor/variable/IfElseMoveStatement.cbl +13 -0
- cobol_py-0.1.0/tests/testdata/io/proleap/cobol/preprocessor/variable/IfElseMoveStatement.cbl.preprocessed +13 -0
- cobol_py-0.1.0/tests/testdata/io/proleap/cobol/preprocessor/variable/IfStatement.cbl +15 -0
- cobol_py-0.1.0/tests/testdata/io/proleap/cobol/preprocessor/variable/IfStatement.cbl.preprocessed +15 -0
- cobol_py-0.1.0/tests/testdata/io/proleap/cobol/preprocessor/variable/InlineCommentNoWs.cbl +5 -0
- cobol_py-0.1.0/tests/testdata/io/proleap/cobol/preprocessor/variable/InlineCommentNoWs.cbl.preprocessed +5 -0
- cobol_py-0.1.0/tests/testdata/io/proleap/cobol/preprocessor/variable/LineContinuationWhitespace.cbl +8 -0
- cobol_py-0.1.0/tests/testdata/io/proleap/cobol/preprocessor/variable/LineContinuationWhitespace.cbl.preprocessed +7 -0
- cobol_py-0.1.0/tests/testdata/io/proleap/cobol/preprocessor/variable/ProcessXoptsApost.cbl +6 -0
- cobol_py-0.1.0/tests/testdata/io/proleap/cobol/preprocessor/variable/ProcessXoptsApost.cbl.preprocessed +6 -0
- cobol_py-0.1.0/tests/testdata/io/proleap/cobol/preprocessor/variable/Replace.cbl +8 -0
- cobol_py-0.1.0/tests/testdata/io/proleap/cobol/preprocessor/variable/Replace.cbl.preprocessed +8 -0
- cobol_py-0.1.0/tests/testdata/io/proleap/cobol/preprocessor/variable/Variable.cbl +7 -0
- cobol_py-0.1.0/tests/testdata/io/proleap/cobol/preprocessor/variable/Variable.cbl.preprocessed +7 -0
|
@@ -0,0 +1,223 @@
|
|
|
1
|
+
# Byte-compiled / optimized / DLL files
|
|
2
|
+
__pycache__/
|
|
3
|
+
*.py[codz]
|
|
4
|
+
*$py.class
|
|
5
|
+
|
|
6
|
+
# C extensions
|
|
7
|
+
*.so
|
|
8
|
+
|
|
9
|
+
# Distribution / packaging
|
|
10
|
+
.Python
|
|
11
|
+
build/
|
|
12
|
+
develop-eggs/
|
|
13
|
+
dist/
|
|
14
|
+
downloads/
|
|
15
|
+
eggs/
|
|
16
|
+
.eggs/
|
|
17
|
+
lib/
|
|
18
|
+
lib64/
|
|
19
|
+
parts/
|
|
20
|
+
sdist/
|
|
21
|
+
var/
|
|
22
|
+
wheels/
|
|
23
|
+
share/python-wheels/
|
|
24
|
+
*.egg-info/
|
|
25
|
+
.installed.cfg
|
|
26
|
+
*.egg
|
|
27
|
+
MANIFEST
|
|
28
|
+
|
|
29
|
+
# PyInstaller
|
|
30
|
+
# Usually these files are written by a python script from a template
|
|
31
|
+
# before PyInstaller builds the exe, so as to inject date/other infos into it.
|
|
32
|
+
*.manifest
|
|
33
|
+
*.spec
|
|
34
|
+
|
|
35
|
+
# Installer logs
|
|
36
|
+
pip-log.txt
|
|
37
|
+
pip-delete-this-directory.txt
|
|
38
|
+
|
|
39
|
+
# Unit test / coverage reports
|
|
40
|
+
htmlcov/
|
|
41
|
+
.tox/
|
|
42
|
+
.nox/
|
|
43
|
+
.coverage
|
|
44
|
+
.coverage.*
|
|
45
|
+
.cache
|
|
46
|
+
nosetests.xml
|
|
47
|
+
coverage.xml
|
|
48
|
+
*.cover
|
|
49
|
+
*.py.cover
|
|
50
|
+
.hypothesis/
|
|
51
|
+
.pytest_cache/
|
|
52
|
+
cover/
|
|
53
|
+
|
|
54
|
+
# Translations
|
|
55
|
+
*.mo
|
|
56
|
+
*.pot
|
|
57
|
+
|
|
58
|
+
# Django stuff:
|
|
59
|
+
*.log
|
|
60
|
+
local_settings.py
|
|
61
|
+
db.sqlite3
|
|
62
|
+
db.sqlite3-journal
|
|
63
|
+
|
|
64
|
+
# Flask stuff:
|
|
65
|
+
instance/
|
|
66
|
+
.webassets-cache
|
|
67
|
+
|
|
68
|
+
# Scrapy stuff:
|
|
69
|
+
.scrapy
|
|
70
|
+
|
|
71
|
+
# Sphinx documentation
|
|
72
|
+
docs/_build/
|
|
73
|
+
|
|
74
|
+
# PyBuilder
|
|
75
|
+
.pybuilder/
|
|
76
|
+
target/
|
|
77
|
+
|
|
78
|
+
# Jupyter Notebook
|
|
79
|
+
.ipynb_checkpoints
|
|
80
|
+
|
|
81
|
+
# IPython
|
|
82
|
+
profile_default/
|
|
83
|
+
ipython_config.py
|
|
84
|
+
|
|
85
|
+
# pyenv
|
|
86
|
+
# For a library or package, you might want to ignore these files since the code is
|
|
87
|
+
# intended to run in multiple environments; otherwise, check them in:
|
|
88
|
+
# .python-version
|
|
89
|
+
|
|
90
|
+
# pipenv
|
|
91
|
+
# According to pypa/pipenv#598, it is recommended to include Pipfile.lock in version control.
|
|
92
|
+
# However, in case of collaboration, if having platform-specific dependencies or dependencies
|
|
93
|
+
# having no cross-platform support, pipenv may install dependencies that don't work, or not
|
|
94
|
+
# install all needed dependencies.
|
|
95
|
+
# Pipfile.lock
|
|
96
|
+
|
|
97
|
+
# UV
|
|
98
|
+
# Similar to Pipfile.lock, it is generally recommended to include uv.lock in version control.
|
|
99
|
+
# This is especially recommended for binary packages to ensure reproducibility, and is more
|
|
100
|
+
# commonly ignored for libraries.
|
|
101
|
+
# uv.lock
|
|
102
|
+
|
|
103
|
+
# poetry
|
|
104
|
+
# Similar to Pipfile.lock, it is generally recommended to include poetry.lock in version control.
|
|
105
|
+
# This is especially recommended for binary packages to ensure reproducibility, and is more
|
|
106
|
+
# commonly ignored for libraries.
|
|
107
|
+
# https://python-poetry.org/docs/basic-usage/#commit-your-poetrylock-file-to-version-control
|
|
108
|
+
# poetry.lock
|
|
109
|
+
# poetry.toml
|
|
110
|
+
|
|
111
|
+
# pdm
|
|
112
|
+
# Similar to Pipfile.lock, it is generally recommended to include pdm.lock in version control.
|
|
113
|
+
# pdm recommends including project-wide configuration in pdm.toml, but excluding .pdm-python.
|
|
114
|
+
# https://pdm-project.org/en/latest/usage/project/#working-with-version-control
|
|
115
|
+
# pdm.lock
|
|
116
|
+
# pdm.toml
|
|
117
|
+
.pdm-python
|
|
118
|
+
.pdm-build/
|
|
119
|
+
|
|
120
|
+
# pixi
|
|
121
|
+
# Similar to Pipfile.lock, it is generally recommended to include pixi.lock in version control.
|
|
122
|
+
# pixi.lock
|
|
123
|
+
# Pixi creates a virtual environment in the .pixi directory, just like venv module creates one
|
|
124
|
+
# in the .venv directory. It is recommended not to include this directory in version control.
|
|
125
|
+
.pixi
|
|
126
|
+
|
|
127
|
+
# PEP 582; used by e.g. github.com/David-OConnor/pyflow and github.com/pdm-project/pdm
|
|
128
|
+
__pypackages__/
|
|
129
|
+
|
|
130
|
+
# Celery stuff
|
|
131
|
+
celerybeat-schedule
|
|
132
|
+
celerybeat.pid
|
|
133
|
+
|
|
134
|
+
# Redis
|
|
135
|
+
*.rdb
|
|
136
|
+
*.aof
|
|
137
|
+
*.pid
|
|
138
|
+
|
|
139
|
+
# RabbitMQ
|
|
140
|
+
mnesia/
|
|
141
|
+
rabbitmq/
|
|
142
|
+
rabbitmq-data/
|
|
143
|
+
|
|
144
|
+
# ActiveMQ
|
|
145
|
+
activemq-data/
|
|
146
|
+
|
|
147
|
+
# SageMath parsed files
|
|
148
|
+
*.sage.py
|
|
149
|
+
|
|
150
|
+
# Environments
|
|
151
|
+
.env
|
|
152
|
+
.envrc
|
|
153
|
+
.venv
|
|
154
|
+
env/
|
|
155
|
+
venv/
|
|
156
|
+
ENV/
|
|
157
|
+
env.bak/
|
|
158
|
+
venv.bak/
|
|
159
|
+
|
|
160
|
+
# Spyder project settings
|
|
161
|
+
.spyderproject
|
|
162
|
+
.spyproject
|
|
163
|
+
|
|
164
|
+
# Rope project settings
|
|
165
|
+
.ropeproject
|
|
166
|
+
|
|
167
|
+
# mkdocs documentation
|
|
168
|
+
/site
|
|
169
|
+
|
|
170
|
+
# mypy
|
|
171
|
+
.mypy_cache/
|
|
172
|
+
.dmypy.json
|
|
173
|
+
dmypy.json
|
|
174
|
+
|
|
175
|
+
# Pyre type checker
|
|
176
|
+
.pyre/
|
|
177
|
+
|
|
178
|
+
# pytype static type analyzer
|
|
179
|
+
.pytype/
|
|
180
|
+
|
|
181
|
+
# Cython debug symbols
|
|
182
|
+
cython_debug/
|
|
183
|
+
|
|
184
|
+
# PyCharm
|
|
185
|
+
# JetBrains specific template is maintained in a separate JetBrains.gitignore that can
|
|
186
|
+
# be found at https://github.com/github/gitignore/blob/main/Global/JetBrains.gitignore
|
|
187
|
+
# and can be added to the global gitignore or merged into this file. For a more nuclear
|
|
188
|
+
# option (not recommended) you can uncomment the following to ignore the entire idea folder.
|
|
189
|
+
# .idea/
|
|
190
|
+
|
|
191
|
+
# Abstra
|
|
192
|
+
# Abstra is an AI-powered process automation framework.
|
|
193
|
+
# Ignore directories containing user credentials, local state, and settings.
|
|
194
|
+
# Learn more at https://abstra.io/docs
|
|
195
|
+
.abstra/
|
|
196
|
+
|
|
197
|
+
# Visual Studio Code
|
|
198
|
+
# Visual Studio Code specific template is maintained in a separate VisualStudioCode.gitignore
|
|
199
|
+
# that can be found at https://github.com/github/gitignore/blob/main/Global/VisualStudioCode.gitignore
|
|
200
|
+
# and can be added to the global gitignore or merged into this file. However, if you prefer,
|
|
201
|
+
# you could uncomment the following to ignore the entire vscode folder
|
|
202
|
+
# .vscode/
|
|
203
|
+
# Temporary file for partial code execution
|
|
204
|
+
tempCodeRunnerFile.py
|
|
205
|
+
|
|
206
|
+
# Ruff stuff:
|
|
207
|
+
.ruff_cache/
|
|
208
|
+
|
|
209
|
+
# PyPI configuration file
|
|
210
|
+
.pypirc
|
|
211
|
+
|
|
212
|
+
# Marimo
|
|
213
|
+
marimo/_static/
|
|
214
|
+
marimo/_lsp/
|
|
215
|
+
__marimo__/
|
|
216
|
+
|
|
217
|
+
# Streamlit
|
|
218
|
+
.streamlit/secrets.toml
|
|
219
|
+
|
|
220
|
+
.tools/
|
|
221
|
+
.antlr/
|
|
222
|
+
.build/
|
|
223
|
+
.venv/
|