summaryrefslogtreecommitdiff
path: root/Source/Doxygen/pydoc.h
Commit message (Collapse)AuthorAgeFilesLines
* Use https for swig.org linksOlly Betts2022-10-061-1/+1
|
* Improve #include guard macrosOlly Betts2022-07-191-2/+2
| | | | | | | Avoid using reserved identifiers such as `_DOHINT_H` (fixes #1989), fix cases where the name doesn't match the filename, and make the naming more consistent and less likely to collide with include guards in other headers.
* Fix typosDimitris Apostolou2021-11-171-1/+1
|
* Flag optional arguments in doxygen pydoc outputJohn McFarland2019-08-071-0/+5
| | | | | | | If the parameter has a default value, add the string ", optional" to the parameter type description in the translated python comments. Three examples with default values were already present in the test cases, so their expected python output has been updated accordingly.
* Eliminate extra newlines in doxygen python \verbatim blocksJohn McFarland2019-05-251-0/+5
| | | | | | Eliminate extra leading and trailing newlines present in translated doxygen \verbatim comments for python. Updating doxygen python tests accordingly.
* Doxygen source renameWilliam S Fulton2018-05-261-0/+198
Source/DoxygenTranslator/src directory is renamed Source/Doxygen Renamed files in this directory to short names using lowercase as is the convention for the rest of the SWIG source. C++ extension is also .cxx like other SWIG source code. I used doxy as the prefix for most file renames because without this Doxygen/parser.* would be easily confused with CParse/parser.* so Doxygen/doxyparser.* is renamed from DoxygenTranslator/src/DoxygenParser.*