On Oct 12, 7:55 am, Helmut Jarausch
wrote:
> I wrote
> I'm trying to build the recent Python-3.2a (SVN).
> It fails in
> Lib/tokenize.py (line 87)
[...]
> with: TypeError: group() argument after ** must be a mapping, not tuple
I believe I've found the source of this problem: the --with-tsc
conf
On Oct 12, 7:55 am, Helmut Jarausch
wrote:
> I wrote
> I'm trying to build the recent Python-3.2a (SVN).
> It fails in
> Lib/tokenize.py (line 87)
>
> 85 def group(*choices): return '(' + '|'.join(choices) + ')'
> 86 def any(*choices): return group(*choices) + '*'
> 87 def maybe(*choices): ret
I wrote
I'm trying to build the recent Python-3.2a (SVN).
It fails in
Lib/tokenize.py (line 87)
85 def group(*choices): return '(' + '|'.join(choices) + ')'
86 def any(*choices): return group(*choices) + '*'
87 def maybe(*choices): return group(*choices) + '?'
with: TypeError: group() argum