Re: [Python-Dev] Behavoir question.

2005-11-15 Thread Calvin Spealman
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.

2005-11-15 Thread Scott David Daniels
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