id like to convert "print whatever" to "print(whatever)" i tried this pattern: search: print(.*) replace: print(\1) but i get: "print(whatever )" though DOTALL is not marked. python.re does not behave like this. what am i doing wrong?