| python Programming Glossary: maxrecursionTextually diffing JSON http://stackoverflow.com/questions/4599456/textually-diffing-json  result def recurse_matches_py a b alo blo ahi bhi answer maxrecursion Find all of the matching text in the lines of a and b. param.. filled with tuples  indicating line_in_a line_in_b param maxrecursion The maximum depth to recurse.  Must be a positive integer. return.. value is in the parameter answer which should be a list if maxrecursion 0 print 'max recursion depth reached' # this will never happen.. 
 |