classification
Title: Use the bytes type in asynchat
Type: Stage:
Components: Library (Lib) Versions: Python 3.0
process
Status: closed Resolution: accepted
Dependencies: Superseder:
Assigned To: gvanrossum Nosy List: alexandre.vassalotti, gvanrossum (2)
Priority: normal Keywords patch

Created on 2007-07-11 19:37 by alexandre.vassalotti, last changed 2008-01-06 22:29 by admin.

Files
File name Uploaded Description Edit Remove
asynchat_use_bytes.patch alexandre.vassalotti, 2007-07-11 19:37
Messages (2)
msg52839 - (view) Author: Alexandre Vassalotti (alexandre.vassalotti) Date: 2007-07-11 19:37
The unit test in py3k-struni was failing because asynchat.py was trying concatenate str and bytes strings. My solution is to make asynchat use and return only bytes strings.
msg52840 - (view) Author: Guido van Rossum (gvanrossum) Date: 2007-07-12 07:59
Committed revision 56290.

Thanks!
History
Date User Action Args
2008-01-06 22:29:45adminsetkeywords: - py3k
versions: + Python 3.0
2007-07-11 19:37:04alexandre.vassalotticreate