Użytkownik David Martinez napisał: > > What should I do if I am getting the following error when trying to add > a grid to my form? > > XXX lineno: 556, opcode: 0 > > What does that even mean? Like I said previously, once I get this error, > python.exe itself crashes. > >
Hi. Most common situation is that you have part of code compiled with other compiler version than currently used. But I sometimes receive this error when I try to run my code within IDE, and second copy from command prompt the same time. Just try to remove all *.pyc|*.pyo files of modules used by your application. -- Regards Jacek Kałucki _______________________________________________ Post Messages to: [email protected] Subscription Maintenance: http://leafe.com/mailman/listinfo/dabo-users Searchable Archives: http://leafe.com/archives/search/dabo-users This message: http://leafe.com/archives/byMID/[email protected]
