Ignore:
Timestamp:
Jan 24, 2014, 2:17:18 AM (10 years ago)
Author:
Paul Brossier <piem@piem.org>
Branches:
feature/autosink, feature/cnn, feature/cnn_org, feature/constantq, feature/crepe, feature/crepe_org, feature/pitchshift, feature/pydocstrings, feature/timestretch, fix/ffmpeg5, master, pitchshift, sampler, timestretch, yinfft+
Children:
7b56229
Parents:
9e58e78
Message:

ext/py-sink.c: do not generate

File:
1 edited

Legend:

Unmodified
Added
Removed
  • python/ext/aubiomodule.c

    r9e58e78 rf1100a4  
    200200      || (PyType_Ready (&Py_pvocType) < 0)
    201201      || (PyType_Ready (&Py_sourceType) < 0)
     202      || (PyType_Ready (&Py_sinkType) < 0)
    202203      // generated objects
    203204      || (generated_types_ready() < 0 )
     
    230231  Py_INCREF (&Py_sourceType);
    231232  PyModule_AddObject (m, "source", (PyObject *) & Py_sourceType);
     233  Py_INCREF (&Py_sinkType);
     234  PyModule_AddObject (m, "sink", (PyObject *) & Py_sinkType);
    232235
    233236  // add generated objects
Note: See TracChangeset for help on using the changeset viewer.