Il tutorial ufficiale usa il termine tabella dei simboli in alcuni punti in cui prevedo il termine namespace .
The execution of a function introduces a new symbol table used for the local variables of the function. More precisely, all variable assignments in a function store the value in the local symbol table; whereas variable references first look in the local symbol table, then in the local symbol tables of enclosing functions, then in the global symbol table, and finally in the table of built-in names.
Each module has its own private symbol table, which is used as the global symbol table by all functions defined in the module. Thus, the author of a module can use global variables in the module without worrying about accidental clashes with a user’s global variables.
Ho trovato blog di Eli Bendersky dove cita il modulo symble :
Symbol tables are generated by the compiler from AST just before bytecode is generated. The symbol table is responsible for calculating the scope of every identifier in the code.
Quindi sembra che una tabella dei simboli preceda uno spazio dei nomi. Un'altra citazione, dalla prima fonte, mi porta a credere che esistano allo stesso tempo.
The actual parameters (arguments) to a function call are introduced in the local symbol table of the called function when it is called; thus, arguments are passed using call by value (where the value is always an object reference, not the value of the object).1
Una tabella dei simboli è coinvolta nella creazione di uno spazio dei nomi? Una tabella dei simboli "contiene" uno spazio dei nomi o semplicemente informazioni contenute in uno spazio dei nomi? In breve, in che modo una tabella dei simboli si riferisce a uno spazio dei nomi?