You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Provide signatures to some C-level classes and methods.
Compare e.g. an excerpt of the docs of matplotlib._tri.Triangulation
before
```
| calculate_plane_coefficients(...)
| calculate_plane_coefficients(z, plane_coefficients)
|
| Calculate plane equation coefficients for all unmasked triangles
|
| get_edges(...)
| get_edges()
|
| Return edges array
```
and after
```
| calculate_plane_coefficients(z, plane_coefficients)
| Calculate plane equation coefficients for all unmasked triangles
|
| get_edges()
| Return edges array
```
The convention of using "func_name(arg, ...)--\n\n" for
C-level signatures is admittedly undocumented, but comes from
https://bugs.python.org/issue20530.
0 commit comments