Open GoogleCodeExporter opened 9 years ago
Line 91 is the print statement below:
try:
symbolizer_input = '%s %s' % (binary, offset)
if DEBUG:
print(symbolizer_input)
print(symbolizer_input, file=self.pipe.stdin)
while True:
...
Original comment by noloa...@gmail.com
on 15 Jan 2015 at 2:13
So it appears to make this work on some of the Pythons (god knows what they'll
break next):
print(symbolizer_input, file=self.pipe.stdin)
should be changed to:
file=self.pipe.stdin
print(symbolizer_input, file)
The changes need to occur on line 91 and 142.
Original comment by noloa...@gmail.com
on 15 Jan 2015 at 2:41
Adding Project:AddressSanitizer as part of GitHub migration.
Original comment by ramosian.glider@gmail.com
on 30 Jul 2015 at 9:06
Original issue reported on code.google.com by
noloa...@gmail.com
on 15 Jan 2015 at 2:11