[issue2514] new AST init breaks on Store and other fieldless Nodes

2008-03-30 Thread Georg Brandl
Georg Brandl <[EMAIL PROTECTED]> added the comment: Fixed in r62051. -- nosy: +georg.brandl resolution: -> fixed status: open -> closed __ Tracker <[EMAIL PROTECTED]> __ _

[issue2514] new AST init breaks on Store and other fieldless Nodes

2008-03-30 Thread Armin Ronacher
New submission from Armin Ronacher <[EMAIL PROTECTED]>: #2505 adds a new init to the ast nodes that allows initialization of the fields directory from the constructor. Unfortunately there are nodes where fields is None (_ast.Store and others) and the constructor didn't take care of this. The pa