From: Richard W. <ric...@gm...> - 2015-04-11 04:33:38
|
I ended up finding that some third party modules were doing things like “from six.moves import range” and this would result in a recursion depth error. Changing to “import six.moves” and changing the references to accommodate would fix it, but there are so many uses like that it became a nightmare. I kept changing them in one module, retrying, and then finding more that reference it. |