Re: Suggestion: str.itersplit()

2007-04-22 Thread Stargaming
subscriber123 schrieb: > On Apr 21, 8:58 am, Dustan <[EMAIL PROTECTED]> wrote: > >>>From my searches here, there is no equivalent to java's >> >>StringTokenizer in python, which seems like a real shame to me. >> >>However, str.split() works just as well, except for the fact that it >>creates it al

Re: Suggestion: str.itersplit()

2007-04-21 Thread Dustan
On Apr 21, 4:18 pm, Dustan <[EMAIL PROTECTED]> wrote: > On Apr 21, 7:58 am, Dustan <[EMAIL PROTECTED]> wrote: > > > >From my searches here, there is no equivalent to java's > > > StringTokenizer in python, which seems like a real shame to me. > > > However, str.split() works just as well, except fo

Re: Suggestion: str.itersplit()

2007-04-21 Thread Dustan
On Apr 21, 4:54 pm, [EMAIL PROTECTED] wrote: > On Apr 21, 5:58 am, Dustan <[EMAIL PROTECTED]> wrote: > > > >From my searches here, there is no equivalent to java's > > > StringTokenizer in python, which seems like a real shame to me. > > > However, str.split() works just as well, except for the fac

Re: Suggestion: str.itersplit()

2007-04-21 Thread Alex Martelli
Dustan <[EMAIL PROTECTED]> wrote: > On Apr 21, 7:58 am, Dustan <[EMAIL PROTECTED]> wrote: > > >From my searches here, there is no equivalent to java's > > > > StringTokenizer in python, which seems like a real shame to me. > > > > However, str.split() works just as well, except for the fact that i

Re: Suggestion: str.itersplit()

2007-04-21 Thread Jorge Godoy
Dustan <[EMAIL PROTECTED]> writes: > If anybody could inform me on how to get my hands on the python source > code, I might even be able to come up with an example of how it could > be implemented. I have no idea how to unzip that tgz or tar.bz2 file > on a windows machine, though (and that's not

Re: Suggestion: str.itersplit()

2007-04-21 Thread attn . steven . kuo
On Apr 21, 5:58 am, Dustan <[EMAIL PROTECTED]> wrote: > >From my searches here, there is no equivalent to java's > > StringTokenizer in python, which seems like a real shame to me. > > However, str.split() works just as well, except for the fact that it > creates it all at one go. I suggest an iter

Re: Suggestion: str.itersplit()

2007-04-21 Thread Dustan
On Apr 21, 7:58 am, Dustan <[EMAIL PROTECTED]> wrote: > >From my searches here, there is no equivalent to java's > > StringTokenizer in python, which seems like a real shame to me. > > However, str.split() works just as well, except for the fact that it > creates it all at one go. I suggest an iter

Re: Suggestion: str.itersplit()

2007-04-21 Thread subscriber123
On Apr 21, 8:58 am, Dustan <[EMAIL PROTECTED]> wrote: > >From my searches here, there is no equivalent to java's > > StringTokenizer in python, which seems like a real shame to me. > > However, str.split() works just as well, except for the fact that it > creates it all at one go. I suggest an iter

Re: Suggestion: str.itersplit()

2007-04-21 Thread Michael Hoffman
Marc 'BlackJack' Rintsch wrote: > In <[EMAIL PROTECTED]>, Dustan wrote: > >> From my searches here, there is no equivalent to java's >> StringTokenizer in python, which seems like a real shame to me. >> >> However, str.split() works just as well, except for the fact that it >> creates it all at on

Re: Suggestion: str.itersplit()

2007-04-21 Thread Marc 'BlackJack' Rintsch
In <[EMAIL PROTECTED]>, Dustan wrote: > From my searches here, there is no equivalent to java's > StringTokenizer in python, which seems like a real shame to me. > > However, str.split() works just as well, except for the fact that it > creates it all at one go. I suggest an itersplit be introduc