mirror of https://github.com/KLayout/klayout.git
Based python stubs on PyPI module now instead of pymod (no Qt dependencies)
This commit is contained in:
parent
564284e62f
commit
3a5ac0d901
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
|
|
@ -701,6 +701,12 @@ class RdbItemValue:
|
||||||
|
|
||||||
This method has been introduced in version 0.22.
|
This method has been introduced in version 0.22.
|
||||||
"""
|
"""
|
||||||
|
def __repr__(self) -> str:
|
||||||
|
r"""
|
||||||
|
@brief Converts a value to a string
|
||||||
|
The string can be used by the string constructor to create another object from it.
|
||||||
|
@return The string
|
||||||
|
"""
|
||||||
def __str__(self) -> str:
|
def __str__(self) -> str:
|
||||||
r"""
|
r"""
|
||||||
@brief Converts a value to a string
|
@brief Converts a value to a string
|
||||||
|
|
|
||||||
|
|
@ -320,6 +320,10 @@ class ArgType:
|
||||||
r"""
|
r"""
|
||||||
@brief Inequality of two types
|
@brief Inequality of two types
|
||||||
"""
|
"""
|
||||||
|
def __repr__(self) -> str:
|
||||||
|
r"""
|
||||||
|
@brief Convert to a string
|
||||||
|
"""
|
||||||
def __str__(self) -> str:
|
def __str__(self) -> str:
|
||||||
r"""
|
r"""
|
||||||
@brief Convert to a string
|
@brief Convert to a string
|
||||||
|
|
@ -2268,6 +2272,10 @@ class Timer:
|
||||||
r"""
|
r"""
|
||||||
@brief Creates a new object of this class
|
@brief Creates a new object of this class
|
||||||
"""
|
"""
|
||||||
|
def __repr__(self) -> str:
|
||||||
|
r"""
|
||||||
|
@brief Produces a string with the currently elapsed times
|
||||||
|
"""
|
||||||
def __str__(self) -> str:
|
def __str__(self) -> str:
|
||||||
r"""
|
r"""
|
||||||
@brief Produces a string with the currently elapsed times
|
@brief Produces a string with the currently elapsed times
|
||||||
|
|
@ -2412,6 +2420,10 @@ class Value:
|
||||||
@brief Constructs a non-nil object with the given value.
|
@brief Constructs a non-nil object with the given value.
|
||||||
This constructor has been introduced in version 0.22.
|
This constructor has been introduced in version 0.22.
|
||||||
"""
|
"""
|
||||||
|
def __repr__(self) -> str:
|
||||||
|
r"""
|
||||||
|
@brief Convert this object to a string
|
||||||
|
"""
|
||||||
def __str__(self) -> str:
|
def __str__(self) -> str:
|
||||||
r"""
|
r"""
|
||||||
@brief Convert this object to a string
|
@brief Convert this object to a string
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue