Robin Becker wrote:
I found that this error
Exception RuntimeError: 'maximum recursion depth exceeded in
__subclasscheck__' in ignored
occurs when attempting to copy (copy.copy(inst)) an instance of a class
that looks like this
class LazyParagraph(_LazyMixin,TTParagraph):
SUPER=TTPar
I found that this error
Exception RuntimeError: 'maximum recursion depth exceeded in __subclasscheck__' in ignored
occurs when attempting to copy (copy.copy(inst)) an instance of a class that
looks like this
class LazyParagraph(_LazyMixin,TTParagraph):
SUPER=TTParagraph
_CL
Steve Holden wrote:
Benjamin Peterson wrote:
Robin Becker NOSPAMreportlab.com> writes:
Well that's not really acceptable as a solution is it? :)
This doesn't happen in Python 3.0,
so you could port to that. :)
my initial attempts in this direction were even less successful :(
Pe
Benjamin Peterson wrote:
> Robin Becker NOSPAMreportlab.com> writes:
>> Well that's not really acceptable as a solution is it? :)
>
> This doesn't happen in Python 3.0,
> so you could port to that. :)
>
> In 2.7, the better recursion depth
> handling
> in Py3k may be backported,but the
> best yo
Robin Becker NOSPAMreportlab.com> writes:
> >
> Well that's not really acceptable as a solution is it? :)
This doesn't happen in Python 3.0,
so you could port to that. :)
In 2.7, the better recursion depth
handling
in Py3k may be backported,but the
best you can do for now is not touch
the recur
Benjamin Peterson wrote:
Robin Becker NOSPAMreportlab.com> writes:
python 2.6 indicates this error whilst running a script that works fine
under Python 2.5.
Exception RuntimeError: 'maximum recursion depth exceeded in
__subclasscheck__' in ignored
I suppose this must be related to some k
Robin Becker NOSPAMreportlab.com> writes:
>
> python 2.6 indicates this error whilst running a script that works fine
> under Python 2.5.
>
> Exception RuntimeError: 'maximum recursion depth exceeded in
> __subclasscheck__' in ignored
>
> I suppose this must be related to some kind of isins
python 2.6 indicates this error whilst running a script that works fine
under Python 2.5.
Exception RuntimeError: 'maximum recursion depth exceeded in
__subclasscheck__' in ignored
I suppose this must be related to some kind of isinstance or issubclass
check, but how can I locate the prob