@MashedTech to Programmer [email protected] • 3 months agoI redid the meme with what hurts meimagemessage-square100arrow-up1755arrow-down121 cross-posted to: programmerhumor[email protected]
arrow-up1734arrow-down1imageI redid the meme with what hurts me@MashedTech to Programmer [email protected] • 3 months agomessage-square100 cross-posted to: programmerhumor[email protected]
minus-square@thebestaquamanlink3•3 months agoThat’s what major versions are for - breaking changes. Regardless, you should probably be able to fix this with some regex hackery. Something along the lines of new_file_content = re.sub(r'(?<=\bprint)(\s+)(?!\()', '(', old_file_content) new_file_content = re.sub(r'(print\(.*?)(\n|$)', r'\1)', new_file_content) should do the trick.
That’s what major versions are for - breaking changes. Regardless, you should probably be able to fix this with some regex hackery. Something along the lines of
new_file_content = re.sub(r'(?<=\bprint)(\s+)(?!\()', '(', old_file_content) new_file_content = re.sub(r'(print\(.*?)(\n|$)', r'\1)', new_file_content)
should do the trick.