[issue12610] Fatal Python error: non-string found in code slot

2011-07-22 Thread Benjamin Peterson
Changes by Benjamin Peterson : -- resolution: -> duplicate status: open -> closed superseder: -> SystemError: Objects/codeobject.c:64: bad argument to internal function ___ Python tracker ___

[issue12610] Fatal Python error: non-string found in code slot

2011-07-22 Thread Antoine Pitrou
Changes by Antoine Pitrou : -- nosy: +benjamin.peterson ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://

[issue12610] Fatal Python error: non-string found in code slot

2011-07-22 Thread Albert Zeyer
New submission from Albert Zeyer : Code: ``` from ast import * globalsDict = {} body = [ Assign(targets=[Name(id=u'argc', ctx=Store())], value=Name(id=u'None', ctx=Load())), ] exprAst = Interactive(body=[ FunctionDef( name='foo',