[Python-bugs-list] Coredump in moduleobjectc.c:134 (PR#79)

guido@CNRI.Reston.VA.US guido@CNRI.Reston.VA.US
Thu, 16 Sep 1999 10:04:59 -0400 (EDT)


> I was able to get more information. The problem might occur with the following code:
> 
> * module.py*
> 
> from prod_support import read_current_prodids
> 
> PRODIDS = read_current_prodids()
> 
> 
> * main.py *
> 
> import module.py
> 
> 
> When I run python on main.py I get the bus error. When I switch module.py to:
> 
> import prod_support
> PRODIDS = prod_support.read_current_prodids()
> 
> everything is ok. The function read_current_prodids() uses DCOracle (Digicool/Zope).
> I'm not sure if this causes the problem - I'll try to figure it out.

Probably something in the prod_support module causes the problem.  I'm 
quite sure the problem is not in Python itself, so the Python bugs
list is not the place to report the bug.

--Guido van Rossum (home page: http://www.python.org/~guido/)