equal
deleted
inserted
replaced
355 return blocks |
355 return blocks |
356 |
356 |
357 text = open(sys.argv[1]).read() |
357 text = open(sys.argv[1]).read() |
358 blocks = debug(findblocks, text) |
358 blocks = debug(findblocks, text) |
359 blocks = debug(findliteralblocks, blocks) |
359 blocks = debug(findliteralblocks, blocks) |
360 blocks = debug(prunecontainers, blocks, sys.argv[2:]) |
360 blocks, pruned = debug(prunecontainers, blocks, sys.argv[2:]) |
361 blocks = debug(inlineliterals, blocks) |
361 blocks = debug(inlineliterals, blocks) |
362 blocks = debug(splitparagraphs, blocks) |
362 blocks = debug(splitparagraphs, blocks) |
363 blocks = debug(updatefieldlists, blocks) |
363 blocks = debug(updatefieldlists, blocks) |
364 blocks = debug(findsections, blocks) |
364 blocks = debug(findsections, blocks) |
365 blocks = debug(addmargins, blocks) |
365 blocks = debug(addmargins, blocks) |