Python stubs regenerated, DRC/LVS doc updated

This commit is contained in:
Matthias Koefferlein 2026-05-25 22:01:03 +02:00
parent 4db6afb5f3
commit 6e0d968058
3 changed files with 1151 additions and 96 deletions

View File

@ -574,7 +574,9 @@ in <a href="#connect">connect</a>, <a href="#soft_connect">soft_connect</a>, <a
</p><p> </p><p>
If layers are not named, they will be given a name made from the If layers are not named, they will be given a name made from the
<a href="#name_prefix">name_prefix</a> and an incremental number when the layer is used for the <a href="#name_prefix">name_prefix</a> and an incremental number when the layer is used for the
first time. first time. As the default name prefix is "l", you may can name conflicts
with auto-named layers, if you register explicit layer names like "l5".
Consider changing the name prefix in that case to some prefix you are not using.
</p><p> </p><p>
<a href="#name">name</a> can only be used once on a layer and the layer names must be <a href="#name">name</a> can only be used once on a layer and the layer names must be
unique (not taken by another layer). unique (not taken by another layer).

File diff suppressed because it is too large Load Diff

View File

@ -1270,17 +1270,17 @@ class RdbReference:
@overload @overload
def database(self) -> ReportDatabase: def database(self) -> ReportDatabase:
r""" r"""
@brief Gets the database object that category is associated with (non-const version) @brief Gets the database object that category is associated with
This method has been introduced in version 0.29. This method has been introduced in version 0.23.
""" """
... ...
@overload @overload
def database(self) -> ReportDatabase: def database(self) -> ReportDatabase:
r""" r"""
@brief Gets the database object that category is associated with @brief Gets the database object that category is associated with (non-const version)
This method has been introduced in version 0.23. This method has been introduced in version 0.29.
""" """
... ...
def destroy(self) -> None: def destroy(self) -> None: