mirror of
https://github.com/qgis/QGIS.git
synced 2025-10-05 00:09:32 -04:00
Fix docstrings for QgsDateRange/QgsDateTimeRange
We can't rely on sip to generate these -- it outputs malformed docstrings where the constructor docs are incorrectly placed before the class docstrings
This commit is contained in:
parent
1046ecccbb
commit
0fc05051dd
@ -70,6 +70,58 @@ def _date_range_repr(self):
|
||||
QgsDateTimeRange.__repr__ = _datetime_range_repr
|
||||
QgsDateRange.__repr__ = _date_range_repr
|
||||
|
||||
|
||||
QgsDateRange.__doc__ = """Stores a date range.
|
||||
|
||||
Invalid dates as the beginning or end are permitted. In this case, the bound is
|
||||
considered to be infinite. E.g.
|
||||
|
||||
.. code-block:: python
|
||||
|
||||
# a range containing all dates before 2017-1-1
|
||||
QgsDateRange(QDate(),QDate(2017,1,1))
|
||||
|
||||
# a range containing all dates after 2017-1-1
|
||||
QgsDateRange(QDate(2017,1,1),QDate())
|
||||
|
||||
|
||||
.. seealso:: :py:class:`QgsDateTimeRange`
|
||||
|
||||
QgsDateRange(begin: Union[QDate, datetime.date], end: Union[QDate, datetime.date], includeBeginning: bool = True, includeEnd: bool = True)
|
||||
Constructor for QgsDateRange. The ``begin`` and ``end`` are
|
||||
specified, and optionally whether or not these bounds are included in
|
||||
the range.
|
||||
|
||||
QgsDateRange(QgsDateRange)
|
||||
Copy constructor.
|
||||
"""
|
||||
|
||||
QgsDateTimeRange.__doc__ = """Stores a range of date times.
|
||||
|
||||
Invalid date times as the beginning or end are permitted. In this case, the bound is
|
||||
considered to be infinite. E.g.
|
||||
|
||||
.. code-block:: python
|
||||
|
||||
# a range containing all dates before 2017-1-1
|
||||
QgsDateTimeRange(QDateTime(),QDateTime(2017,1,1))
|
||||
|
||||
# a range containing all dates after 2017-1-1
|
||||
QgsDateTimeRange(QDateTime(2017,1,1),QDateTime())
|
||||
|
||||
|
||||
.. seealso:: :py:class:`QgsDateRange`
|
||||
|
||||
QgsDateTimeRange(begin: Union[QDateTime, datetime.datetime], end: Union[QDateTime, datetime.datetime], includeBeginning: bool = True, includeEnd: bool = True)
|
||||
Constructor for QgsDateTimeRange. The ``begin`` and ``end`` are
|
||||
specified, and optionally whether or not these bounds are included in
|
||||
the range.
|
||||
|
||||
QgsDateTimeRange(QgsDateTimeRange)
|
||||
Copy constructor.
|
||||
"""
|
||||
|
||||
|
||||
QgsProperty.__bool__ = lambda self: self.propertyType() != Qgis.PropertyType.Invalid
|
||||
QgsOptionalExpression.__bool__ = lambda self: self.enabled()
|
||||
QgsUnsetAttributeValue.__hash__ = lambda self: 2178310
|
||||
|
@ -425,17 +425,6 @@ range is empty and ``other`` is not, the range is changed and set to
|
||||
|
||||
|
||||
typedef QgsTemporalRange< QDate > QgsDateRange;
|
||||
@DOCSTRINGSTEMPLATE@%Docstring
|
||||
@DOCSTRINGSTEMPLATE@:py:class:`QgsRange` which stores a range of dates.
|
||||
@DOCSTRINGSTEMPLATE@ @DOCSTRINGSTEMPLATE@Invalid QDates as the beginning
|
||||
or end are permitted. In this case, @DOCSTRINGSTEMPLATE@the bound is
|
||||
considered to be infinite. E.g. QgsDateRange(QDate(),QDate(2017,1,1))
|
||||
@DOCSTRINGSTEMPLATE@is treated as a range containing all dates before
|
||||
2017-1-1. @DOCSTRINGSTEMPLATE@QgsDateRange(QDate(2017,1,1),QDate()) is
|
||||
treated as a range containing all dates after 2017-1-1.
|
||||
@DOCSTRINGSTEMPLATE@ @DOCSTRINGSTEMPLATE@.. seealso::
|
||||
:py:class:`QgsDateTimeRange`
|
||||
@DOCSTRINGSTEMPLATE@%End
|
||||
|
||||
|
||||
typedef QgsTemporalRange< QDateTime > QgsDateTimeRange;
|
||||
|
@ -71,6 +71,60 @@ def _date_range_repr(self):
|
||||
QgsDateTimeRange.__repr__ = _datetime_range_repr
|
||||
QgsDateRange.__repr__ = _date_range_repr
|
||||
|
||||
# add docstrings for QgsDateRange/QgsDateTimeRange. These can't be done via sip as sip gets tripped up on the
|
||||
# constructor docstrings for the templated class and creates malformed docstrings
|
||||
|
||||
QgsDateRange.__doc__ = """Stores a date range.
|
||||
|
||||
Invalid dates as the beginning or end are permitted. In this case, the bound is
|
||||
considered to be infinite. E.g.
|
||||
|
||||
.. code-block:: python
|
||||
|
||||
# a range containing all dates before 2017-1-1
|
||||
QgsDateRange(QDate(),QDate(2017,1,1))
|
||||
|
||||
# a range containing all dates after 2017-1-1
|
||||
QgsDateRange(QDate(2017,1,1),QDate())
|
||||
|
||||
|
||||
.. seealso:: :py:class:`QgsDateTimeRange`
|
||||
|
||||
QgsDateRange(begin: Union[QDate, datetime.date], end: Union[QDate, datetime.date], includeBeginning: bool = True, includeEnd: bool = True)
|
||||
Constructor for QgsDateRange. The ``begin`` and ``end`` are
|
||||
specified, and optionally whether or not these bounds are included in
|
||||
the range.
|
||||
|
||||
QgsDateRange(QgsDateRange)
|
||||
Copy constructor.
|
||||
"""
|
||||
|
||||
QgsDateTimeRange.__doc__ = """Stores a range of date times.
|
||||
|
||||
Invalid date times as the beginning or end are permitted. In this case, the bound is
|
||||
considered to be infinite. E.g.
|
||||
|
||||
.. code-block:: python
|
||||
|
||||
# a range containing all dates before 2017-1-1
|
||||
QgsDateTimeRange(QDateTime(),QDateTime(2017,1,1))
|
||||
|
||||
# a range containing all dates after 2017-1-1
|
||||
QgsDateTimeRange(QDateTime(2017,1,1),QDateTime())
|
||||
|
||||
|
||||
.. seealso:: :py:class:`QgsDateRange`
|
||||
|
||||
QgsDateTimeRange(begin: Union[QDateTime, datetime.datetime], end: Union[QDateTime, datetime.datetime], includeBeginning: bool = True, includeEnd: bool = True)
|
||||
Constructor for QgsDateTimeRange. The ``begin`` and ``end`` are
|
||||
specified, and optionally whether or not these bounds are included in
|
||||
the range.
|
||||
|
||||
QgsDateTimeRange(QgsDateTimeRange)
|
||||
Copy constructor.
|
||||
"""
|
||||
|
||||
|
||||
QgsProperty.__bool__ = lambda self: self.propertyType() != Qgis.PropertyType.Invalid
|
||||
QgsOptionalExpression.__bool__ = lambda self: self.enabled()
|
||||
QgsUnsetAttributeValue.__hash__ = lambda self: 2178310
|
||||
|
@ -425,17 +425,6 @@ range is empty and ``other`` is not, the range is changed and set to
|
||||
|
||||
|
||||
typedef QgsTemporalRange< QDate > QgsDateRange;
|
||||
@DOCSTRINGSTEMPLATE@%Docstring
|
||||
@DOCSTRINGSTEMPLATE@:py:class:`QgsRange` which stores a range of dates.
|
||||
@DOCSTRINGSTEMPLATE@ @DOCSTRINGSTEMPLATE@Invalid QDates as the beginning
|
||||
or end are permitted. In this case, @DOCSTRINGSTEMPLATE@the bound is
|
||||
considered to be infinite. E.g. QgsDateRange(QDate(),QDate(2017,1,1))
|
||||
@DOCSTRINGSTEMPLATE@is treated as a range containing all dates before
|
||||
2017-1-1. @DOCSTRINGSTEMPLATE@QgsDateRange(QDate(2017,1,1),QDate()) is
|
||||
treated as a range containing all dates after 2017-1-1.
|
||||
@DOCSTRINGSTEMPLATE@ @DOCSTRINGSTEMPLATE@.. seealso::
|
||||
:py:class:`QgsDateTimeRange`
|
||||
@DOCSTRINGSTEMPLATE@%End
|
||||
|
||||
|
||||
typedef QgsTemporalRange< QDateTime > QgsDateTimeRange;
|
||||
|
@ -744,7 +744,8 @@ class QgsTemporalRange
|
||||
* QgsDateRange(QDate(2017,1,1),QDate()) is treated as a range containing all dates after 2017-1-1.
|
||||
* \see QgsDateTimeRange
|
||||
*/
|
||||
typedef QgsTemporalRange< QDate > QgsDateRange SIP_DOC_TEMPLATE;
|
||||
typedef QgsTemporalRange< QDate > QgsDateRange;
|
||||
// NOTE -- Python docstrings for QgsDateRange are patched in python/core/__init__.py
|
||||
|
||||
Q_DECLARE_METATYPE( QgsDateRange )
|
||||
|
||||
@ -758,6 +759,7 @@ Q_DECLARE_METATYPE( QgsDateRange )
|
||||
* \see QgsDateRange
|
||||
*/
|
||||
typedef QgsTemporalRange< QDateTime > QgsDateTimeRange SIP_DOC_TEMPLATE;
|
||||
// NOTE -- Python docstrings for QgsDateTimeRange are patched in python/core/__init__.py
|
||||
|
||||
Q_DECLARE_METATYPE( QgsDateTimeRange )
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user