```python using (Py.GIL()) { using (var scope = Py.CreateScope()) { dynamic module = scope.Exec("def add(x,y):return 1/0+x+y"); var x = module.add(1, 2); Console.WriteLine(x); } } ``` Only can get the exception as : ```python Python.Runtime.PythonException:“division by zero” ``` Could the PythonException class contains the error line?