From 00f41cb474afbf7663d48886e96c9b9a2d00982a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jure=20=C5=A0orn?= Date: Sun, 27 Jan 2019 11:16:07 +0100 Subject: [PATCH] Introspection --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 405c51f..4458c6c 100644 --- a/README.md +++ b/README.md @@ -1053,7 +1053,7 @@ Introspection and Metaprograming ### Variables ```python = dir() # Names of in-scope variables. - = locals() # Dict of local variables, same as vars(). + = locals() # Dict of local variables. Also vars(). = globals() # Dict of global variables. ```