constant: Use dir(comedi.wrapped) when comedi.wrapped exists
authorW. Trevor King <wking@tremily.us>
Thu, 17 Jul 2014 17:35:00 +0000 (10:35 -0700)
committerW. Trevor King <wking@tremily.us>
Thu, 17 Jul 2014 17:52:05 +0000 (10:52 -0700)
commit8c288b8a58f265d3670266318468e05f083e9805
tree997aca27f49f8f055887f69678b8b79d04148d33
parentc3832480bbde8ce21a5a01b94930da232f7f08a9
constant: Use dir(comedi.wrapped) when comedi.wrapped exists

Since 371dcc5 (swig: remove comedi_ prefix from the function names,
2014-01-31, released in comedilib 0.10.2), dir(comedi) no longer lists
the meaty-bits:

  >>> import comedi
  >>> comedi.CR_ALT_FILTER
  67108864
  >>> [attr for attr in dir(comedi) if attr.startswith('CR_')]

Instead, they have shifted to comedi.wrapped:

  >>> [attr for attr in dir(comedi.wrapped) if attr.startswith('CR_')]
  ['CR_ALT_FILTER', 'CR_ALT_SOURCE', 'CR_DEGLITCH', 'CR_DITHER', 'CR_EDGE',
   'CR_FLAGS_MASK', 'CR_INVERT']

This commit adjusts pycomedi to use comedi.wrapped when it exists, so
pycomedi will work with the new comedilib (and continue working with
the old comedilibs).

I also have to remove 'COMEDI_' from the prefixes that contain it to
catch up with 371dcc5:

  +%rename("%(strip:[COMEDI_])s", regextarget=1) "COMEDI_.*";

Reported-by: Colin Jermain <clj72@cornell.edu>
pycomedi/constant.pyx