Iterating file line by line in pypy is much slower than python
Iterating a big file line by line with pypy3.6 v3.7.1 (windows) is almost 10x slower than using python. Even just a simple code as such:
with open(FILENAME) as f:
for i, line in enumerate(f):
pass