File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -214,7 +214,7 @@ and initialize it by calling :c:func:`PyErr_NewException` in the module's
214
214
215
215
SpamError = PyErr_NewException("spam.error", NULL, NULL);
216
216
217
- Since :c:data: `!SpamError ` is a global variable, it will be overwitten every time
217
+ Since :c:data: `!SpamError ` is a global variable, it will be overwritten every time
218
218
the module is reinitialized, when the :c:data: `Py_mod_exec ` function is called.
219
219
220
220
For now, let's avoid the issue: we will block repeated initialization by raising an
Original file line number Diff line number Diff line change @@ -144,7 +144,7 @@ Restrictions
144
144
which can cause hard crashes when trying to read from the database.
145
145
146
146
* :meth: `Shelf.reorganize ` may not be available for all database packages and
147
- may temporarely increase resource usage (especially disk space) when called.
147
+ may temporarily increase resource usage (especially disk space) when called.
148
148
Additionally, it will never run automatically and instead needs to be called
149
149
explicitly.
150
150
You can’t perform that action at this time.
0 commit comments