mirror of
https://github.com/KLayout/klayout.git
synced 2026-08-28 17:06:31 +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
|
||||
|
||||
# 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
|
||||
|
||||
Reference in New Issue
Block a user