json.loads()中的MissingMemberException

时间:2014-09-03 14:59:59

标签: ironpython

我正在使用IronPython 2.6.10920.0 on .NET 4.0.30319.1作为Linux下HFSS现场仿真软件的一部分。我对json模块有一个奇怪的问题:

>>>import json
>>>print json.dumps('foo')
'"foo"'
>>>print json.loads('"foo"')
MissingMemberException: 'NoneType' object has no attribute 'scanner'

可能是什么原因?我怎样才能让它发挥作用?

UPD:当我将上面的代码包装到try: .. except .., e: print e时,我得到了这个输出:

System.MissingMemberException: 'NoneType' object has no attribute 'scanner'
  at (wrapper dynamic-method) object:CallSite.Target  (System.Runtime.CompilerServices.Closure,System.Runtime.CompilerServices.CallSite,object,IronPython.Runtime.CodeContext)
  at Microsoft.Scripting.Interpreter.DynamicInstruction`3[System.Object,IronPython.Runtime.CodeContext,System.Object].Run (Microsoft.Scripting.Interpreter.InterpretedFrame frame) [0x00000] in <filename unknown>:0 
  at Microsoft.Scripting.Interpreter.Interpreter.RunInstructions (Microsoft.Scripting.Interpreter.InterpretedFrame frame) [0x00000] in <filename unknown>:0 
  at Microsoft.Scripting.Interpreter.Interpreter.Run (Microsoft.Scripting.Interpreter.InterpretedFrame frame) [0x00000] in <filename unknown>:0 

他想用这个告诉我什么?

1 个答案:

答案 0 :(得分:1)

我不知道json模块是否在2.6中工作。如果可以,请尝试upgrading to 2.7,json可以在哪里工作。