You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
<div><h2id="introspection"><ahref="#introspection" name="introspection">#</a>Introspection</h2><p><strong>Inspecting code at runtime.</strong></p><div><h3id="variables">Variables</h3><pre><codeclass="python language-python hljs"><list> = dir() <spanclass="hljs-comment"># Returns names of variables in current scope.</span>
1834
-
<dict> = locals() <spanclass="hljs-comment"># Returns dict of local variables. Also vars().</span>
1835
-
<dict> = globals() <spanclass="hljs-comment"># Returns dict of global variables.</span>
1833
+
<div><h2id="introspection"><ahref="#introspection" name="introspection">#</a>Introspection</h2><p><strong>Inspecting code at runtime.</strong></p><div><h3id="variables">Variables</h3><pre><codeclass="python language-python hljs"><list> = dir() <spanclass="hljs-comment"># Returns names of variables in current scope.</span>
1834
+
<dict> = locals() <spanclass="hljs-comment"># Returns dict of local variables. Also vars().</span>
1835
+
<dict> = globals() <spanclass="hljs-comment"># Returns dict of global variables.</span>
0 commit comments