VACUMM / sphinx-fortran

Fortran domain and autodoc extensions to Sphinx
Other
45 stars 29 forks source link

Fixes #35: Fatal error when documenting multiple types in the same file. #36

Closed dvuckovic closed 3 years ago

dvuckovic commented 3 years ago

The issue stems from trying to sort dictionaries using the sorted() function, which is apparently unsupported. This occurs in format_quickaccess method, so it's probably better to simply remove the call to sorted(), and leave this job to get_blocklist method, where sort parameter defaults to True anyway.

Extended test and added the test case to module file. Synced the generic module reference so the tests pass locally.

Any questions, please let me know. Thanks!

stefraynaud commented 3 years ago

Thanks alot!