Same defect as the parent in the sibling parser: com.ibm.wala.cast.python.jython's PythonParser builds its parameter-default initialization as DECL_STMT locals inside the function-definition visit and its visitClassDef discards member visit results the same way the jython3 parser did, so method defaults never initialize there either. The structure differs from the jython3 parser (locals rather than addGlobal globals), so the repair does not transplant mechanically; it needs its own pass over that parser's defaults pipeline.
Same defect as the parent in the sibling parser:
com.ibm.wala.cast.python.jython'sPythonParserbuilds its parameter-default initialization asDECL_STMTlocals inside the function-definition visit and itsvisitClassDefdiscards member visit results the same way the jython3 parser did, so method defaults never initialize there either. The structure differs from the jython3 parser (locals rather thanaddGlobalglobals), so the repair does not transplant mechanically; it needs its own pass over that parser's defaults pipeline.