File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -34,8 +34,8 @@ The changes required fell into the following categories:
3434* In a few places asterisks needed to be escaped which would otherwise have
3535 been interpreted as beginning blocks of italic or bold text, e.g.:
3636
37- - The type of tp_free has been changed from "void (*)(PyObject \*) "
38- to "void (*)(void \*) ".
37+ - The type of tp_free has been changed from "`` void (*)(PyObject *)`` "
38+ to "`` void (*)(void *)`` ".
3939
4040 Note that only the asterisks preceded by whitespace needed to be escaped.
4141
@@ -52,7 +52,7 @@ The changes required fell into the following categories:
5252 - Note that PyLong_AsDouble can fail! This has always been true,
5353 but no callers checked for it. It's more likely to fail now,
5454 because overflow errors are properly detected now. The proper way
55- to check: : :
55+ to check::
5656
5757 double x = PyLong_AsDouble(some_long_object);
5858 if (x == -1.0 && PyErr_Occurred()) {
You can’t perform that action at this time.
0 commit comments