Re: [Python-Dev] Behavoir question.
On 11/15/05, Scott David Daniels <[EMAIL PROTECTED]> wrote: > Since I am fiddling with int/long conversions to/from string: > > Is the current behavior intentional (or mandatory?): > > v = int(' 5 ') > works, but: > v = int(' 5
[Python-Dev] Behavoir question.
Since I am fiddling with int/long conversions to/from string: Is the current behavior intentional (or mandatory?): v = int(' 5 ') works, but: v = int(' 5L ') fails. --Scott David Dani