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.

作者 ncoghlan
收信人 barry, ezio.melotti, flox, ncoghlan
日期 2013-11-04.13:00:07
SpamBayes Score -1.0
Marked as misclassified
Message-id <1383570008.89.0.743487195803.issue17828@psf.upfronthosting.co.za>
In-reply-to
内容
Updated patch. The results of this suggests to me that the input wrappers are likely infeasible at this point in time, but improving the errors for the wrong *output* type is entirely feasible. Since the main conversion we need to prompt is things like "binary_object.decode(binary_codec)" -> "codecs.decode(binary_object, binary_codec)", I suggest we limit the scope of this issue to that part of the problem.

>>> import codecs
>>> codecs.encode(b"hello", "bz2_codec").decode("bz2_codec")
Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
TypeError: 'bz2_codec' decoder returned 'bytes' instead of 'str'; use codecs.decode to decode to arbitrary types
>>> "hello".encode("bz2_codec")
TypeError: 'str' does not support the buffer interface

The above exception was the direct cause of the following exception:

Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
TypeError: invalid input type for 'bz2_codec' codec (TypeError: 'str' does not support the buffer interface)
>>> "hello".encode("rot_13")
TypeError: 'rot_13' encoder returned 'str' instead of 'bytes'; use codecs.encode to encode to arbitrary types

The above exception was the direct cause of the following exception:

Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
TypeError: invalid input type for 'rot_13' codec (TypeError: 'rot_13' encoder returned 'str' instead of 'bytes'; use codecs.encode to encode to arbitrary types)
历史
日期 用户 动作 参数
2013-11-04 13:00:08ncoghlan修改recipients: + ncoghlan, barry, ezio.melotti, flox
2013-11-04 13:00:08ncoghlan修改messageid: <1383570008.89.0.743487195803.issue17828@psf.upfronthosting.co.za>
2013-11-04 13:00:08ncoghlan链接issue17828 messages
2013-11-04 13:00:08ncoghlan创建