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
|
||||
|
||||
# avoids lengthy error messages
|
||||
def inspect
|
||||
"DRCEngine(...)"
|
||||
end
|
||||
|
||||
# for testing
|
||||
def force_gc(f)
|
||||
@force_gc = f
|
||||
|
|
|
|||
|
|
@ -26,6 +26,11 @@ module LVS
|
|||
super
|
||||
end
|
||||
|
||||
# avoids lengthy error messages
|
||||
def inspect
|
||||
"LVSEngine(...)"
|
||||
end
|
||||
|
||||
# %LVS%
|
||||
# @name netter
|
||||
# @brief Creates a new netter object
|
||||
|
|
|
|||
Loading…
Reference in New Issue