Re: [myhdl-list] Max Recursion Depth on Signal Copy ERROR
Brought to you by:
jandecaluwe
From: Jan D. <ja...@ja...> - 2009-12-15 16:30:18
|
Christopher L. Felton wrote: > The following will cause an error. > > >>> from myhdl import * > >>> from copy import copy > >>> x = Signal(False) > >>> y = copy(x) > Exception RuntimeError: 'maximum recursion depth exceeded while calling > a Python object' in <type 'exceptions.AttributeError'> ignored > > > Not sure why?? Me neither :-) The Signal object is becoming a rather complex thing with (mutually) recursive dependencies on other objects, so I'm not really surprized however. I hope you have other means to accomplish what you want? -- Jan Decaluwe - Resources bvba - http://www.jandecaluwe.com Python as a HDL: http://www.myhdl.org VHDL development, the modern way: http://www.sigasi.com Analog design automation: http://www.mephisto-da.com World-class digital design: http://www.easics.com |