Created
January 18, 2018 16:23
-
-
Save yannayl/3e8834a78d259f578be14a6ef39b3e20 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import sark | |
for line in sark.Segment(name='.bss').lines: | |
if not line.name: | |
continue | |
if line.name.startswith('g_'): | |
continue | |
line.name = 'g_' + line.name |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment