email.utils.formataddr incorrect handling of unicode names with comma
未關閉
還沒有人認領這個 Issue。
topic-email
type-bug
- 主要語言
- Python
- 星號
- 77.2k
- 分支
- 36k
- 平均合併
- 1 天 9 小時
- 30 天內合併 PR
- 558
描述
Bug report
When email.charset is configured to produce 8bit content, calling email.utils.formataddr can result in corrupted output from formataddr. Here's example code:
import email.charset
import email.utils
email.charset.add_charset('utf-8', None)
print("To: " + email.utils.formataddr(('Foo, Bar', 'foo@example.com')))
print("To: " + email.utils.formataddr(('Fôo, Bar', 'foo@example.com')))
Expected output:
To: "Foo, Bar" <foo@example.com>
To: "Fôo, Bar" <foo@example.com>
Actual output:
To: "Foo, Bar" <foo@example.com>
To: Fôo, Bar <foo@example.com>
Your environment
- CPython versions tested on: 3.11.1
- Operating system and architecture: Fedora 37 x86_64
Linked PRs
- gh-155881
貢獻指南
從這裡開始
- 先讀完整個 Issue,再讀專案的貢獻指南。
- 在 Issue 下留言說明你要接手 —— 這能避免兩個人做同樣的事。
- Fork 儲存庫,在一個分支上完成修改。
- 送出 Pull Request,並在描述裡引用這個 Issue 編號。
研究方向
首先在 CPython 3.11.1 上執行提供的 email.charset 和 email.utils.formataddr 重現,然後檢查 formataddr 如何處理包含逗號的非 ASCII 顯示名稱。當輸出與預期的兩行 To 相符,且回歸測試涵蓋已設定的 8bit 情況時,即代表完成。
由索引模型根據 Issue 內容生成。
評估
- 技術堆疊
- python
- 領域
- backend
- Issue 類型
- 缺陷
- 難度
- 3/5
- 預估耗時
- 1-2 天
- 活躍度
- 停滯
- 描述清晰度
- 描述清楚
- 新手友好度
- 35/100