├── .gitignore ├── CHANGES.txt ├── LICENSE ├── README ├── base ├── .gitignore ├── Makefile ├── README.txt ├── autotest.py ├── builtins │ ├── bool.rkt │ ├── code.rkt │ ├── file-util.rkt │ ├── file.rkt │ ├── function.rkt │ ├── list.rkt │ ├── module.rkt │ ├── none.rkt │ ├── num.rkt │ ├── object.rkt │ ├── set.rkt │ ├── str.rkt │ ├── super.rkt │ ├── tuple.rkt │ └── type.rkt ├── core-to-sexp.rkt ├── count-node.rkt ├── cps-test.rkt ├── get-structured-python.rkt ├── modules │ ├── builtin-modules.rkt │ ├── main-module.rkt │ ├── sys.rkt │ ├── test_1.py │ └── test_unary.py ├── our-tests │ ├── bound-and-free.py │ ├── class-method.py │ ├── freevar-in-method.py │ ├── global.py │ ├── locals-class.py │ ├── locals-function.py │ ├── mutate.py │ ├── nesting-global-no-free.py │ ├── nonlocal-class.py │ └── simple.py ├── parser │ ├── UnicodeData.txt │ ├── gen-unicode-table.rkt │ ├── parser.rkt │ ├── python-grammar.rkt │ ├── python-lexer.rkt │ ├── python-parser.py │ ├── python-parser.rkt │ ├── python-python-parser.rkt │ ├── stx-util.rkt │ ├── test-parser.rkt │ ├── test-srcloc.rkt │ └── unicode-char-names.rkt ├── py-prelude.py ├── pylib │ ├── all.py │ ├── any.py │ ├── attr.py │ ├── bool.py │ ├── callable.py │ ├── dict.py │ ├── dict_proxy.py │ ├── file.py │ ├── filter.py │ ├── function.py │ ├── generator.py │ ├── import.py │ ├── isinstance.py │ ├── list.py │ ├── method.py │ ├── none.py │ ├── object.py │ ├── print.py │ ├── property.py │ ├── range.py │ ├── seq_iter.py │ ├── set.py │ ├── str.py │ ├── super.py │ ├── tuple.py │ └── type.py ├── python-compile.rkt ├── python-core-syntax.rkt ├── python-cps.rkt ├── python-desugar-flags.rkt ├── python-desugar.rkt ├── python-evaluator.rkt ├── python-interp.rkt ├── python-lexical-printer.rkt ├── python-lexical-syntax.rkt ├── python-lib-bindings.rkt ├── python-lib-list.rkt ├── python-lib.rkt ├── python-macros.rkt ├── python-main.rkt ├── python-phase1.rkt ├── python-phase2.rkt ├── python-phases.rkt ├── python-primitives.rkt ├── python-syntax-operations.rkt ├── python-syntax.rkt ├── python-tools.rkt ├── report.txt ├── run-tests.rkt ├── run_cloud.py ├── run_profile.py ├── sexp-to-core.rkt ├── show-postclass-scope.sh ├── show-scope.sh ├── test-main-options.sh ├── test-show-scope │ ├── assign-1.py │ ├── class-1.py │ ├── class-2.py │ ├── class-3.py │ ├── class-4.py │ ├── class-5.py │ ├── class-6.py │ ├── func-1.py │ ├── func-2.py │ ├── func-3.py │ ├── func-4.py │ ├── func-5.py │ ├── func-6.py │ ├── func-7.py │ ├── func-8.py │ ├── func-args-1.py │ ├── func-args-2.py │ ├── func-args-3.py │ ├── func-args-4.py │ ├── func-many-levels-2.py │ ├── func-many-levels-unbound-2.py │ ├── func-many-levels-unbound.py │ ├── func-many-levels.py │ ├── large-1.py │ └── unbound-1.py ├── unit-tests.rkt └── util.rkt ├── doc └── scope.md ├── examples └── scope │ ├── nonlocal-function-vardef-shadow.py │ ├── nonlocal-function-vardef-unbound.py │ ├── nonlocal-function-vardef.py │ ├── nonlocal-function.py │ └── simple-class.py ├── index.html ├── plai-typed-18Feb2013.plt ├── python-lib ├── README ├── stat.py └── unittest.py ├── ragg-mangled.plt ├── redex ├── core-to-redex.rkt ├── lambdapy-basics.rkt ├── lambdapy-context-test.rkt ├── lambdapy-core-tests.rkt ├── lambdapy-core.rkt ├── lambdapy-func-tests.rkt ├── lambdapy-module-tests.rkt ├── lambdapy-num-tests.rkt ├── lambdapy-obj-tests.rkt ├── lambdapy-prim.rkt ├── lambdapy-reduction.rkt ├── lambdapy-test-skull.rkt ├── lambdapy-test-util.rkt └── lambdapy-tests.rkt ├── tests-bad-syntax ├── assign1.py ├── assign2.py ├── assign3.py ├── assign4.py ├── assign5.py ├── assign6.py ├── call-bare-gen.py ├── del1.py ├── dup-arg-names.py └── gen1.py └── tests ├── bugs ├── memofib-decorator.py ├── methodinstance.py └── setitem.py ├── generators ├── README ├── gen-comp.py ├── gen-except.py ├── gen-method.py └── send-gen.py ├── modules ├── IMPL ├── README ├── support_exception.py ├── test_as │ ├── __init__.py │ └── empty.py ├── test_exception.py ├── test_import_name_binding.py ├── test_meta_path.py ├── test_unary.py ├── test_with_extension.py └── unittest │ ├── test_augassign.py │ ├── test_binop.py │ ├── test_bool.py │ ├── test_builtin.py │ ├── test_dict.py │ ├── test_dictviews.py │ ├── test_file.py │ ├── test_float.py │ ├── test_int.py │ ├── test_isinstance.py │ ├── test_list.py │ ├── test_raise.py │ ├── test_scope.py │ ├── test_string.py │ ├── test_types.py │ └── test_unary.py ├── multiple_inheritance ├── IMPL.txt ├── super-external-self.py ├── super-external.py ├── super-nested-noarg.py ├── super-nested-not-self.py └── super-nested-self.py ├── parser └── parser-regress.py ├── property ├── base.py └── lambda_getter.py ├── python-reference ├── .DS_Store ├── bool │ ├── bool-callable.py │ ├── bool-compare-list-dict.py │ ├── bool-compare.py │ ├── bool-convert.py │ ├── bool-float.py │ ├── bool-int.py │ ├── bool-isinstance.py │ ├── bool-math.py │ └── bool-str.py ├── builtin │ ├── all.py │ ├── any.py │ ├── callable.py │ ├── filter.py │ ├── get_set_attribute.py │ ├── isinstance-tuple.py │ ├── isinstance.py │ └── len.py ├── class │ ├── class-decorators.py │ ├── metaclass-class1.py │ ├── metaclass-class2.py │ ├── metaclass-class3.py │ ├── metaclass-function.py │ ├── test_class_dict.py │ └── test_metaclass.py ├── dict │ ├── dict-attribute.py │ ├── dict-bool.py │ ├── dict-clear.py │ ├── dict-contains.py │ ├── dict-get.py │ ├── dict-getitem.py │ ├── dict-hash-effects.py │ ├── dict-items.py │ ├── dict-keys-effects.py │ ├── dict-keys.py │ ├── dict-list.py │ ├── dict-set-comprehensions.py │ ├── dict-set-keys.py │ ├── dict-update-iterable.py │ ├── dict-update.py │ ├── dict-values-set.py │ ├── dict-values.py │ └── test-dict-aug-assign.py ├── exceptions │ ├── assert-silent.py │ ├── assertRaises.py │ ├── assertion-error-msg.py │ ├── assertion-error.py │ ├── elseReturn.py │ ├── except-as.py │ ├── except-reraise.py │ ├── invalid-reraise.py │ ├── nested-else.py │ ├── nested-reraise.py │ ├── nested.py │ ├── reraise.py │ ├── test-finally-reraise.py │ ├── test-try-except-else.py │ ├── test-try-except-no-exception.py │ ├── test-try-except.py │ ├── test_with.py │ ├── try-except-else-finally-no-exception.py │ ├── try-except-else-finally.py │ ├── try-except-else-no-exception.py │ ├── try-except-finally-no-exception.py │ ├── try-except-finally.py │ ├── try-finally-no-exception.py │ ├── while-break-finally.py │ └── while-continue-finally.py ├── functions │ ├── func_attr.py │ ├── func_attr2.py │ ├── func_defaults.py │ ├── func_stararg.py │ ├── keywords_args1.py │ ├── keywords_args2.py │ ├── keywords_args3.py │ ├── keywords_args4.py │ ├── kwarg.py │ ├── kwonlyargs.py │ ├── lambda_defaults.py │ ├── lambda_stararg.py │ ├── memofib-function-attributes.py │ ├── non_tuple_starag.py │ └── varargs.py ├── generators │ ├── basic-gen.py │ ├── gen-arg.py │ ├── gen-exception.py │ ├── gen-in-gen.py │ ├── gen-list.py │ ├── gen-multiyield.py │ ├── gen-return-uncatchable.py │ ├── gen-return.py │ └── simple-gen.py ├── iter │ ├── continue.py │ ├── filter-comprehension.py │ ├── iter-classes.py │ ├── iter-comprehensions.py │ ├── iter-misc.py │ ├── iter-simple.py │ ├── iter-stop.py │ ├── test-for-else.py │ └── test-genexp-lazyness.py ├── lists │ ├── simple-append.py │ ├── simple-extend.py │ ├── test_list_assign.py │ ├── test_list_identity.py │ ├── test_list_simple.py │ └── test_list_truth.py ├── modules │ ├── support.py │ ├── test_basic.py │ ├── test_failing_support_sticks.py │ ├── test_file.py │ ├── test_in_modules.py │ └── test_scope.py ├── multiple-inheritance │ ├── README.txt │ ├── dunder-methods.py │ ├── methods.py │ ├── test-classmethod-desugar.py │ ├── test-staticmethod-decorator.py │ ├── test-staticmethod-oldstyle.py │ ├── test_consistency_with_epg.py │ ├── test_diamond_inheritence.py │ ├── test_ex5_from_c3_switch.py │ ├── test_monotonicity.py │ ├── test_mro_disagreement.py │ ├── test_mro_disagreement_type.py │ ├── test_multiple_inheritance.py │ ├── test_super_multiple_inheritance.py │ └── type-dict.py ├── property │ ├── override_getattr_descr.py │ ├── shadow.py │ ├── simple_getter.py │ ├── simple_getter_exn.py │ ├── simple_property.py │ ├── simple_property_decorator.py │ ├── test_property_decorator_baseclass.py │ ├── test_property_decorator_subclass.py │ └── test_property_getter_doc_override.py ├── range │ ├── range-errs.py │ ├── range-list.py │ ├── range-vars.py │ ├── slice1.py │ └── test-range-lazyness.py ├── scope │ ├── bound-and-free.py │ ├── class-bases-scope.py │ ├── comprehensions-leak.py │ ├── destructuring-bind.py │ ├── extra-nesting.py │ ├── for-loops.py │ ├── freevar-in-method.py │ ├── global-in-class-body.py │ ├── global-in-parallel-nested-functions.py │ ├── global_scope.py │ ├── immutable-alias.py │ ├── lambda1.py │ ├── lambda2.py │ ├── lambda3.py │ ├── lambda4.py │ ├── locals-class.py │ ├── locals-function-renamed.py │ ├── locals-function.py │ ├── mixed-freevars-and-cellvars.py │ ├── mutable-alias.py │ ├── nearest-enclosing-scope.py │ ├── nested-classes.py │ ├── nested-nonlocal.py │ ├── nesting-global-no-free.py │ ├── nesting-global-under-local.py │ ├── nesting-plus-free-ref-to-global.py │ ├── nesting-through-class.py │ ├── nonlocal-class.py │ ├── nonlocal-function-vardef-shadow.py │ ├── nonlocal-function-vardef-unbound.py │ ├── nonlocal-function-vardef.py │ ├── nonlocal-function.py │ ├── nonlocal-method.py │ ├── recursion.py │ ├── simple-and-rebinding.py │ ├── simple-nesting.py │ ├── test-assign-field.py │ ├── test-builtin-scope-iter.py │ ├── test-builtin-scope.py │ ├── unbound-local.py │ ├── unboundlocal-after-del.py │ └── unboundlocal-augassign.py ├── super │ ├── super-not-self.py │ └── test-super.py ├── tuple │ ├── tuple-add.py │ ├── tuple-constructors.py │ ├── tuple-in.py │ ├── tuple-length.py │ ├── tuple-mul.py │ ├── tuple-to-list.py │ └── tuple-truth.py └── types │ ├── address-of-none.py │ ├── assign-to-self.py │ ├── bitwise_test.py │ ├── test-add-with-funcs.py │ ├── test-aliasing.py │ ├── test_booleans.py │ ├── test_comparisons.py │ ├── test_div_zero.py │ ├── test_dynamics.py │ ├── test_floats.py │ ├── test_int_float_primitives.py │ ├── test_object_class.py │ ├── test_pow.py │ ├── test_simple_string_ops.py │ ├── test_simple_strings.py │ ├── test_string_slices.py │ ├── types_truthy1.py │ └── types_truthy2.py └── scope ├── IMPL ├── README ├── complex-defs.py ├── complex-defs2.py ├── multiple-locals-calls.py ├── nonlocal-from-class-body.py ├── nonlocal-from-class-body.py.error └── unboundlocal-augassign.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brownplt/lambda-py/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brownplt/lambda-py/HEAD/CHANGES.txt -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brownplt/lambda-py/HEAD/LICENSE -------------------------------------------------------------------------------- /README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brownplt/lambda-py/HEAD/README -------------------------------------------------------------------------------- /base/.gitignore: -------------------------------------------------------------------------------- 1 | compiled/ 2 | *.zo 3 | *.dep 4 | -------------------------------------------------------------------------------- /base/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brownplt/lambda-py/HEAD/base/Makefile -------------------------------------------------------------------------------- /base/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brownplt/lambda-py/HEAD/base/README.txt -------------------------------------------------------------------------------- /base/autotest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brownplt/lambda-py/HEAD/base/autotest.py -------------------------------------------------------------------------------- /base/builtins/bool.rkt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brownplt/lambda-py/HEAD/base/builtins/bool.rkt -------------------------------------------------------------------------------- /base/builtins/code.rkt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brownplt/lambda-py/HEAD/base/builtins/code.rkt -------------------------------------------------------------------------------- /base/builtins/file-util.rkt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brownplt/lambda-py/HEAD/base/builtins/file-util.rkt -------------------------------------------------------------------------------- /base/builtins/file.rkt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brownplt/lambda-py/HEAD/base/builtins/file.rkt -------------------------------------------------------------------------------- /base/builtins/function.rkt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brownplt/lambda-py/HEAD/base/builtins/function.rkt -------------------------------------------------------------------------------- /base/builtins/list.rkt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brownplt/lambda-py/HEAD/base/builtins/list.rkt -------------------------------------------------------------------------------- /base/builtins/module.rkt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brownplt/lambda-py/HEAD/base/builtins/module.rkt -------------------------------------------------------------------------------- /base/builtins/none.rkt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brownplt/lambda-py/HEAD/base/builtins/none.rkt -------------------------------------------------------------------------------- /base/builtins/num.rkt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brownplt/lambda-py/HEAD/base/builtins/num.rkt -------------------------------------------------------------------------------- /base/builtins/object.rkt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brownplt/lambda-py/HEAD/base/builtins/object.rkt -------------------------------------------------------------------------------- /base/builtins/set.rkt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brownplt/lambda-py/HEAD/base/builtins/set.rkt -------------------------------------------------------------------------------- /base/builtins/str.rkt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brownplt/lambda-py/HEAD/base/builtins/str.rkt -------------------------------------------------------------------------------- /base/builtins/super.rkt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brownplt/lambda-py/HEAD/base/builtins/super.rkt -------------------------------------------------------------------------------- /base/builtins/tuple.rkt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brownplt/lambda-py/HEAD/base/builtins/tuple.rkt -------------------------------------------------------------------------------- /base/builtins/type.rkt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brownplt/lambda-py/HEAD/base/builtins/type.rkt -------------------------------------------------------------------------------- /base/core-to-sexp.rkt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brownplt/lambda-py/HEAD/base/core-to-sexp.rkt -------------------------------------------------------------------------------- /base/count-node.rkt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brownplt/lambda-py/HEAD/base/count-node.rkt -------------------------------------------------------------------------------- /base/cps-test.rkt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brownplt/lambda-py/HEAD/base/cps-test.rkt -------------------------------------------------------------------------------- /base/get-structured-python.rkt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brownplt/lambda-py/HEAD/base/get-structured-python.rkt -------------------------------------------------------------------------------- /base/modules/builtin-modules.rkt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brownplt/lambda-py/HEAD/base/modules/builtin-modules.rkt -------------------------------------------------------------------------------- /base/modules/main-module.rkt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brownplt/lambda-py/HEAD/base/modules/main-module.rkt -------------------------------------------------------------------------------- /base/modules/sys.rkt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brownplt/lambda-py/HEAD/base/modules/sys.rkt -------------------------------------------------------------------------------- /base/modules/test_1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brownplt/lambda-py/HEAD/base/modules/test_1.py -------------------------------------------------------------------------------- /base/modules/test_unary.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brownplt/lambda-py/HEAD/base/modules/test_unary.py -------------------------------------------------------------------------------- /base/our-tests/bound-and-free.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brownplt/lambda-py/HEAD/base/our-tests/bound-and-free.py -------------------------------------------------------------------------------- /base/our-tests/class-method.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brownplt/lambda-py/HEAD/base/our-tests/class-method.py -------------------------------------------------------------------------------- /base/our-tests/freevar-in-method.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brownplt/lambda-py/HEAD/base/our-tests/freevar-in-method.py -------------------------------------------------------------------------------- /base/our-tests/global.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brownplt/lambda-py/HEAD/base/our-tests/global.py -------------------------------------------------------------------------------- /base/our-tests/locals-class.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brownplt/lambda-py/HEAD/base/our-tests/locals-class.py -------------------------------------------------------------------------------- /base/our-tests/locals-function.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brownplt/lambda-py/HEAD/base/our-tests/locals-function.py -------------------------------------------------------------------------------- /base/our-tests/mutate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brownplt/lambda-py/HEAD/base/our-tests/mutate.py -------------------------------------------------------------------------------- /base/our-tests/nesting-global-no-free.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brownplt/lambda-py/HEAD/base/our-tests/nesting-global-no-free.py -------------------------------------------------------------------------------- /base/our-tests/nonlocal-class.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brownplt/lambda-py/HEAD/base/our-tests/nonlocal-class.py -------------------------------------------------------------------------------- /base/our-tests/simple.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brownplt/lambda-py/HEAD/base/our-tests/simple.py -------------------------------------------------------------------------------- /base/parser/UnicodeData.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brownplt/lambda-py/HEAD/base/parser/UnicodeData.txt -------------------------------------------------------------------------------- /base/parser/gen-unicode-table.rkt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brownplt/lambda-py/HEAD/base/parser/gen-unicode-table.rkt -------------------------------------------------------------------------------- /base/parser/parser.rkt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brownplt/lambda-py/HEAD/base/parser/parser.rkt -------------------------------------------------------------------------------- /base/parser/python-grammar.rkt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brownplt/lambda-py/HEAD/base/parser/python-grammar.rkt -------------------------------------------------------------------------------- /base/parser/python-lexer.rkt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brownplt/lambda-py/HEAD/base/parser/python-lexer.rkt -------------------------------------------------------------------------------- /base/parser/python-parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brownplt/lambda-py/HEAD/base/parser/python-parser.py -------------------------------------------------------------------------------- /base/parser/python-parser.rkt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brownplt/lambda-py/HEAD/base/parser/python-parser.rkt -------------------------------------------------------------------------------- /base/parser/python-python-parser.rkt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brownplt/lambda-py/HEAD/base/parser/python-python-parser.rkt -------------------------------------------------------------------------------- /base/parser/stx-util.rkt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brownplt/lambda-py/HEAD/base/parser/stx-util.rkt -------------------------------------------------------------------------------- /base/parser/test-parser.rkt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brownplt/lambda-py/HEAD/base/parser/test-parser.rkt -------------------------------------------------------------------------------- /base/parser/test-srcloc.rkt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brownplt/lambda-py/HEAD/base/parser/test-srcloc.rkt -------------------------------------------------------------------------------- /base/parser/unicode-char-names.rkt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brownplt/lambda-py/HEAD/base/parser/unicode-char-names.rkt -------------------------------------------------------------------------------- /base/py-prelude.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brownplt/lambda-py/HEAD/base/py-prelude.py -------------------------------------------------------------------------------- /base/pylib/all.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brownplt/lambda-py/HEAD/base/pylib/all.py -------------------------------------------------------------------------------- /base/pylib/any.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brownplt/lambda-py/HEAD/base/pylib/any.py -------------------------------------------------------------------------------- /base/pylib/attr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brownplt/lambda-py/HEAD/base/pylib/attr.py -------------------------------------------------------------------------------- /base/pylib/bool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brownplt/lambda-py/HEAD/base/pylib/bool.py -------------------------------------------------------------------------------- /base/pylib/callable.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brownplt/lambda-py/HEAD/base/pylib/callable.py -------------------------------------------------------------------------------- /base/pylib/dict.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brownplt/lambda-py/HEAD/base/pylib/dict.py -------------------------------------------------------------------------------- /base/pylib/dict_proxy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brownplt/lambda-py/HEAD/base/pylib/dict_proxy.py -------------------------------------------------------------------------------- /base/pylib/file.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brownplt/lambda-py/HEAD/base/pylib/file.py -------------------------------------------------------------------------------- /base/pylib/filter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brownplt/lambda-py/HEAD/base/pylib/filter.py -------------------------------------------------------------------------------- /base/pylib/function.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brownplt/lambda-py/HEAD/base/pylib/function.py -------------------------------------------------------------------------------- /base/pylib/generator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brownplt/lambda-py/HEAD/base/pylib/generator.py -------------------------------------------------------------------------------- /base/pylib/import.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brownplt/lambda-py/HEAD/base/pylib/import.py -------------------------------------------------------------------------------- /base/pylib/isinstance.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brownplt/lambda-py/HEAD/base/pylib/isinstance.py -------------------------------------------------------------------------------- /base/pylib/list.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brownplt/lambda-py/HEAD/base/pylib/list.py -------------------------------------------------------------------------------- /base/pylib/method.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brownplt/lambda-py/HEAD/base/pylib/method.py -------------------------------------------------------------------------------- /base/pylib/none.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brownplt/lambda-py/HEAD/base/pylib/none.py -------------------------------------------------------------------------------- /base/pylib/object.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brownplt/lambda-py/HEAD/base/pylib/object.py -------------------------------------------------------------------------------- /base/pylib/print.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brownplt/lambda-py/HEAD/base/pylib/print.py -------------------------------------------------------------------------------- /base/pylib/property.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brownplt/lambda-py/HEAD/base/pylib/property.py -------------------------------------------------------------------------------- /base/pylib/range.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brownplt/lambda-py/HEAD/base/pylib/range.py -------------------------------------------------------------------------------- /base/pylib/seq_iter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brownplt/lambda-py/HEAD/base/pylib/seq_iter.py -------------------------------------------------------------------------------- /base/pylib/set.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brownplt/lambda-py/HEAD/base/pylib/set.py -------------------------------------------------------------------------------- /base/pylib/str.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brownplt/lambda-py/HEAD/base/pylib/str.py -------------------------------------------------------------------------------- /base/pylib/super.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brownplt/lambda-py/HEAD/base/pylib/super.py -------------------------------------------------------------------------------- /base/pylib/tuple.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brownplt/lambda-py/HEAD/base/pylib/tuple.py -------------------------------------------------------------------------------- /base/pylib/type.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brownplt/lambda-py/HEAD/base/pylib/type.py -------------------------------------------------------------------------------- /base/python-compile.rkt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brownplt/lambda-py/HEAD/base/python-compile.rkt -------------------------------------------------------------------------------- /base/python-core-syntax.rkt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brownplt/lambda-py/HEAD/base/python-core-syntax.rkt -------------------------------------------------------------------------------- /base/python-cps.rkt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brownplt/lambda-py/HEAD/base/python-cps.rkt -------------------------------------------------------------------------------- /base/python-desugar-flags.rkt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brownplt/lambda-py/HEAD/base/python-desugar-flags.rkt -------------------------------------------------------------------------------- /base/python-desugar.rkt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brownplt/lambda-py/HEAD/base/python-desugar.rkt -------------------------------------------------------------------------------- /base/python-evaluator.rkt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brownplt/lambda-py/HEAD/base/python-evaluator.rkt -------------------------------------------------------------------------------- /base/python-interp.rkt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brownplt/lambda-py/HEAD/base/python-interp.rkt -------------------------------------------------------------------------------- /base/python-lexical-printer.rkt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brownplt/lambda-py/HEAD/base/python-lexical-printer.rkt -------------------------------------------------------------------------------- /base/python-lexical-syntax.rkt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brownplt/lambda-py/HEAD/base/python-lexical-syntax.rkt -------------------------------------------------------------------------------- /base/python-lib-bindings.rkt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brownplt/lambda-py/HEAD/base/python-lib-bindings.rkt -------------------------------------------------------------------------------- /base/python-lib-list.rkt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brownplt/lambda-py/HEAD/base/python-lib-list.rkt -------------------------------------------------------------------------------- /base/python-lib.rkt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brownplt/lambda-py/HEAD/base/python-lib.rkt -------------------------------------------------------------------------------- /base/python-macros.rkt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brownplt/lambda-py/HEAD/base/python-macros.rkt -------------------------------------------------------------------------------- /base/python-main.rkt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brownplt/lambda-py/HEAD/base/python-main.rkt -------------------------------------------------------------------------------- /base/python-phase1.rkt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brownplt/lambda-py/HEAD/base/python-phase1.rkt -------------------------------------------------------------------------------- /base/python-phase2.rkt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brownplt/lambda-py/HEAD/base/python-phase2.rkt -------------------------------------------------------------------------------- /base/python-phases.rkt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brownplt/lambda-py/HEAD/base/python-phases.rkt -------------------------------------------------------------------------------- /base/python-primitives.rkt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brownplt/lambda-py/HEAD/base/python-primitives.rkt -------------------------------------------------------------------------------- /base/python-syntax-operations.rkt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brownplt/lambda-py/HEAD/base/python-syntax-operations.rkt -------------------------------------------------------------------------------- /base/python-syntax.rkt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brownplt/lambda-py/HEAD/base/python-syntax.rkt -------------------------------------------------------------------------------- /base/python-tools.rkt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brownplt/lambda-py/HEAD/base/python-tools.rkt -------------------------------------------------------------------------------- /base/report.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brownplt/lambda-py/HEAD/base/report.txt -------------------------------------------------------------------------------- /base/run-tests.rkt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brownplt/lambda-py/HEAD/base/run-tests.rkt -------------------------------------------------------------------------------- /base/run_cloud.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brownplt/lambda-py/HEAD/base/run_cloud.py -------------------------------------------------------------------------------- /base/run_profile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brownplt/lambda-py/HEAD/base/run_profile.py -------------------------------------------------------------------------------- /base/sexp-to-core.rkt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brownplt/lambda-py/HEAD/base/sexp-to-core.rkt -------------------------------------------------------------------------------- /base/show-postclass-scope.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brownplt/lambda-py/HEAD/base/show-postclass-scope.sh -------------------------------------------------------------------------------- /base/show-scope.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brownplt/lambda-py/HEAD/base/show-scope.sh -------------------------------------------------------------------------------- /base/test-main-options.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brownplt/lambda-py/HEAD/base/test-main-options.sh -------------------------------------------------------------------------------- /base/test-show-scope/assign-1.py: -------------------------------------------------------------------------------- 1 | x = 5 2 | -------------------------------------------------------------------------------- /base/test-show-scope/class-1.py: -------------------------------------------------------------------------------- 1 | class C: 2 | x = 6 3 | -------------------------------------------------------------------------------- /base/test-show-scope/class-2.py: -------------------------------------------------------------------------------- 1 | x = 7 2 | class C: 3 | x = 9 4 | -------------------------------------------------------------------------------- /base/test-show-scope/class-3.py: -------------------------------------------------------------------------------- 1 | class C: 2 | x = 6 3 | def f(): 4 | return x 5 | -------------------------------------------------------------------------------- /base/test-show-scope/class-4.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brownplt/lambda-py/HEAD/base/test-show-scope/class-4.py -------------------------------------------------------------------------------- /base/test-show-scope/class-5.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brownplt/lambda-py/HEAD/base/test-show-scope/class-5.py -------------------------------------------------------------------------------- /base/test-show-scope/class-6.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brownplt/lambda-py/HEAD/base/test-show-scope/class-6.py -------------------------------------------------------------------------------- /base/test-show-scope/func-1.py: -------------------------------------------------------------------------------- 1 | x = 9 2 | 3 | def f(): 4 | return x 5 | -------------------------------------------------------------------------------- /base/test-show-scope/func-2.py: -------------------------------------------------------------------------------- 1 | x = 9 2 | 3 | def f(): 4 | global x 5 | return x 6 | -------------------------------------------------------------------------------- /base/test-show-scope/func-3.py: -------------------------------------------------------------------------------- 1 | # Should produce a syntax error 2 | 3 | x = 9 4 | 5 | def f(): 6 | nonlocal x 7 | return x 8 | -------------------------------------------------------------------------------- /base/test-show-scope/func-4.py: -------------------------------------------------------------------------------- 1 | x = 9 2 | 3 | def f(): 4 | x = 5 5 | return x 6 | -------------------------------------------------------------------------------- /base/test-show-scope/func-5.py: -------------------------------------------------------------------------------- 1 | def f(): 2 | x = 5 3 | return x 4 | -------------------------------------------------------------------------------- /base/test-show-scope/func-6.py: -------------------------------------------------------------------------------- 1 | x = 9 2 | 3 | def f(): 4 | x = 8 5 | return x 6 | -------------------------------------------------------------------------------- /base/test-show-scope/func-7.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brownplt/lambda-py/HEAD/base/test-show-scope/func-7.py -------------------------------------------------------------------------------- /base/test-show-scope/func-8.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brownplt/lambda-py/HEAD/base/test-show-scope/func-8.py -------------------------------------------------------------------------------- /base/test-show-scope/func-args-1.py: -------------------------------------------------------------------------------- 1 | def f(x): 2 | return x 3 | -------------------------------------------------------------------------------- /base/test-show-scope/func-args-2.py: -------------------------------------------------------------------------------- 1 | x = 9 2 | 3 | def f(x): 4 | return x 5 | -------------------------------------------------------------------------------- /base/test-show-scope/func-args-3.py: -------------------------------------------------------------------------------- 1 | x = 7 2 | 3 | def f(y): 4 | return y 5 | -------------------------------------------------------------------------------- /base/test-show-scope/func-args-4.py: -------------------------------------------------------------------------------- 1 | x = 7 2 | 3 | def f(y): 4 | return x 5 | -------------------------------------------------------------------------------- /base/test-show-scope/func-many-levels-2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brownplt/lambda-py/HEAD/base/test-show-scope/func-many-levels-2.py -------------------------------------------------------------------------------- /base/test-show-scope/func-many-levels-unbound-2.py: -------------------------------------------------------------------------------- 1 | def f(): 2 | return x 3 | -------------------------------------------------------------------------------- /base/test-show-scope/func-many-levels-unbound.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brownplt/lambda-py/HEAD/base/test-show-scope/func-many-levels-unbound.py -------------------------------------------------------------------------------- /base/test-show-scope/func-many-levels.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brownplt/lambda-py/HEAD/base/test-show-scope/func-many-levels.py -------------------------------------------------------------------------------- /base/test-show-scope/large-1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brownplt/lambda-py/HEAD/base/test-show-scope/large-1.py -------------------------------------------------------------------------------- /base/test-show-scope/unbound-1.py: -------------------------------------------------------------------------------- 1 | x 2 | -------------------------------------------------------------------------------- /base/unit-tests.rkt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brownplt/lambda-py/HEAD/base/unit-tests.rkt -------------------------------------------------------------------------------- /base/util.rkt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brownplt/lambda-py/HEAD/base/util.rkt -------------------------------------------------------------------------------- /doc/scope.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brownplt/lambda-py/HEAD/doc/scope.md -------------------------------------------------------------------------------- /examples/scope/nonlocal-function-vardef-shadow.py: -------------------------------------------------------------------------------- 1 | ../../tests/python-reference/scope/nonlocal-function-vardef-shadow.py -------------------------------------------------------------------------------- /examples/scope/nonlocal-function-vardef-unbound.py: -------------------------------------------------------------------------------- 1 | ../../tests/python-reference/scope/nonlocal-function-vardef-unbound.py -------------------------------------------------------------------------------- /examples/scope/nonlocal-function-vardef.py: -------------------------------------------------------------------------------- 1 | ../../tests/python-reference/scope/nonlocal-function-vardef.py -------------------------------------------------------------------------------- /examples/scope/nonlocal-function.py: -------------------------------------------------------------------------------- 1 | ../../tests/python-reference/scope/nonlocal-function.py -------------------------------------------------------------------------------- /examples/scope/simple-class.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brownplt/lambda-py/HEAD/examples/scope/simple-class.py -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brownplt/lambda-py/HEAD/index.html -------------------------------------------------------------------------------- /plai-typed-18Feb2013.plt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brownplt/lambda-py/HEAD/plai-typed-18Feb2013.plt -------------------------------------------------------------------------------- /python-lib/README: -------------------------------------------------------------------------------- 1 | This directory contains the Python standard library modules. 2 | 3 | -------------------------------------------------------------------------------- /python-lib/stat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brownplt/lambda-py/HEAD/python-lib/stat.py -------------------------------------------------------------------------------- /python-lib/unittest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brownplt/lambda-py/HEAD/python-lib/unittest.py -------------------------------------------------------------------------------- /ragg-mangled.plt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brownplt/lambda-py/HEAD/ragg-mangled.plt -------------------------------------------------------------------------------- /redex/core-to-redex.rkt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brownplt/lambda-py/HEAD/redex/core-to-redex.rkt -------------------------------------------------------------------------------- /redex/lambdapy-basics.rkt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brownplt/lambda-py/HEAD/redex/lambdapy-basics.rkt -------------------------------------------------------------------------------- /redex/lambdapy-context-test.rkt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brownplt/lambda-py/HEAD/redex/lambdapy-context-test.rkt -------------------------------------------------------------------------------- /redex/lambdapy-core-tests.rkt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brownplt/lambda-py/HEAD/redex/lambdapy-core-tests.rkt -------------------------------------------------------------------------------- /redex/lambdapy-core.rkt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brownplt/lambda-py/HEAD/redex/lambdapy-core.rkt -------------------------------------------------------------------------------- /redex/lambdapy-func-tests.rkt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brownplt/lambda-py/HEAD/redex/lambdapy-func-tests.rkt -------------------------------------------------------------------------------- /redex/lambdapy-module-tests.rkt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brownplt/lambda-py/HEAD/redex/lambdapy-module-tests.rkt -------------------------------------------------------------------------------- /redex/lambdapy-num-tests.rkt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brownplt/lambda-py/HEAD/redex/lambdapy-num-tests.rkt -------------------------------------------------------------------------------- /redex/lambdapy-obj-tests.rkt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brownplt/lambda-py/HEAD/redex/lambdapy-obj-tests.rkt -------------------------------------------------------------------------------- /redex/lambdapy-prim.rkt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brownplt/lambda-py/HEAD/redex/lambdapy-prim.rkt -------------------------------------------------------------------------------- /redex/lambdapy-reduction.rkt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brownplt/lambda-py/HEAD/redex/lambdapy-reduction.rkt -------------------------------------------------------------------------------- /redex/lambdapy-test-skull.rkt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brownplt/lambda-py/HEAD/redex/lambdapy-test-skull.rkt -------------------------------------------------------------------------------- /redex/lambdapy-test-util.rkt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brownplt/lambda-py/HEAD/redex/lambdapy-test-util.rkt -------------------------------------------------------------------------------- /redex/lambdapy-tests.rkt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brownplt/lambda-py/HEAD/redex/lambdapy-tests.rkt -------------------------------------------------------------------------------- /tests-bad-syntax/assign1.py: -------------------------------------------------------------------------------- 1 | (a + b) = 1 # No math exprs 2 | -------------------------------------------------------------------------------- /tests-bad-syntax/assign2.py: -------------------------------------------------------------------------------- 1 | *a = 1 # Star only in list/tuple 2 | -------------------------------------------------------------------------------- /tests-bad-syntax/assign3.py: -------------------------------------------------------------------------------- 1 | (a, (b+c), d) = 1 # No exprs in lists/tuples either 2 | -------------------------------------------------------------------------------- /tests-bad-syntax/assign4.py: -------------------------------------------------------------------------------- 1 | hello() = 1 # No calls 2 | -------------------------------------------------------------------------------- /tests-bad-syntax/assign5.py: -------------------------------------------------------------------------------- 1 | ... = 1 # ... 2 | -------------------------------------------------------------------------------- /tests-bad-syntax/assign6.py: -------------------------------------------------------------------------------- 1 | (a + b) += a # Not in aug either 2 | -------------------------------------------------------------------------------- /tests-bad-syntax/call-bare-gen.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brownplt/lambda-py/HEAD/tests-bad-syntax/call-bare-gen.py -------------------------------------------------------------------------------- /tests-bad-syntax/del1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brownplt/lambda-py/HEAD/tests-bad-syntax/del1.py -------------------------------------------------------------------------------- /tests-bad-syntax/dup-arg-names.py: -------------------------------------------------------------------------------- 1 | def f(a,*a):pass # No dup arg names 2 | -------------------------------------------------------------------------------- /tests-bad-syntax/gen1.py: -------------------------------------------------------------------------------- 1 | ((a + b) for c in d) # Bad assignment in generator 2 | -------------------------------------------------------------------------------- /tests/bugs/memofib-decorator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brownplt/lambda-py/HEAD/tests/bugs/memofib-decorator.py -------------------------------------------------------------------------------- /tests/bugs/methodinstance.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brownplt/lambda-py/HEAD/tests/bugs/methodinstance.py -------------------------------------------------------------------------------- /tests/bugs/setitem.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brownplt/lambda-py/HEAD/tests/bugs/setitem.py -------------------------------------------------------------------------------- /tests/generators/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brownplt/lambda-py/HEAD/tests/generators/README -------------------------------------------------------------------------------- /tests/generators/gen-comp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brownplt/lambda-py/HEAD/tests/generators/gen-comp.py -------------------------------------------------------------------------------- /tests/generators/gen-except.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brownplt/lambda-py/HEAD/tests/generators/gen-except.py -------------------------------------------------------------------------------- /tests/generators/gen-method.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brownplt/lambda-py/HEAD/tests/generators/gen-method.py -------------------------------------------------------------------------------- /tests/generators/send-gen.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brownplt/lambda-py/HEAD/tests/generators/send-gen.py -------------------------------------------------------------------------------- /tests/modules/IMPL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brownplt/lambda-py/HEAD/tests/modules/IMPL -------------------------------------------------------------------------------- /tests/modules/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brownplt/lambda-py/HEAD/tests/modules/README -------------------------------------------------------------------------------- /tests/modules/support_exception.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brownplt/lambda-py/HEAD/tests/modules/support_exception.py -------------------------------------------------------------------------------- /tests/modules/test_as/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/modules/test_as/empty.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/modules/test_exception.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brownplt/lambda-py/HEAD/tests/modules/test_exception.py -------------------------------------------------------------------------------- /tests/modules/test_import_name_binding.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brownplt/lambda-py/HEAD/tests/modules/test_import_name_binding.py -------------------------------------------------------------------------------- /tests/modules/test_meta_path.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brownplt/lambda-py/HEAD/tests/modules/test_meta_path.py -------------------------------------------------------------------------------- /tests/modules/test_unary.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brownplt/lambda-py/HEAD/tests/modules/test_unary.py -------------------------------------------------------------------------------- /tests/modules/test_with_extension.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brownplt/lambda-py/HEAD/tests/modules/test_with_extension.py -------------------------------------------------------------------------------- /tests/modules/unittest/test_augassign.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brownplt/lambda-py/HEAD/tests/modules/unittest/test_augassign.py -------------------------------------------------------------------------------- /tests/modules/unittest/test_binop.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brownplt/lambda-py/HEAD/tests/modules/unittest/test_binop.py -------------------------------------------------------------------------------- /tests/modules/unittest/test_bool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brownplt/lambda-py/HEAD/tests/modules/unittest/test_bool.py -------------------------------------------------------------------------------- /tests/modules/unittest/test_builtin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brownplt/lambda-py/HEAD/tests/modules/unittest/test_builtin.py -------------------------------------------------------------------------------- /tests/modules/unittest/test_dict.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brownplt/lambda-py/HEAD/tests/modules/unittest/test_dict.py -------------------------------------------------------------------------------- /tests/modules/unittest/test_dictviews.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brownplt/lambda-py/HEAD/tests/modules/unittest/test_dictviews.py -------------------------------------------------------------------------------- /tests/modules/unittest/test_file.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brownplt/lambda-py/HEAD/tests/modules/unittest/test_file.py -------------------------------------------------------------------------------- /tests/modules/unittest/test_float.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brownplt/lambda-py/HEAD/tests/modules/unittest/test_float.py -------------------------------------------------------------------------------- /tests/modules/unittest/test_int.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brownplt/lambda-py/HEAD/tests/modules/unittest/test_int.py -------------------------------------------------------------------------------- /tests/modules/unittest/test_isinstance.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brownplt/lambda-py/HEAD/tests/modules/unittest/test_isinstance.py -------------------------------------------------------------------------------- /tests/modules/unittest/test_list.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brownplt/lambda-py/HEAD/tests/modules/unittest/test_list.py -------------------------------------------------------------------------------- /tests/modules/unittest/test_raise.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brownplt/lambda-py/HEAD/tests/modules/unittest/test_raise.py -------------------------------------------------------------------------------- /tests/modules/unittest/test_scope.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brownplt/lambda-py/HEAD/tests/modules/unittest/test_scope.py -------------------------------------------------------------------------------- /tests/modules/unittest/test_string.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brownplt/lambda-py/HEAD/tests/modules/unittest/test_string.py -------------------------------------------------------------------------------- /tests/modules/unittest/test_types.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brownplt/lambda-py/HEAD/tests/modules/unittest/test_types.py -------------------------------------------------------------------------------- /tests/modules/unittest/test_unary.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brownplt/lambda-py/HEAD/tests/modules/unittest/test_unary.py -------------------------------------------------------------------------------- /tests/multiple_inheritance/IMPL.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brownplt/lambda-py/HEAD/tests/multiple_inheritance/IMPL.txt -------------------------------------------------------------------------------- /tests/multiple_inheritance/super-external-self.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brownplt/lambda-py/HEAD/tests/multiple_inheritance/super-external-self.py -------------------------------------------------------------------------------- /tests/multiple_inheritance/super-external.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brownplt/lambda-py/HEAD/tests/multiple_inheritance/super-external.py -------------------------------------------------------------------------------- /tests/multiple_inheritance/super-nested-noarg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brownplt/lambda-py/HEAD/tests/multiple_inheritance/super-nested-noarg.py -------------------------------------------------------------------------------- /tests/multiple_inheritance/super-nested-not-self.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brownplt/lambda-py/HEAD/tests/multiple_inheritance/super-nested-not-self.py -------------------------------------------------------------------------------- /tests/multiple_inheritance/super-nested-self.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brownplt/lambda-py/HEAD/tests/multiple_inheritance/super-nested-self.py -------------------------------------------------------------------------------- /tests/parser/parser-regress.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brownplt/lambda-py/HEAD/tests/parser/parser-regress.py -------------------------------------------------------------------------------- /tests/property/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brownplt/lambda-py/HEAD/tests/property/base.py -------------------------------------------------------------------------------- /tests/property/lambda_getter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brownplt/lambda-py/HEAD/tests/property/lambda_getter.py -------------------------------------------------------------------------------- /tests/python-reference/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brownplt/lambda-py/HEAD/tests/python-reference/.DS_Store -------------------------------------------------------------------------------- /tests/python-reference/bool/bool-callable.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brownplt/lambda-py/HEAD/tests/python-reference/bool/bool-callable.py -------------------------------------------------------------------------------- /tests/python-reference/bool/bool-compare-list-dict.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brownplt/lambda-py/HEAD/tests/python-reference/bool/bool-compare-list-dict.py -------------------------------------------------------------------------------- /tests/python-reference/bool/bool-compare.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brownplt/lambda-py/HEAD/tests/python-reference/bool/bool-compare.py -------------------------------------------------------------------------------- /tests/python-reference/bool/bool-convert.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brownplt/lambda-py/HEAD/tests/python-reference/bool/bool-convert.py -------------------------------------------------------------------------------- /tests/python-reference/bool/bool-float.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brownplt/lambda-py/HEAD/tests/python-reference/bool/bool-float.py -------------------------------------------------------------------------------- /tests/python-reference/bool/bool-int.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brownplt/lambda-py/HEAD/tests/python-reference/bool/bool-int.py -------------------------------------------------------------------------------- /tests/python-reference/bool/bool-isinstance.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brownplt/lambda-py/HEAD/tests/python-reference/bool/bool-isinstance.py -------------------------------------------------------------------------------- /tests/python-reference/bool/bool-math.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brownplt/lambda-py/HEAD/tests/python-reference/bool/bool-math.py -------------------------------------------------------------------------------- /tests/python-reference/bool/bool-str.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brownplt/lambda-py/HEAD/tests/python-reference/bool/bool-str.py -------------------------------------------------------------------------------- /tests/python-reference/builtin/all.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brownplt/lambda-py/HEAD/tests/python-reference/builtin/all.py -------------------------------------------------------------------------------- /tests/python-reference/builtin/any.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brownplt/lambda-py/HEAD/tests/python-reference/builtin/any.py -------------------------------------------------------------------------------- /tests/python-reference/builtin/callable.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brownplt/lambda-py/HEAD/tests/python-reference/builtin/callable.py -------------------------------------------------------------------------------- /tests/python-reference/builtin/filter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brownplt/lambda-py/HEAD/tests/python-reference/builtin/filter.py -------------------------------------------------------------------------------- /tests/python-reference/builtin/get_set_attribute.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brownplt/lambda-py/HEAD/tests/python-reference/builtin/get_set_attribute.py -------------------------------------------------------------------------------- /tests/python-reference/builtin/isinstance-tuple.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brownplt/lambda-py/HEAD/tests/python-reference/builtin/isinstance-tuple.py -------------------------------------------------------------------------------- /tests/python-reference/builtin/isinstance.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brownplt/lambda-py/HEAD/tests/python-reference/builtin/isinstance.py -------------------------------------------------------------------------------- /tests/python-reference/builtin/len.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brownplt/lambda-py/HEAD/tests/python-reference/builtin/len.py -------------------------------------------------------------------------------- /tests/python-reference/class/class-decorators.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brownplt/lambda-py/HEAD/tests/python-reference/class/class-decorators.py -------------------------------------------------------------------------------- /tests/python-reference/class/metaclass-class1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brownplt/lambda-py/HEAD/tests/python-reference/class/metaclass-class1.py -------------------------------------------------------------------------------- /tests/python-reference/class/metaclass-class2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brownplt/lambda-py/HEAD/tests/python-reference/class/metaclass-class2.py -------------------------------------------------------------------------------- /tests/python-reference/class/metaclass-class3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brownplt/lambda-py/HEAD/tests/python-reference/class/metaclass-class3.py -------------------------------------------------------------------------------- /tests/python-reference/class/metaclass-function.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brownplt/lambda-py/HEAD/tests/python-reference/class/metaclass-function.py -------------------------------------------------------------------------------- /tests/python-reference/class/test_class_dict.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brownplt/lambda-py/HEAD/tests/python-reference/class/test_class_dict.py -------------------------------------------------------------------------------- /tests/python-reference/class/test_metaclass.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brownplt/lambda-py/HEAD/tests/python-reference/class/test_metaclass.py -------------------------------------------------------------------------------- /tests/python-reference/dict/dict-attribute.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brownplt/lambda-py/HEAD/tests/python-reference/dict/dict-attribute.py -------------------------------------------------------------------------------- /tests/python-reference/dict/dict-bool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brownplt/lambda-py/HEAD/tests/python-reference/dict/dict-bool.py -------------------------------------------------------------------------------- /tests/python-reference/dict/dict-clear.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brownplt/lambda-py/HEAD/tests/python-reference/dict/dict-clear.py -------------------------------------------------------------------------------- /tests/python-reference/dict/dict-contains.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brownplt/lambda-py/HEAD/tests/python-reference/dict/dict-contains.py -------------------------------------------------------------------------------- /tests/python-reference/dict/dict-get.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brownplt/lambda-py/HEAD/tests/python-reference/dict/dict-get.py -------------------------------------------------------------------------------- /tests/python-reference/dict/dict-getitem.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brownplt/lambda-py/HEAD/tests/python-reference/dict/dict-getitem.py -------------------------------------------------------------------------------- /tests/python-reference/dict/dict-hash-effects.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brownplt/lambda-py/HEAD/tests/python-reference/dict/dict-hash-effects.py -------------------------------------------------------------------------------- /tests/python-reference/dict/dict-items.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brownplt/lambda-py/HEAD/tests/python-reference/dict/dict-items.py -------------------------------------------------------------------------------- /tests/python-reference/dict/dict-keys-effects.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brownplt/lambda-py/HEAD/tests/python-reference/dict/dict-keys-effects.py -------------------------------------------------------------------------------- /tests/python-reference/dict/dict-keys.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brownplt/lambda-py/HEAD/tests/python-reference/dict/dict-keys.py -------------------------------------------------------------------------------- /tests/python-reference/dict/dict-list.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brownplt/lambda-py/HEAD/tests/python-reference/dict/dict-list.py -------------------------------------------------------------------------------- /tests/python-reference/dict/dict-set-comprehensions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brownplt/lambda-py/HEAD/tests/python-reference/dict/dict-set-comprehensions.py -------------------------------------------------------------------------------- /tests/python-reference/dict/dict-set-keys.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brownplt/lambda-py/HEAD/tests/python-reference/dict/dict-set-keys.py -------------------------------------------------------------------------------- /tests/python-reference/dict/dict-update-iterable.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brownplt/lambda-py/HEAD/tests/python-reference/dict/dict-update-iterable.py -------------------------------------------------------------------------------- /tests/python-reference/dict/dict-update.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brownplt/lambda-py/HEAD/tests/python-reference/dict/dict-update.py -------------------------------------------------------------------------------- /tests/python-reference/dict/dict-values-set.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brownplt/lambda-py/HEAD/tests/python-reference/dict/dict-values-set.py -------------------------------------------------------------------------------- /tests/python-reference/dict/dict-values.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brownplt/lambda-py/HEAD/tests/python-reference/dict/dict-values.py -------------------------------------------------------------------------------- /tests/python-reference/dict/test-dict-aug-assign.py: -------------------------------------------------------------------------------- 1 | a = [1,2] 2 | a[0] += 1 3 | 4 | ___assertEqual(a[0], 2) 5 | -------------------------------------------------------------------------------- /tests/python-reference/exceptions/assert-silent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brownplt/lambda-py/HEAD/tests/python-reference/exceptions/assert-silent.py -------------------------------------------------------------------------------- /tests/python-reference/exceptions/assertRaises.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brownplt/lambda-py/HEAD/tests/python-reference/exceptions/assertRaises.py -------------------------------------------------------------------------------- /tests/python-reference/exceptions/assertion-error-msg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brownplt/lambda-py/HEAD/tests/python-reference/exceptions/assertion-error-msg.py -------------------------------------------------------------------------------- /tests/python-reference/exceptions/assertion-error.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brownplt/lambda-py/HEAD/tests/python-reference/exceptions/assertion-error.py -------------------------------------------------------------------------------- /tests/python-reference/exceptions/elseReturn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brownplt/lambda-py/HEAD/tests/python-reference/exceptions/elseReturn.py -------------------------------------------------------------------------------- /tests/python-reference/exceptions/except-as.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brownplt/lambda-py/HEAD/tests/python-reference/exceptions/except-as.py -------------------------------------------------------------------------------- /tests/python-reference/exceptions/except-reraise.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brownplt/lambda-py/HEAD/tests/python-reference/exceptions/except-reraise.py -------------------------------------------------------------------------------- /tests/python-reference/exceptions/invalid-reraise.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brownplt/lambda-py/HEAD/tests/python-reference/exceptions/invalid-reraise.py -------------------------------------------------------------------------------- /tests/python-reference/exceptions/nested-else.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brownplt/lambda-py/HEAD/tests/python-reference/exceptions/nested-else.py -------------------------------------------------------------------------------- /tests/python-reference/exceptions/nested-reraise.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brownplt/lambda-py/HEAD/tests/python-reference/exceptions/nested-reraise.py -------------------------------------------------------------------------------- /tests/python-reference/exceptions/nested.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brownplt/lambda-py/HEAD/tests/python-reference/exceptions/nested.py -------------------------------------------------------------------------------- /tests/python-reference/exceptions/reraise.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brownplt/lambda-py/HEAD/tests/python-reference/exceptions/reraise.py -------------------------------------------------------------------------------- /tests/python-reference/exceptions/test-finally-reraise.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brownplt/lambda-py/HEAD/tests/python-reference/exceptions/test-finally-reraise.py -------------------------------------------------------------------------------- /tests/python-reference/exceptions/test-try-except-else.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brownplt/lambda-py/HEAD/tests/python-reference/exceptions/test-try-except-else.py -------------------------------------------------------------------------------- /tests/python-reference/exceptions/test-try-except-no-exception.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brownplt/lambda-py/HEAD/tests/python-reference/exceptions/test-try-except-no-exception.py -------------------------------------------------------------------------------- /tests/python-reference/exceptions/test-try-except.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brownplt/lambda-py/HEAD/tests/python-reference/exceptions/test-try-except.py -------------------------------------------------------------------------------- /tests/python-reference/exceptions/test_with.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brownplt/lambda-py/HEAD/tests/python-reference/exceptions/test_with.py -------------------------------------------------------------------------------- /tests/python-reference/exceptions/try-except-else-finally-no-exception.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brownplt/lambda-py/HEAD/tests/python-reference/exceptions/try-except-else-finally-no-exception.py -------------------------------------------------------------------------------- /tests/python-reference/exceptions/try-except-else-finally.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brownplt/lambda-py/HEAD/tests/python-reference/exceptions/try-except-else-finally.py -------------------------------------------------------------------------------- /tests/python-reference/exceptions/try-except-else-no-exception.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brownplt/lambda-py/HEAD/tests/python-reference/exceptions/try-except-else-no-exception.py -------------------------------------------------------------------------------- /tests/python-reference/exceptions/try-except-finally-no-exception.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brownplt/lambda-py/HEAD/tests/python-reference/exceptions/try-except-finally-no-exception.py -------------------------------------------------------------------------------- /tests/python-reference/exceptions/try-except-finally.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brownplt/lambda-py/HEAD/tests/python-reference/exceptions/try-except-finally.py -------------------------------------------------------------------------------- /tests/python-reference/exceptions/try-finally-no-exception.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brownplt/lambda-py/HEAD/tests/python-reference/exceptions/try-finally-no-exception.py -------------------------------------------------------------------------------- /tests/python-reference/exceptions/while-break-finally.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brownplt/lambda-py/HEAD/tests/python-reference/exceptions/while-break-finally.py -------------------------------------------------------------------------------- /tests/python-reference/exceptions/while-continue-finally.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brownplt/lambda-py/HEAD/tests/python-reference/exceptions/while-continue-finally.py -------------------------------------------------------------------------------- /tests/python-reference/functions/func_attr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brownplt/lambda-py/HEAD/tests/python-reference/functions/func_attr.py -------------------------------------------------------------------------------- /tests/python-reference/functions/func_attr2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brownplt/lambda-py/HEAD/tests/python-reference/functions/func_attr2.py -------------------------------------------------------------------------------- /tests/python-reference/functions/func_defaults.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brownplt/lambda-py/HEAD/tests/python-reference/functions/func_defaults.py -------------------------------------------------------------------------------- /tests/python-reference/functions/func_stararg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brownplt/lambda-py/HEAD/tests/python-reference/functions/func_stararg.py -------------------------------------------------------------------------------- /tests/python-reference/functions/keywords_args1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brownplt/lambda-py/HEAD/tests/python-reference/functions/keywords_args1.py -------------------------------------------------------------------------------- /tests/python-reference/functions/keywords_args2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brownplt/lambda-py/HEAD/tests/python-reference/functions/keywords_args2.py -------------------------------------------------------------------------------- /tests/python-reference/functions/keywords_args3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brownplt/lambda-py/HEAD/tests/python-reference/functions/keywords_args3.py -------------------------------------------------------------------------------- /tests/python-reference/functions/keywords_args4.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brownplt/lambda-py/HEAD/tests/python-reference/functions/keywords_args4.py -------------------------------------------------------------------------------- /tests/python-reference/functions/kwarg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brownplt/lambda-py/HEAD/tests/python-reference/functions/kwarg.py -------------------------------------------------------------------------------- /tests/python-reference/functions/kwonlyargs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brownplt/lambda-py/HEAD/tests/python-reference/functions/kwonlyargs.py -------------------------------------------------------------------------------- /tests/python-reference/functions/lambda_defaults.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brownplt/lambda-py/HEAD/tests/python-reference/functions/lambda_defaults.py -------------------------------------------------------------------------------- /tests/python-reference/functions/lambda_stararg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brownplt/lambda-py/HEAD/tests/python-reference/functions/lambda_stararg.py -------------------------------------------------------------------------------- /tests/python-reference/functions/memofib-function-attributes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brownplt/lambda-py/HEAD/tests/python-reference/functions/memofib-function-attributes.py -------------------------------------------------------------------------------- /tests/python-reference/functions/non_tuple_starag.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brownplt/lambda-py/HEAD/tests/python-reference/functions/non_tuple_starag.py -------------------------------------------------------------------------------- /tests/python-reference/functions/varargs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brownplt/lambda-py/HEAD/tests/python-reference/functions/varargs.py -------------------------------------------------------------------------------- /tests/python-reference/generators/basic-gen.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brownplt/lambda-py/HEAD/tests/python-reference/generators/basic-gen.py -------------------------------------------------------------------------------- /tests/python-reference/generators/gen-arg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brownplt/lambda-py/HEAD/tests/python-reference/generators/gen-arg.py -------------------------------------------------------------------------------- /tests/python-reference/generators/gen-exception.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brownplt/lambda-py/HEAD/tests/python-reference/generators/gen-exception.py -------------------------------------------------------------------------------- /tests/python-reference/generators/gen-in-gen.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brownplt/lambda-py/HEAD/tests/python-reference/generators/gen-in-gen.py -------------------------------------------------------------------------------- /tests/python-reference/generators/gen-list.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brownplt/lambda-py/HEAD/tests/python-reference/generators/gen-list.py -------------------------------------------------------------------------------- /tests/python-reference/generators/gen-multiyield.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brownplt/lambda-py/HEAD/tests/python-reference/generators/gen-multiyield.py -------------------------------------------------------------------------------- /tests/python-reference/generators/gen-return-uncatchable.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brownplt/lambda-py/HEAD/tests/python-reference/generators/gen-return-uncatchable.py -------------------------------------------------------------------------------- /tests/python-reference/generators/gen-return.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brownplt/lambda-py/HEAD/tests/python-reference/generators/gen-return.py -------------------------------------------------------------------------------- /tests/python-reference/generators/simple-gen.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brownplt/lambda-py/HEAD/tests/python-reference/generators/simple-gen.py -------------------------------------------------------------------------------- /tests/python-reference/iter/continue.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brownplt/lambda-py/HEAD/tests/python-reference/iter/continue.py -------------------------------------------------------------------------------- /tests/python-reference/iter/filter-comprehension.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brownplt/lambda-py/HEAD/tests/python-reference/iter/filter-comprehension.py -------------------------------------------------------------------------------- /tests/python-reference/iter/iter-classes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brownplt/lambda-py/HEAD/tests/python-reference/iter/iter-classes.py -------------------------------------------------------------------------------- /tests/python-reference/iter/iter-comprehensions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brownplt/lambda-py/HEAD/tests/python-reference/iter/iter-comprehensions.py -------------------------------------------------------------------------------- /tests/python-reference/iter/iter-misc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brownplt/lambda-py/HEAD/tests/python-reference/iter/iter-misc.py -------------------------------------------------------------------------------- /tests/python-reference/iter/iter-simple.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brownplt/lambda-py/HEAD/tests/python-reference/iter/iter-simple.py -------------------------------------------------------------------------------- /tests/python-reference/iter/iter-stop.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brownplt/lambda-py/HEAD/tests/python-reference/iter/iter-stop.py -------------------------------------------------------------------------------- /tests/python-reference/iter/test-for-else.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brownplt/lambda-py/HEAD/tests/python-reference/iter/test-for-else.py -------------------------------------------------------------------------------- /tests/python-reference/iter/test-genexp-lazyness.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brownplt/lambda-py/HEAD/tests/python-reference/iter/test-genexp-lazyness.py -------------------------------------------------------------------------------- /tests/python-reference/lists/simple-append.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brownplt/lambda-py/HEAD/tests/python-reference/lists/simple-append.py -------------------------------------------------------------------------------- /tests/python-reference/lists/simple-extend.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brownplt/lambda-py/HEAD/tests/python-reference/lists/simple-extend.py -------------------------------------------------------------------------------- /tests/python-reference/lists/test_list_assign.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brownplt/lambda-py/HEAD/tests/python-reference/lists/test_list_assign.py -------------------------------------------------------------------------------- /tests/python-reference/lists/test_list_identity.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brownplt/lambda-py/HEAD/tests/python-reference/lists/test_list_identity.py -------------------------------------------------------------------------------- /tests/python-reference/lists/test_list_simple.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brownplt/lambda-py/HEAD/tests/python-reference/lists/test_list_simple.py -------------------------------------------------------------------------------- /tests/python-reference/lists/test_list_truth.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brownplt/lambda-py/HEAD/tests/python-reference/lists/test_list_truth.py -------------------------------------------------------------------------------- /tests/python-reference/modules/support.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brownplt/lambda-py/HEAD/tests/python-reference/modules/support.py -------------------------------------------------------------------------------- /tests/python-reference/modules/test_basic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brownplt/lambda-py/HEAD/tests/python-reference/modules/test_basic.py -------------------------------------------------------------------------------- /tests/python-reference/modules/test_failing_support_sticks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brownplt/lambda-py/HEAD/tests/python-reference/modules/test_failing_support_sticks.py -------------------------------------------------------------------------------- /tests/python-reference/modules/test_file.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brownplt/lambda-py/HEAD/tests/python-reference/modules/test_file.py -------------------------------------------------------------------------------- /tests/python-reference/modules/test_in_modules.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brownplt/lambda-py/HEAD/tests/python-reference/modules/test_in_modules.py -------------------------------------------------------------------------------- /tests/python-reference/modules/test_scope.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brownplt/lambda-py/HEAD/tests/python-reference/modules/test_scope.py -------------------------------------------------------------------------------- /tests/python-reference/multiple-inheritance/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brownplt/lambda-py/HEAD/tests/python-reference/multiple-inheritance/README.txt -------------------------------------------------------------------------------- /tests/python-reference/multiple-inheritance/dunder-methods.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brownplt/lambda-py/HEAD/tests/python-reference/multiple-inheritance/dunder-methods.py -------------------------------------------------------------------------------- /tests/python-reference/multiple-inheritance/methods.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brownplt/lambda-py/HEAD/tests/python-reference/multiple-inheritance/methods.py -------------------------------------------------------------------------------- /tests/python-reference/multiple-inheritance/test-classmethod-desugar.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brownplt/lambda-py/HEAD/tests/python-reference/multiple-inheritance/test-classmethod-desugar.py -------------------------------------------------------------------------------- /tests/python-reference/multiple-inheritance/test-staticmethod-decorator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brownplt/lambda-py/HEAD/tests/python-reference/multiple-inheritance/test-staticmethod-decorator.py -------------------------------------------------------------------------------- /tests/python-reference/multiple-inheritance/test-staticmethod-oldstyle.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brownplt/lambda-py/HEAD/tests/python-reference/multiple-inheritance/test-staticmethod-oldstyle.py -------------------------------------------------------------------------------- /tests/python-reference/multiple-inheritance/test_consistency_with_epg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brownplt/lambda-py/HEAD/tests/python-reference/multiple-inheritance/test_consistency_with_epg.py -------------------------------------------------------------------------------- /tests/python-reference/multiple-inheritance/test_diamond_inheritence.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brownplt/lambda-py/HEAD/tests/python-reference/multiple-inheritance/test_diamond_inheritence.py -------------------------------------------------------------------------------- /tests/python-reference/multiple-inheritance/test_ex5_from_c3_switch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brownplt/lambda-py/HEAD/tests/python-reference/multiple-inheritance/test_ex5_from_c3_switch.py -------------------------------------------------------------------------------- /tests/python-reference/multiple-inheritance/test_monotonicity.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brownplt/lambda-py/HEAD/tests/python-reference/multiple-inheritance/test_monotonicity.py -------------------------------------------------------------------------------- /tests/python-reference/multiple-inheritance/test_mro_disagreement.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brownplt/lambda-py/HEAD/tests/python-reference/multiple-inheritance/test_mro_disagreement.py -------------------------------------------------------------------------------- /tests/python-reference/multiple-inheritance/test_mro_disagreement_type.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brownplt/lambda-py/HEAD/tests/python-reference/multiple-inheritance/test_mro_disagreement_type.py -------------------------------------------------------------------------------- /tests/python-reference/multiple-inheritance/test_multiple_inheritance.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brownplt/lambda-py/HEAD/tests/python-reference/multiple-inheritance/test_multiple_inheritance.py -------------------------------------------------------------------------------- /tests/python-reference/multiple-inheritance/test_super_multiple_inheritance.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brownplt/lambda-py/HEAD/tests/python-reference/multiple-inheritance/test_super_multiple_inheritance.py -------------------------------------------------------------------------------- /tests/python-reference/multiple-inheritance/type-dict.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brownplt/lambda-py/HEAD/tests/python-reference/multiple-inheritance/type-dict.py -------------------------------------------------------------------------------- /tests/python-reference/property/override_getattr_descr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brownplt/lambda-py/HEAD/tests/python-reference/property/override_getattr_descr.py -------------------------------------------------------------------------------- /tests/python-reference/property/shadow.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brownplt/lambda-py/HEAD/tests/python-reference/property/shadow.py -------------------------------------------------------------------------------- /tests/python-reference/property/simple_getter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brownplt/lambda-py/HEAD/tests/python-reference/property/simple_getter.py -------------------------------------------------------------------------------- /tests/python-reference/property/simple_getter_exn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brownplt/lambda-py/HEAD/tests/python-reference/property/simple_getter_exn.py -------------------------------------------------------------------------------- /tests/python-reference/property/simple_property.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brownplt/lambda-py/HEAD/tests/python-reference/property/simple_property.py -------------------------------------------------------------------------------- /tests/python-reference/property/simple_property_decorator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brownplt/lambda-py/HEAD/tests/python-reference/property/simple_property_decorator.py -------------------------------------------------------------------------------- /tests/python-reference/property/test_property_decorator_baseclass.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brownplt/lambda-py/HEAD/tests/python-reference/property/test_property_decorator_baseclass.py -------------------------------------------------------------------------------- /tests/python-reference/property/test_property_decorator_subclass.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brownplt/lambda-py/HEAD/tests/python-reference/property/test_property_decorator_subclass.py -------------------------------------------------------------------------------- /tests/python-reference/property/test_property_getter_doc_override.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brownplt/lambda-py/HEAD/tests/python-reference/property/test_property_getter_doc_override.py -------------------------------------------------------------------------------- /tests/python-reference/range/range-errs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brownplt/lambda-py/HEAD/tests/python-reference/range/range-errs.py -------------------------------------------------------------------------------- /tests/python-reference/range/range-list.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brownplt/lambda-py/HEAD/tests/python-reference/range/range-list.py -------------------------------------------------------------------------------- /tests/python-reference/range/range-vars.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brownplt/lambda-py/HEAD/tests/python-reference/range/range-vars.py -------------------------------------------------------------------------------- /tests/python-reference/range/slice1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brownplt/lambda-py/HEAD/tests/python-reference/range/slice1.py -------------------------------------------------------------------------------- /tests/python-reference/range/test-range-lazyness.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brownplt/lambda-py/HEAD/tests/python-reference/range/test-range-lazyness.py -------------------------------------------------------------------------------- /tests/python-reference/scope/bound-and-free.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brownplt/lambda-py/HEAD/tests/python-reference/scope/bound-and-free.py -------------------------------------------------------------------------------- /tests/python-reference/scope/class-bases-scope.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brownplt/lambda-py/HEAD/tests/python-reference/scope/class-bases-scope.py -------------------------------------------------------------------------------- /tests/python-reference/scope/comprehensions-leak.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brownplt/lambda-py/HEAD/tests/python-reference/scope/comprehensions-leak.py -------------------------------------------------------------------------------- /tests/python-reference/scope/destructuring-bind.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brownplt/lambda-py/HEAD/tests/python-reference/scope/destructuring-bind.py -------------------------------------------------------------------------------- /tests/python-reference/scope/extra-nesting.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brownplt/lambda-py/HEAD/tests/python-reference/scope/extra-nesting.py -------------------------------------------------------------------------------- /tests/python-reference/scope/for-loops.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brownplt/lambda-py/HEAD/tests/python-reference/scope/for-loops.py -------------------------------------------------------------------------------- /tests/python-reference/scope/freevar-in-method.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brownplt/lambda-py/HEAD/tests/python-reference/scope/freevar-in-method.py -------------------------------------------------------------------------------- /tests/python-reference/scope/global-in-class-body.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brownplt/lambda-py/HEAD/tests/python-reference/scope/global-in-class-body.py -------------------------------------------------------------------------------- /tests/python-reference/scope/global-in-parallel-nested-functions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brownplt/lambda-py/HEAD/tests/python-reference/scope/global-in-parallel-nested-functions.py -------------------------------------------------------------------------------- /tests/python-reference/scope/global_scope.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brownplt/lambda-py/HEAD/tests/python-reference/scope/global_scope.py -------------------------------------------------------------------------------- /tests/python-reference/scope/immutable-alias.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brownplt/lambda-py/HEAD/tests/python-reference/scope/immutable-alias.py -------------------------------------------------------------------------------- /tests/python-reference/scope/lambda1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brownplt/lambda-py/HEAD/tests/python-reference/scope/lambda1.py -------------------------------------------------------------------------------- /tests/python-reference/scope/lambda2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brownplt/lambda-py/HEAD/tests/python-reference/scope/lambda2.py -------------------------------------------------------------------------------- /tests/python-reference/scope/lambda3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brownplt/lambda-py/HEAD/tests/python-reference/scope/lambda3.py -------------------------------------------------------------------------------- /tests/python-reference/scope/lambda4.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brownplt/lambda-py/HEAD/tests/python-reference/scope/lambda4.py -------------------------------------------------------------------------------- /tests/python-reference/scope/locals-class.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brownplt/lambda-py/HEAD/tests/python-reference/scope/locals-class.py -------------------------------------------------------------------------------- /tests/python-reference/scope/locals-function-renamed.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brownplt/lambda-py/HEAD/tests/python-reference/scope/locals-function-renamed.py -------------------------------------------------------------------------------- /tests/python-reference/scope/locals-function.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brownplt/lambda-py/HEAD/tests/python-reference/scope/locals-function.py -------------------------------------------------------------------------------- /tests/python-reference/scope/mixed-freevars-and-cellvars.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brownplt/lambda-py/HEAD/tests/python-reference/scope/mixed-freevars-and-cellvars.py -------------------------------------------------------------------------------- /tests/python-reference/scope/mutable-alias.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brownplt/lambda-py/HEAD/tests/python-reference/scope/mutable-alias.py -------------------------------------------------------------------------------- /tests/python-reference/scope/nearest-enclosing-scope.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brownplt/lambda-py/HEAD/tests/python-reference/scope/nearest-enclosing-scope.py -------------------------------------------------------------------------------- /tests/python-reference/scope/nested-classes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brownplt/lambda-py/HEAD/tests/python-reference/scope/nested-classes.py -------------------------------------------------------------------------------- /tests/python-reference/scope/nested-nonlocal.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brownplt/lambda-py/HEAD/tests/python-reference/scope/nested-nonlocal.py -------------------------------------------------------------------------------- /tests/python-reference/scope/nesting-global-no-free.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brownplt/lambda-py/HEAD/tests/python-reference/scope/nesting-global-no-free.py -------------------------------------------------------------------------------- /tests/python-reference/scope/nesting-global-under-local.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brownplt/lambda-py/HEAD/tests/python-reference/scope/nesting-global-under-local.py -------------------------------------------------------------------------------- /tests/python-reference/scope/nesting-plus-free-ref-to-global.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brownplt/lambda-py/HEAD/tests/python-reference/scope/nesting-plus-free-ref-to-global.py -------------------------------------------------------------------------------- /tests/python-reference/scope/nesting-through-class.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brownplt/lambda-py/HEAD/tests/python-reference/scope/nesting-through-class.py -------------------------------------------------------------------------------- /tests/python-reference/scope/nonlocal-class.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brownplt/lambda-py/HEAD/tests/python-reference/scope/nonlocal-class.py -------------------------------------------------------------------------------- /tests/python-reference/scope/nonlocal-function-vardef-shadow.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brownplt/lambda-py/HEAD/tests/python-reference/scope/nonlocal-function-vardef-shadow.py -------------------------------------------------------------------------------- /tests/python-reference/scope/nonlocal-function-vardef-unbound.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brownplt/lambda-py/HEAD/tests/python-reference/scope/nonlocal-function-vardef-unbound.py -------------------------------------------------------------------------------- /tests/python-reference/scope/nonlocal-function-vardef.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brownplt/lambda-py/HEAD/tests/python-reference/scope/nonlocal-function-vardef.py -------------------------------------------------------------------------------- /tests/python-reference/scope/nonlocal-function.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brownplt/lambda-py/HEAD/tests/python-reference/scope/nonlocal-function.py -------------------------------------------------------------------------------- /tests/python-reference/scope/nonlocal-method.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brownplt/lambda-py/HEAD/tests/python-reference/scope/nonlocal-method.py -------------------------------------------------------------------------------- /tests/python-reference/scope/recursion.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brownplt/lambda-py/HEAD/tests/python-reference/scope/recursion.py -------------------------------------------------------------------------------- /tests/python-reference/scope/simple-and-rebinding.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brownplt/lambda-py/HEAD/tests/python-reference/scope/simple-and-rebinding.py -------------------------------------------------------------------------------- /tests/python-reference/scope/simple-nesting.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brownplt/lambda-py/HEAD/tests/python-reference/scope/simple-nesting.py -------------------------------------------------------------------------------- /tests/python-reference/scope/test-assign-field.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brownplt/lambda-py/HEAD/tests/python-reference/scope/test-assign-field.py -------------------------------------------------------------------------------- /tests/python-reference/scope/test-builtin-scope-iter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brownplt/lambda-py/HEAD/tests/python-reference/scope/test-builtin-scope-iter.py -------------------------------------------------------------------------------- /tests/python-reference/scope/test-builtin-scope.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brownplt/lambda-py/HEAD/tests/python-reference/scope/test-builtin-scope.py -------------------------------------------------------------------------------- /tests/python-reference/scope/unbound-local.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brownplt/lambda-py/HEAD/tests/python-reference/scope/unbound-local.py -------------------------------------------------------------------------------- /tests/python-reference/scope/unboundlocal-after-del.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brownplt/lambda-py/HEAD/tests/python-reference/scope/unboundlocal-after-del.py -------------------------------------------------------------------------------- /tests/python-reference/scope/unboundlocal-augassign.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brownplt/lambda-py/HEAD/tests/python-reference/scope/unboundlocal-augassign.py -------------------------------------------------------------------------------- /tests/python-reference/super/super-not-self.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brownplt/lambda-py/HEAD/tests/python-reference/super/super-not-self.py -------------------------------------------------------------------------------- /tests/python-reference/super/test-super.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brownplt/lambda-py/HEAD/tests/python-reference/super/test-super.py -------------------------------------------------------------------------------- /tests/python-reference/tuple/tuple-add.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brownplt/lambda-py/HEAD/tests/python-reference/tuple/tuple-add.py -------------------------------------------------------------------------------- /tests/python-reference/tuple/tuple-constructors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brownplt/lambda-py/HEAD/tests/python-reference/tuple/tuple-constructors.py -------------------------------------------------------------------------------- /tests/python-reference/tuple/tuple-in.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brownplt/lambda-py/HEAD/tests/python-reference/tuple/tuple-in.py -------------------------------------------------------------------------------- /tests/python-reference/tuple/tuple-length.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brownplt/lambda-py/HEAD/tests/python-reference/tuple/tuple-length.py -------------------------------------------------------------------------------- /tests/python-reference/tuple/tuple-mul.py: -------------------------------------------------------------------------------- 1 | u = (0, 1) 2 | u2 = u 3 | u *= 3 4 | ___assertTrue(u is not u2) 5 | -------------------------------------------------------------------------------- /tests/python-reference/tuple/tuple-to-list.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brownplt/lambda-py/HEAD/tests/python-reference/tuple/tuple-to-list.py -------------------------------------------------------------------------------- /tests/python-reference/tuple/tuple-truth.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brownplt/lambda-py/HEAD/tests/python-reference/tuple/tuple-truth.py -------------------------------------------------------------------------------- /tests/python-reference/types/address-of-none.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brownplt/lambda-py/HEAD/tests/python-reference/types/address-of-none.py -------------------------------------------------------------------------------- /tests/python-reference/types/assign-to-self.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brownplt/lambda-py/HEAD/tests/python-reference/types/assign-to-self.py -------------------------------------------------------------------------------- /tests/python-reference/types/bitwise_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brownplt/lambda-py/HEAD/tests/python-reference/types/bitwise_test.py -------------------------------------------------------------------------------- /tests/python-reference/types/test-add-with-funcs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brownplt/lambda-py/HEAD/tests/python-reference/types/test-add-with-funcs.py -------------------------------------------------------------------------------- /tests/python-reference/types/test-aliasing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brownplt/lambda-py/HEAD/tests/python-reference/types/test-aliasing.py -------------------------------------------------------------------------------- /tests/python-reference/types/test_booleans.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brownplt/lambda-py/HEAD/tests/python-reference/types/test_booleans.py -------------------------------------------------------------------------------- /tests/python-reference/types/test_comparisons.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brownplt/lambda-py/HEAD/tests/python-reference/types/test_comparisons.py -------------------------------------------------------------------------------- /tests/python-reference/types/test_div_zero.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brownplt/lambda-py/HEAD/tests/python-reference/types/test_div_zero.py -------------------------------------------------------------------------------- /tests/python-reference/types/test_dynamics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brownplt/lambda-py/HEAD/tests/python-reference/types/test_dynamics.py -------------------------------------------------------------------------------- /tests/python-reference/types/test_floats.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brownplt/lambda-py/HEAD/tests/python-reference/types/test_floats.py -------------------------------------------------------------------------------- /tests/python-reference/types/test_int_float_primitives.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brownplt/lambda-py/HEAD/tests/python-reference/types/test_int_float_primitives.py -------------------------------------------------------------------------------- /tests/python-reference/types/test_object_class.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brownplt/lambda-py/HEAD/tests/python-reference/types/test_object_class.py -------------------------------------------------------------------------------- /tests/python-reference/types/test_pow.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brownplt/lambda-py/HEAD/tests/python-reference/types/test_pow.py -------------------------------------------------------------------------------- /tests/python-reference/types/test_simple_string_ops.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brownplt/lambda-py/HEAD/tests/python-reference/types/test_simple_string_ops.py -------------------------------------------------------------------------------- /tests/python-reference/types/test_simple_strings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brownplt/lambda-py/HEAD/tests/python-reference/types/test_simple_strings.py -------------------------------------------------------------------------------- /tests/python-reference/types/test_string_slices.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brownplt/lambda-py/HEAD/tests/python-reference/types/test_string_slices.py -------------------------------------------------------------------------------- /tests/python-reference/types/types_truthy1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brownplt/lambda-py/HEAD/tests/python-reference/types/types_truthy1.py -------------------------------------------------------------------------------- /tests/python-reference/types/types_truthy2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brownplt/lambda-py/HEAD/tests/python-reference/types/types_truthy2.py -------------------------------------------------------------------------------- /tests/scope/IMPL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brownplt/lambda-py/HEAD/tests/scope/IMPL -------------------------------------------------------------------------------- /tests/scope/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brownplt/lambda-py/HEAD/tests/scope/README -------------------------------------------------------------------------------- /tests/scope/complex-defs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brownplt/lambda-py/HEAD/tests/scope/complex-defs.py -------------------------------------------------------------------------------- /tests/scope/complex-defs2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brownplt/lambda-py/HEAD/tests/scope/complex-defs2.py -------------------------------------------------------------------------------- /tests/scope/multiple-locals-calls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brownplt/lambda-py/HEAD/tests/scope/multiple-locals-calls.py -------------------------------------------------------------------------------- /tests/scope/nonlocal-from-class-body.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brownplt/lambda-py/HEAD/tests/scope/nonlocal-from-class-body.py -------------------------------------------------------------------------------- /tests/scope/nonlocal-from-class-body.py.error: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brownplt/lambda-py/HEAD/tests/scope/nonlocal-from-class-body.py.error -------------------------------------------------------------------------------- /tests/scope/unboundlocal-augassign.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brownplt/lambda-py/HEAD/tests/scope/unboundlocal-augassign.py --------------------------------------------------------------------------------