diff --git a/README.md b/README.md index e43ebb5..68c0e70 100644 --- a/README.md +++ b/README.md @@ -2147,7 +2147,7 @@ union_of_sets = functools.reduce(op.or_, ) last_element = op.methodcaller('pop')() ``` * **Functions and\_() and or\_() correspond to operators '&' and '|'.** -* **They only work on objects with defined and() and or() special methods, ie. ints and sets.** +* **They only work on objects with defined and() and or() special methods, i.e. ints and sets.** Introspection diff --git a/index.html b/index.html index 08b9223..fc1151d 100644 --- a/index.html +++ b/index.html @@ -1920,7 +1920,7 @@ last_element = op.methodcaller('pop')(<l

#Introspection

Inspecting code at runtime.

Variables

<list> = dir()                             # Names of local variables (incl. functions).
 <dict> = vars()                            # Dict of local variables. Also locals().