We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e7f0d1f commit 93c4d9bCopy full SHA for 93c4d9b
1 file changed
docs/writing/gotchas.rst
@@ -79,7 +79,7 @@ signal that no argument was provided (:py:data:`None` is often a good choice).
79
When the Gotcha Isn't a Gotcha
80
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
81
82
-Sometimes you specifically can "exploit" (read: use as intended) this behavior
+Sometimes you can specifically "exploit" (read: use as intended) this behavior
83
to maintain state between calls of a function. This is often done when writing
84
a caching function.
85
@@ -126,7 +126,7 @@ What Does Happen
126
8
127
128
129
-Five functions are created, but all of them just multiply ``x`` by 4.
+Five functions are created; instead all of them just multiply ``x`` by 4.
130
131
Python's closures are *late binding*.
132
This means that the values of variables used in closures are looked
0 commit comments