[python] matplotlib: make pyplot a submodule of matplotlib

This commit is contained in:
Émilie Feral
2020-03-30 13:58:02 +02:00
parent 7d5568ff1a
commit 61e7ec52e6
16 changed files with 79 additions and 6 deletions

View File

@@ -0,0 +1,13 @@
extern "C" {
#include "modmatplotlib.h"
#include "pyplot/modpyplot.h"
}
#include <assert.h>
// Internal functions
mp_obj_t modmatplotlib___init__() {
modpyplot___init__();
return mp_const_none;
}