This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author xtreak
Recipients Tester, bradengroom, serhiy.storchaka, xtreak
Date 2018-11-01.13:16:53
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1541078214.24.0.788709270274.issue35084@psf.upfronthosting.co.za>
In-reply-to
Content
@Tester Thanks for the report. I looked at the crash report and I couldn't see CPython crashing with a segfault. I think it's a crash from another application which might be running the interpreter and can't handle the error raised by CPython for invalid data being decoded. This is something the application which crashes has to handle when CPython returns the expected trace back and I don't see any fix from CPython's end. Correct me if I am wrong here.

Relevant CPython trace back : 

PythonArgs: ['/usr/lib/python3.6/base64.py', '-d', 'test.code2']
Traceback:
 Traceback (most recent call last):
   File "/usr/lib/python3.6/runpy.py", line 193, in _run_module_as_main
     "__main__", mod_spec)
   File "/usr/lib/python3.6/runpy.py", line 85, in _run_code
     exec(code, run_globals)
   File "/usr/lib/python3.6/base64.py", line 602, in <module>
     main()
   File "/usr/lib/python3.6/base64.py", line 586, in main
     func(f, sys.stdout.buffer)
   File "/usr/lib/python3.6/base64.py", line 512, in decode
     s = binascii.a2b_base64(line)
 binascii.Error: Incorrect padding


Please remove the quoted content while replying from email since it's added to the bug tracker and causes scrolling a little difficult with duplicated content.


Thanks
History
Date User Action Args
2018-11-01 13:16:54xtreaksetrecipients: + xtreak, serhiy.storchaka, bradengroom, Tester
2018-11-01 13:16:54xtreaksetmessageid: <1541078214.24.0.788709270274.issue35084@psf.upfronthosting.co.za>
2018-11-01 13:16:54xtreaklinkissue35084 messages
2018-11-01 13:16:53xtreakcreate