Comment by pekka.klarck:
Score: Positive
General Comment:
Looks good, especially when all the tests passed, but take a look at the
line-by-line comments.
Hopefully this makes RIDE faster with larger datasets.
Line-by-line comments:
File: /trunk/src/robot/parsing/model.py (r4283)
===============================================================================
Line 25: from robot.utils.normalizing import normalize
-------------------------------------------------------------------------------
We normally import just the `utils` module and use the methods through it
like `utils.normalize(args)`.
Line 214: normalizer = lambda s: normalize(s, [], True, True)
-------------------------------------------------------------------------------
This can probably be removed because:
1) It doesn't do anything different than normal `utils.normalize`.
2) It's not used anywhere.
For more information:
http://code.google.com/p/robotframework/source/detail?r=4283