mirror of https://github.com/KLayout/klayout.git
passing python unit tests
This commit is contained in:
parent
87a49007ff
commit
c3ab951c8a
|
|
@ -1,3 +1,6 @@
|
||||||
|
import klayout.dbcore
|
||||||
from klayout.dbcore import *
|
from klayout.dbcore import *
|
||||||
|
|
||||||
from klayout.db.pcell_declaration_helper import PCellDeclarationHelper
|
from klayout.db.pcell_declaration_helper import PCellDeclarationHelper
|
||||||
|
|
||||||
|
__all__ = klayout.dbcore.__all__ + ['PCellDeclarationHelper']
|
||||||
|
|
|
||||||
|
|
@ -276,5 +276,3 @@ for k in dir(PCellParameterDeclaration):
|
||||||
|
|
||||||
# Inject the PCellDeclarationHelper into pya module for consistency:
|
# Inject the PCellDeclarationHelper into pya module for consistency:
|
||||||
PCellDeclarationHelper = _PCellDeclarationHelper
|
PCellDeclarationHelper = _PCellDeclarationHelper
|
||||||
|
|
||||||
__all__ = ['PCellDeclarationHelper']
|
|
||||||
|
|
|
||||||
|
|
@ -1 +1,4 @@
|
||||||
|
import klayout.rdbcore
|
||||||
from klayout.rdbcore import *
|
from klayout.rdbcore import *
|
||||||
|
|
||||||
|
__all__ = klayout.rdbcore.__all__
|
||||||
|
|
|
||||||
|
|
@ -1 +1,4 @@
|
||||||
|
import klayout.tlcore
|
||||||
from klayout.tlcore import *
|
from klayout.tlcore import *
|
||||||
|
|
||||||
|
__all__ = klayout.tlcore.__all__
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue