[Author Prev][Author Next][Thread Prev][Thread Next][Author Index][Thread Index]

[pygame] documentation with epydoc



hi all

i am trying to create documentation of some modules built with using pygame with epydoc library. I am getting an error related to pygame :
NotImplementedError: movieext module not available


Has anyone experienced this before? I am asking at the pygame list because it seems directly related to pygame and epydoc does not seem to have a mailing list, so before i report them a bug i thought i might better asking here. I never had this error before, it happens both in Linux (Ubuntu) and windows XP with pygame 1.7.1 and python 2.4 in both systems.

below i paste the complete error i get in case this helps understanding better the problem.

thanks

enrike


r2d2@ubuntu:~$ epydoc --debug --html --check mymodule Importing 1 modules. [1/1] Importing mymodule Building API documentation for 1 modules.
[1/1] Building docs for mymodule
Building docs for mymodule
/usr/lib/python2.4/site-packages/epydoc/uid.py:585: RuntimeWarning: use movieext: No module named movieext
if (self._module is not None and
Traceback (most recent call last):
File "/usr/bin/epydoc", line 7, in ?
cli()
File "/usr/lib/python2.4/site-packages/epydoc/cli.py", line 108, in cli
docmap = _make_docmap(modules, options)
File "/usr/lib/python2.4/site-packages/epydoc/cli.py", line 484, in _make_docmap
try: d.add(module)
File "/usr/lib/python2.4/site-packages/epydoc/objdoc.py", line 2954, in add
self._add(objID)
File "/usr/lib/python2.4/site-packages/epydoc/objdoc.py", line 2961, in _add
self.add_one(objID)
File "/usr/lib/python2.4/site-packages/epydoc/objdoc.py", line 2884, in add_one
self.data[objID] = ModuleDoc(objID, self._verbosity)
File "/usr/lib/python2.4/site-packages/epydoc/objdoc.py", line 1168, in __init__
vuid = make_uid(val, self._uid, field)
File "/usr/lib/python2.4/site-packages/epydoc/uid.py", line 781, in make_uid
uid = ObjectUID(object)
File "/usr/lib/python2.4/site-packages/epydoc/uid.py", line 418, in __init__
name = self._findname()
File "/usr/lib/python2.4/site-packages/epydoc/uid.py", line 509, in _findname
return '%s.%s' % (self.module(), objname)
File "/usr/lib/python2.4/site-packages/epydoc/uid.py", line 585, in module
if (self._module is not None and
File "/usr/lib/python2.4/site-packages/pygame/__init__.py", line 52, in __getattr__
raise NotImplementedError, MissingPygameModule
NotImplementedError: movieext module not available