File "d:\jenkins\workspace\PAX-2.5.0-agent-win\Sources\Build\pefile.py", line 2187, in write new_file_data = ''.join(chr(c) for c in file_data) MemoryError
</Exception>We use Python 2.7 which supports bytearray type already. The conversion ''.join(chr(c) for c in file_data does NOT required for bytearray type.
I attached patch which replace this conversion on bytesaray's own string conversion.
Could you please apply attached patch?With best regards,
Denis Kochetkov