Prothon Language Reference Manual

A Supplement to the Python Language Reference Manual, showing changes introduced in Prothon.  At this time, it is nowhere near complete.  We're just using the outline to accumulate bits and pieces.

1. Introduction

2. Lexical analysis

3. Data model

4. Execution model

4.1 Naming and binding

Q: Does importing a global name into an object automatically make that name global to the current module?

A:  No.  It is only when you refer to a variable without any prefix.  obj.Cap_var has Cap_var only in obj.  Cap_var by itself is global to module.

 

5. Expressions

6. Simple statements

7. Compound statements

8. Top-level components