MashedTech@lemmy.world to Programmer Humor@lemmy.ml · 2 months agoI redid the meme with what hurts melemmy.worldimagemessage-square98fedilinkarrow-up1742
arrow-up1742imageI redid the meme with what hurts melemmy.worldMashedTech@lemmy.world to Programmer Humor@lemmy.ml · 2 months agomessage-square98fedilink
minus-squarethebestaquaman@lemmy.worldlinkfedilinkarrow-up2·2 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.