module_cython ============= Counter (cdef class) -------------------- Stateful Cython class with a simple public API. .. literalinclude:: ../../../../../scikitplot/cython/_templates/module_cython/t01_counter.pyx :language: cython Module: extension class ----------------------- Simple cdef class counter. .. literalinclude:: ../../../../../scikitplot/cython/_templates/module_cython/t01_extension_class.pyx :language: cython Module constants (Cython) ------------------------- DEF constant example. .. literalinclude:: ../../../../../scikitplot/cython/_templates/module_cython/t01_module_constants.pyx :language: cython cdef class Counter ------------------ .. literalinclude:: ../../../../../scikitplot/cython/_templates/module_cython/t02_cdef_class_counter.pyx :language: cython cdef class Counter ------------------ .. literalinclude:: ../../../../../scikitplot/cython/_templates/module_cython/t03_cdef_class_counter.pyx :language: cython Include .pxi helper (multi-file) -------------------------------- .. literalinclude:: ../../../../../scikitplot/cython/_templates/module_cython/t90_include_pxi_square.pyx :language: cython Extern header (header-only) --------------------------- .. literalinclude:: ../../../../../scikitplot/cython/_templates/module_cython/t91_extern_header_add.pyx :language: cython