History log of /petsc/src/sys/tests/linter/output/testValidFunctionDocStrings.patch (Results 1 – 22 of 22)
Revision Date Author Comments
# 4e8208cb 31-Jan-2026 Satish Balay <balay@mcs.anl.gov>

Merge branch 'barry/2026-01-13/ftn-generation-for-context-functions' into 'main'

Fortran generation of interface definitions for functions that take and return context variables (void *ctx and PetC

Merge branch 'barry/2026-01-13/ftn-generation-for-context-functions' into 'main'

Fortran generation of interface definitions for functions that take and return context variables (void *ctx and PetCtx ctx)

See merge request petsc/petsc!8956

show more ...


# 2a8381b2 13-Jan-2026 Barry Smith <bsmith@mcs.anl.gov>

Add automatic generated fortran support for setting and returning contexts

Major cleanup of the code for setting and returning application (previously called user) contexts
- PetscCtx ctx is now t

Add automatic generated fortran support for setting and returning contexts

Major cleanup of the code for setting and returning application (previously called user) contexts
- PetscCtx ctx is now the standard for passing in contexts
- PetscCtxRt ctx is the standard for passing out contexts, including context destroy routines based on PetscCtxDestroyFn

Both of these are typedef to void*

Also removed most use of user and userctx for context arguments now consistently named ctx

Improved documentation on PetscCtx and PetscCtxRt and on how to use contexts (including getting them) from Fortran

show more ...


# 6a97282b 24-Jul-2025 Satish Balay <balay@mcs.anl.gov>

Merge remote-tracking branch 'origin/release'


# 76662740 24-Jul-2025 Satish Balay <balay@mcs.anl.gov>

Merge branch 'jolivet/fix-docstrings' into 'release'

Fix wrong docstrings

See merge request petsc/petsc!8589


# b89a13d2 24-Jul-2025 Pierre Jolivet <pierre@joliv.et>

Fix wrong docstrings


# 9c5460f9 17-Aug-2023 Satish Balay <balay@mcs.anl.gov>

Merge branch 'jacobf/2023-08-09/linter-detect-static-function-candidates' into 'main'

Linter detect possible static functions

See merge request petsc/petsc!6796


# 08bd1863 09-Aug-2023 Jacob Faibussowitsch <jacob.fai@gmail.com>

Linter now tries to detect functions that could be static, and makes it so.


# 186cd71f 24-Jul-2023 Satish Balay <balay@mcs.anl.gov>

Merge branch 'jacobf/2023-07-19/lint-apply-ts' into 'main'

Manual linter fixes: ts

See merge request petsc/petsc!6736


# 9b81a21c 21-Jul-2023 Jacob Faibussowitsch <jacob.fai@gmail.com>

Fix bug in self-referential docstring checks


# 02477ebb 15-Jul-2023 Satish Balay <balay@mcs.anl.gov>

Merge branch 'jacobf/2023-06-30/enable-doc-lint' into 'main'

Enable docs linting

See merge request petsc/petsc!6667


# e101a50d 12-Jul-2023 Jacob Faibussowitsch <jacob.fai@gmail.com>

Fix flip-flop in seealso alignment check


# 48164c6c 12-Jul-2023 Jacob Faibussowitsch <jacob.fai@gmail.com>

Make header guessing slightly more robust against 'for example'-style false positives


# d6bc3711 11-Jul-2023 Jacob Faibussowitsch <jacob.fai@gmail.com>

Fix indent-check not being made when switching sections


# 59f20a0a 07-Jul-2023 Jacob Faibussowitsch <jacob.fai@gmail.com>

Fix duplicate seealso entries bug, it should catch duplicates even if one or the other is not enclosed by backticks!


# 4c707a87 30-Jun-2023 Jacob Faibussowitsch <jacob.fai@gmail.com>

Allow [](ch_whatever) constructs to not be enclosed by backticks


# 4129947a 05-Jul-2023 Jacob Faibussowitsch <jacob.fai@gmail.com>

Support in-out parameter descriptions


# df402d53 09-Mar-2023 Satish Balay <balay@mcs.anl.gov>

Merge branch 'jacobf/2023-03-09/linter-support-deprecated-since-version' into 'main'

Support Level: deprecated (since MAJOR.MINOR[.PATCH]) in the linter

Closes #1337

See merge request petsc/petsc!

Merge branch 'jacobf/2023-03-09/linter-support-deprecated-since-version' into 'main'

Support Level: deprecated (since MAJOR.MINOR[.PATCH]) in the linter

Closes #1337

See merge request petsc/petsc!6165

show more ...


# 85cddec9 09-Mar-2023 Jacob Faibussowitsch <jacob.fai@gmail.com>

Support Level: deprecated (since MAJOR.MINOR[.PATCH]) in the linter


# 78478d04 10-Feb-2023 Satish Balay <balay@mcs.anl.gov>

Merge branch 'jacobf/2023-02-08/misc-linter-bugfixes' into 'main'

Miscellaneous Linter Bugfixes

See merge request petsc/petsc!6035


# 87360cf9 07-Feb-2023 Jacob Faibussowitsch <jacob.fai@gmail.com>

Update test files


# 4ab547ce 12-Jan-2023 Satish Balay <balay@mcs.anl.gov>

Merge branch 'jacobf/2021-10-11/clang-linter-parse-docstrings' into 'main'

Feature: Lint Sowing Docstrings

See merge request petsc/petsc!4443


# 447bcd8f 11-Oct-2021 Jacob Faibussowitsch <jacob.fai@gmail.com>

Reshuffle linter code into a proper python package

Upgrade clang linter:
- Improved stability of clang library calls
- clang linter can now check docstrings for correctness
- Major improvements to d

Reshuffle linter code into a proper python package

Upgrade clang linter:
- Improved stability of clang library calls
- clang linter can now check docstrings for correctness
- Major improvements to diff merging
- Handle overlapping deletion by discarding one patch or the other, patches now support
callbacks to remove themselves from the linter if discarded
- Better duplicate and missing function argument detection
- Improve printing and diagnostics for functions
- Add checks for duplicate headers, non-lowercase levels, spacing between docstring and
symbol, indentation, title-cased headings, no content on comment begin and end lines
- Add better checking for sowing identifier matching
- Tests now can also output and diff:
- stdout (useful for when tests should catch errors but can't fix them)
- Fixed errors
- Now able to apply multiline patches, and far more robust diff support
- Add a lot more auto fixits
- Add new SourceLocation and SourceRange wrappers
- Major performance improvements in __lt__ and __ge__ from caching for SourceLocation and SourceRange
- check that function has a custom fortran interface if it has a function pointer and char
string
- Check that parameter lists start with the right character and
- Source fixes now applied in chronological order, and test that patches can be applied as well

- Improved parameter list alignment checker
- Add support for additional notes types and unknown/unhandled sections
- Allow disabling of diagnostics via '-fdiagnostic-name [yes/no/maybe-so]'
- enum docstring checking and better parameter-list alignment enforcement
- Check spacing in inline lists
- Check for duplicates and self-references in seealso lists
- Detect headers that are missing a colon, and detect headers that probably shouldn't be headers
- Dheck that synopsis descriptions aren't overly long-winded
- Handle inline code-block within parameter lists because snes.c is a nightmare
- Check explicit synopses contain the right parameters
- Added check to explicit macro docstrings on whether the symbol they claim to describe
exists in the header
- Improve diagnostic for matching argument idx
- Show trace back to parent arguments if applicable
- 10x performance improvements for SourceRange and SourceLocation
- Be able to handle arbitrary number of nested function-pointer parameters as documentation
- Rework initial loader, use lazy loading to improve startup time

Update dir-locals.el to reflect new 2 column indentation, and enforce no stars in comments

show more ...