Skip to main content
  • Home
  • Development
  • Documentation
  • Donate
  • Operational login
  • Browse the archive

swh logo
SoftwareHeritage
Software
Heritage
Archive
Features
  • Search

  • Downloads

  • Save code now

  • Add forge now

  • Help

Raw File Download

To reference or cite the objects present in the Software Heritage archive, permalinks based on SoftWare Hash IDentifiers (SWHIDs) must be used.
Select below a type of object currently browsed in order to display its associated SWHID and permalink.

  • content
content badge
swh:1:cnt:4effad4bbccc470ef848cc3c89e1a5b5341a0381

This interface enables to generate software citations, provided that the root directory of browsed objects contains a citation.cff or codemeta.json file.
Select below a type of object currently browsed in order to generate citations for them.

  • content
Generate software citation in BibTex format (requires biblatex-software package)
Generating citation ...
"""Tests of the docstrings module."""

from docstring_parser import DocstringReturns, DocstringStyle

from pyuvdata.docstrings import combine_docstrings


def test_docstrings_combine():
    def a(x, y):
        """Do a.

        Some long description.

        Parameters
        ----------
        x : int
            The x parameter.
        y : int
            The y parameter.

        Returns
        -------
        int
            The sum of x and y.
        """
        return x + y

    @combine_docstrings(a, style=DocstringStyle.NUMPYDOC)
    def b(x, y, z):
        return a(x, y) + z

    assert "Do a." in b.__doc__
    assert "Some long description." in b.__doc__
    assert "The x parameter." in b.__doc__
    assert "The y parameter." in b.__doc__
    assert "The z parameter." not in b.__doc__
    assert "The sum of x and y." in b.__doc__

    @combine_docstrings(a, style=DocstringStyle.NUMPYDOC)
    def c(x, y, z):
        """Do c.

        Parameters
        ----------
        z : int
            The z parameter.
        """
        return a(x, y) + z + 1

    assert "Do c." in c.__doc__
    assert "Do a." not in c.__doc__
    assert "Some long description." in c.__doc__
    assert "The x parameter." in c.__doc__
    assert "The y parameter." in c.__doc__
    assert "The z parameter." in c.__doc__

    @combine_docstrings(
        a, c, exclude=(DocstringReturns,), style=DocstringStyle.NUMPYDOC
    )
    def d(x, y, z):
        """Do d."""
        return 1

    assert "The sum of x and y." not in d.__doc__

back to top

Software Heritage — Copyright (C) 2015–2026, The Software Heritage developers. License: GNU AGPLv3+.
The source code of Software Heritage itself is available on our development forge.
The source code files archived by Software Heritage are available under their own copyright and licenses.
Terms of use: Archive access, API— Content policy— Contact— JavaScript license information— Web API