mirror of
https://github.com/KLayout/klayout.git
synced 2026-08-22 14:07:15 +02:00
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:
@@ -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
|
||||||
|
|||||||
Reference in New Issue
Block a user