Martin Blais - 2007-03-29

Logged In: YES
user_id=10996
Originator: YES

this ugly kludge works for me to remove the warning:

# Kludge to remove annoying unexpected numarray warning.
import pkg_resources
group = "OpenGL.arrays.formathandler"
for dist in pkg_resources.working_set:
entries = dist.get_entry_map()
if group in entries:
emap = entries[group]
del emap['numarray']

I'm sure there is an "official" way to do this or this is a bug.
Please let me know.