mirror of
https://github.com/python/cpython.git
synced 2025-08-03 16:39:00 +00:00
"ZeroDevisionError" --> "ZeroDivisionError"
Thanks, AMK!
This commit is contained in:
parent
a608febd5f
commit
b85fbec83b
2 changed files with 2 additions and 2 deletions
|
@ -240,7 +240,7 @@ you have already created) when you return an error indicator!
|
|||
|
||||
The choice of which exception to raise is entirely yours. There are
|
||||
predeclared \C{} objects corresponding to all built-in Python exceptions,
|
||||
e.g. \cdata{PyExc_ZeroDevisionError} which you can use directly. Of
|
||||
e.g. \cdata{PyExc_ZeroDivisionError} which you can use directly. Of
|
||||
course, you should choose exceptions wisely --- don't use
|
||||
\cdata{PyExc_TypeError} to mean that a file couldn't be opened (that
|
||||
should probably be \cdata{PyExc_IOError}). If something's wrong with
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue