So imagine I flagged an answer for "very low quality". By that moment, the answer looked like this (taken from a random answer):
You can avoid some allocations with, say, re.finditer():
import re fi = re.finditer("\S+", line) next(fi) next(fi) var_needed = next(fi).group() next(fi) next(fi) another_var_needed = next(fi).group()
Now, suppose that after my flag someone decided to nicely edit the answer:
You can avoid some allocations with, say,
re.finditer():import re fi = re.finditer("\S+", line) next(fi) next(fi) var_needed = next(fi).group() next(fi) next(fi) another_var_needed = next(fi).group()
By the time someone is revising my flag, how would he see it? Formatted? If it's formatted, shouldn't flags be considered the way they were originally? I mean, like a snapshot of the original non-formatted answer