[myhdl-list] Max Recursion Depth on Signal Copy ERROR
Brought to you by:
jandecaluwe
From: Christopher L. F. <chr...@gm...> - 2009-12-15 13:03:38
|
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?? .chris |