On 04/10/2007, at 10:22 AM, Anthony wrote: > I've managed to run gendoc.sh - there are a few errors, mainly to do > with 'missing information':
This is epydoc trying to import things that aren't available on your system. For example, DirectSound can only be imported on Windows. There is an excludes file (somewhere...) that lists modules which don't need documenting... the audio implementations should be added to it. > | Import failed (but source code parsing was successful). > | Error: AttributeError: 'module' object has no attribute > 'HRESULT' (line 112) Same again, HRESULT is windows only, you should be able to exclude this file from gendoc, or if not (unlikely) put it in a conditional that checks for sys.is_epydoc (you'll see this around in various parts of the source). Cheers Alex. --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "pyglet-users" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [EMAIL PROTECTED] For more options, visit this group at http://groups.google.com/group/pyglet-users?hl=en -~----------~----~----~----~------~----~------~--~---
