Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 1 addition & 5 deletions INSTALL
Original file line number Diff line number Diff line change
Expand Up @@ -257,12 +257,8 @@ Required libraries that ship with matplotlib
agg template source statically, so it will not affect anything on
your system outside of matplotlib.

`PyCXX` 6.2.4
A library for writing Python extensions in C++.

`qhull` 2012.1
A library for computing convex hulls. Used for computing triangulation
and meshes.
A library for computing Delaunay triangulations.

`ttconv`
truetype font utility
Expand Down
5 changes: 3 additions & 2 deletions doc/devel/coding_guide.rst
Original file line number Diff line number Diff line change
Expand Up @@ -152,10 +152,11 @@ C/C++ extensions
address C++, but most of its admonitions still apply).

* Interfacing with Python may be done either with the raw Python/C API
or Cython. Use of PyCXX is discouraged for new code.
or Cython.

* Python/C interface code should be kept separate from the core C/C++
code. The interface code should be named `FOO_wrap.cpp`.
code. The interface code should be named `FOO_wrap.cpp` or
`FOO_wrapper.cpp`.

* Header file documentation (aka docstrings) should be in Numpydoc
format. We don't plan on using automated tools for these
Expand Down
43 changes: 0 additions & 43 deletions extern/CXX/Config.hxx

This file was deleted.

43 changes: 0 additions & 43 deletions extern/CXX/Exception.hxx

This file was deleted.

43 changes: 0 additions & 43 deletions extern/CXX/Extensions.hxx

This file was deleted.

Loading