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 Tester
Recipients Tester
Date 2018-10-28.00:06:55
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1540685216.33.0.788709270274.issue35085@psf.upfronthosting.co.za>
In-reply-to
Content
Seems the base64 module has issues with bad file(s). This does not seems to generate a Crash Report.

t:~$ python3 -m base64 -d "12s345a2"
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 585, in main
    with open(args[0], 'rb') as f:
FileNotFoundError: [Errno 2] No such file or directory: '12s345a2'

test@TestNut:~$ python3 -m base64 -d /test.txt
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 585, in main
    with open(args[0], 'rb') as f:
FileNotFoundError: [Errno 2] No such file or directory: '/test.txt'
History
Date User Action Args
2018-10-28 00:06:56Testersetrecipients: + Tester
2018-10-28 00:06:56Testersetmessageid: <1540685216.33.0.788709270274.issue35085@psf.upfronthosting.co.za>
2018-10-28 00:06:56Testerlinkissue35085 messages
2018-10-28 00:06:55Testercreate