Sha256: 416973a2c0898dedca4a5bdfb5b4e2e03109994615534cb99a02262b00b48165
Contents?: true
Size: 1.09 KB
Versions: 1
Compression:
Stored size: 1.09 KB
Contents
module PyCall class PyError < StandardError def self.fetch ptrs = FFI::MemoryPointer.new(:pointer, 3) ptype = ptrs + 0 * ptrs.type_size pvalue = ptrs + 1 * ptrs.type_size ptraceback = ptrs + 2 * ptrs.type_size LibPython.PyErr_Fetch(ptype, pvalue, ptraceback) LibPython.PyErr_NormalizeException(ptype, pvalue, ptraceback) type = PyObject.new(LibPython::PyObjectStruct.new(ptype.read(:pointer))) value = PyObject.new(LibPython::PyObjectStruct.new(pvalue.read(:pointer))) traceback = PyObject.new(LibPython::PyObjectStruct.new(ptraceback.read(:pointer))) new(type, value, traceback) end def initialize(type, value, traceback) @type = type @value = value @traceback = traceback super("Error occurred in Python") end attr_reader :type, :value, :traceback def message "#{PyObject.new(type.to_ptr)}: #{value}".tap do |msg| unless traceback.null? if (o = PyCall.format_traceback(traceback)) msg.concat("\n", *o) end end end end end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
pycall-0.1.0.alpha.20170308 | lib/pycall/pyerror.rb |