[Python-3000] Release Countdown

"Martin v. Löwis" martin at v.loewis.de
Sat Sep 1 07:31:04 CEST 2007


> If it works because the bytecode compiler changes x.split(":") into
> the moral equivalent of
> 
>     try:
>         x.split(":")
>     except StrNotBytesError:
>         x.split(b":")
> 
> that is good enough.

And how do you propose to implement that?

Regards,
Martin


More information about the Python-3000 mailing list