[pygccxml-development] Indexing suite exception
Brought to you by:
mbaas,
roman_yakovenko
|
From: Matthias B. <ba...@ir...> - 2006-06-19 08:04:29
|
Hi,
after being too busy the last couple of weeks to check out the new
pyplusplus stuff (and move the experimental stuff to the contrib
directory) I finally did an update on the code and now I get the below
exception when I try to create the Maya bindings. My script is still
unchanged and has worked with previous versions. I also haven't
specified anything that has to do with the indexing suite, so I would
have expected not to trigger anything that is related to this feature.
Is this a bug in pyplusplus or do I have to specify anything related to
this in my driver script?
- Matthias -
Traceback (most recent call last):
File "pypp_setup.py", line 1174, in ?
mod.writeModule()
File "...pyplusplus/experimental/pypp_api.py", line 456, in writeModule
mfs.write(write_main=multiCreateMain)
File "...pyplusplus/file_writers/multiple_files.py", line 253, in write
map( self.split_class, class_creators )
File "...pyplusplus/file_writers/multiple_files.py", line 171, in
split_class
self.__split_class_impl( class_creator )
File "...pyplusplus/file_writers/multiple_files.py", line 148, in
__split_class_impl
, [class_creator] ))
File "...pyplusplus/file_writers/multiple_files.py", line 132, in
create_source
answer.append( code_creators.code_creator_t.indent(
creator.create() ) )
File "...pyplusplus/code_creators/code_creator.py", line 93, in create
code = self._create_impl()
File "...pyplusplus/code_creators/class_declaration.py", line 308, in
_create_impl
return self._generate_code_no_scope()
File "...pyplusplus/code_creators/class_declaration.py", line 226, in
_generate_code_no_scope
class_constructor, used_init = self._generate_constructor()
File "...pyplusplus/code_creators/class_declaration.py", line 210, in
_generate_constructor
elif self.declaration.indexing_suite:
File "...pyplusplus/decl_wrappers/class_wrapper.py", line 108, in
_get_indexing_suite
if self._indexing_suite is None:
AttributeError: 'class_t' object has no attribute '_indexing_suite'
|