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.

作者 pitrou
收信人 alex, hynek, pitrou
日期 2012-01-24.13:20:49
SpamBayes Score 2.942091e-13
Marked as misclassified
Message-id <1327411250.75.0.464495984273.issue13848@psf.upfronthosting.co.za>
In-reply-to
内容
Yes, fixing the conversion block is probably the right approach.
Apparently posixmodule.c uses PyUnicode_FSConverter, perhaps that would work?
(also make sure that the case where a bytes string is given is fixed too:

>>> open(b"\x00")
Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
FileNotFoundError: [Errno 2] No such file or directory: ''
)
历史
日期 用户 动作 参数
2012-01-24 13:20:50pitrou修改recipients: + pitrou, alex, hynek
2012-01-24 13:20:50pitrou修改messageid: <1327411250.75.0.464495984273.issue13848@psf.upfronthosting.co.za>
2012-01-24 13:20:50pitrou链接issue13848 messages
2012-01-24 13:20:49pitrou创建