mirror of https://github.com/KLayout/klayout.git
Avoid loooong error messages in DRC and LVS by bypassing the engine's inspect implementation which emits a lot of internal members
This commit is contained in:
parent
cb4501787f
commit
500fa5b62d
|
|
@ -75,6 +75,11 @@ module DRC
|
||||||
|
|
||||||
end
|
end
|
||||||
|
|
||||||
|
# avoids lengthy error messages
|
||||||
|
def inspect
|
||||||
|
"DRCEngine(...)"
|
||||||
|
end
|
||||||
|
|
||||||
# for testing
|
# for testing
|
||||||
def force_gc(f)
|
def force_gc(f)
|
||||||
@force_gc = f
|
@force_gc = f
|
||||||
|
|
|
||||||
|
|
@ -26,6 +26,11 @@ module LVS
|
||||||
super
|
super
|
||||||
end
|
end
|
||||||
|
|
||||||
|
# avoids lengthy error messages
|
||||||
|
def inspect
|
||||||
|
"LVSEngine(...)"
|
||||||
|
end
|
||||||
|
|
||||||
# %LVS%
|
# %LVS%
|
||||||
# @name netter
|
# @name netter
|
||||||
# @brief Creates a new netter object
|
# @brief Creates a new netter object
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue