bpo-19737: Improved the documentation for globals (GH-29823)

Co-authored-by: Alex Waygood <Alex.Waygood@Gmail.com>
Co-authored-by: Łukasz Langa <lukasz@langa.pl>
This commit is contained in:
180909 2021-12-11 08:04:21 +08:00 committed by GitHub
parent 901cbbd2ca
commit 4fe5585240
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 4 additions and 3 deletions

View File

@ -733,9 +733,9 @@ are always available. They are listed here in alphabetical order.
.. function:: globals()
Return a dictionary representing the current global symbol table. This is always
the dictionary of the current module (inside a function or method, this is the
module where it is defined, not the module from which it is called).
Return the dictionary implementing the current module namespace. For code within
functions, this is set when the function is defined and remains the same
regardless of where the function is called.
.. function:: hasattr(object, name)

View File

@ -0,0 +1 @@
Update the documentation for the :func:`globals` function.