Unexpected nested exception with b64decode
未关闭
还没有人认领这个 Issue。
docs
stdlib
- 主要语言
- Python
- 星标
- 77.2k
- 派生
- 35.9k
- PR 合并指标
- PR 指标待抓取
描述
Bug report
Bug description:
The b64decode function of the base64 standard library module can behave in unexpected ways with invalid inputs.
Take this example:
#!/usr/bin/python3
import base64
base64.b64decode('a\xd6==')
According to the docs, I would expect that invalid characters in the input cause a binascii.Error exception. However, this example gives me the following:
Traceback (most recent call last):
File "/usr/lib/python3.12/base64.py", line 37, in _bytes_from_decode_data
return s.encode('ascii')
^^^^^^^^^^^^^^^^^
UnicodeEncodeError: 'ascii' codec can't encode character '\xd6' in position 1: ordinal not in range(128)
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "/tmp/./test", line 3, in <module>
base64.b64decode('a\xd6==')
File "/usr/lib/python3.12/base64.py", line 83, in b64decode
s = _bytes_from_decode_data(s)
^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/usr/lib/python3.12/base64.py", line 39, in _bytes_from_decode_data
raise ValueError('string argument should contain only ASCII characters')
ValueError: string argument should contain only ASCII characters
So not only do I get an exception that I don't expect according to the docs, it appears there is a bug in the internal exception handling causing an exception (ValueError) during another exception (UnicodeEncodeError).
CPython versions tested on:
3.13
Operating systems tested on:
Linux
贡献指南
从这里开始
- 先读完整个 Issue,再读项目的贡献指南。
- 在 Issue 下留言说明你要接手 —— 这能避免两个人做同样的事。
- Fork 仓库,在一个分支上完成修改。
- 提交 Pull Request,并在描述里引用这个 Issue 编号。
调研方向
重现非 ASCII 输入示例,然后阅读 base64.py 中 b64decode 和 _bytes_from_decode_data 附近的代码,将观察到的异常与文档描述的行为进行比较。完成的标准是:无效输入遵循文档描述的异常行为,且不会出现意外的嵌套 traceback。
由索引模型根据 Issue 内容生成。
评估
- 技术栈
- python
- 领域
- backend
- Issue 类型
- 缺陷
- 难度
- 2/5
- 预计耗时
- 1-3 小时
- 活跃度
- 停滞
- 描述清晰度
- 基本清楚
- 新手友好度
- 45/100