summaryrefslogtreecommitdiff
path: root/sphinx/ext
Commit message (Expand)AuthorAgeFilesLines
* Fix mypy violations (with mypy-0.790)Takeshi KOMIYA2020-10-241-1/+1
* Fix #8099: autodoc: NameError is raised when script uses TYPE_CHECKINGTakeshi KOMIYA2020-08-131-0/+6
* Merge pull request #8095 from keewis/toggle-preprocessorTakeshi KOMIYA2020-08-132-6/+12
|\
| * default to False and update the testsKeewis2020-08-121-3/+3
| * fix a typoKeewis2020-08-101-1/+1
| * only preprocess if the preprocessor is enabledKeewis2020-08-101-5/+6
| * add a setting to disable the type preprocessorKeewis2020-08-101-1/+6
* | Fix #8091: autodoc: AttributeError is raised on documenting an attributeTakeshi KOMIYA2020-08-101-0/+6
|/
* Merge branch '8084_KeyError_for_broken_class' into 3.2.xTakeshi KOMIYA2020-08-101-0/+6
|\
| * Fix #8084: autodoc: KeyError is raised on documenting a broken attributeTakeshi KOMIYA2020-08-091-0/+6
* | Fix #8074: napoleon: Crashes during processing C-ext moduleTakeshi KOMIYA2020-08-091-1/+4
|/
* Merge pull request #8038 from keewis/custom-get_documenterTakeshi KOMIYA2020-08-081-2/+11
|\
| * update the type hintKeewis2020-08-071-1/+1
| * return a documenter instance instead of just the classKeewis2020-08-071-4/+4
| * add a create_documenter method wrapping get_documenterKeewis2020-08-071-1/+10
| * revert the dispatcher changesKeewis2020-08-071-20/+1
| * Merge branch '3.x' into custom-get_documenterKeewis2020-08-021-9/+37
| |\
| * | fix the calls of the custom documenter functionsKeewis2020-08-021-2/+2
| * | actually use it as a methodKeewis2020-08-021-1/+1
| * | Merge branch '3.x' into custom-get_documenterKeewis2020-08-023-6/+53
| |\ \
| * | | convert to a methodKeewis2020-08-021-20/+19
| * | | implement the dispatchingKeewis2020-08-021-1/+21
* | | | Fix #8041: autodoc: An ivar on super class is not shown unexpectedlyTakeshi KOMIYA2020-08-082-8/+39
* | | | Fix #7780: napoleon: multiple params declaration was wrongly recognizedTakeshi KOMIYA2020-08-071-4/+9
* | | | Merge pull request #8049 from keewis/type-preprocessing-without-use_paramTakeshi KOMIYA2020-08-072-15/+7
|\ \ \ \
| * | | | document that we don't require use_param = True anymoreKeewis2020-08-041-1/+1
| * | | | preprocess even with napoleon_use_param = FalseKeewis2020-08-041-14/+6
* | | | | Merge pull request #7799 from keewis/escape-combined-args-kwargsTakeshi KOMIYA2020-08-061-3/+14
|\ \ \ \ \
| * | | | | remove the syntax checks from the escape method and update the testsKeewis2020-08-051-39/+3
| * | | | | Merge branch '3.x' into escape-combined-args-kwargsKeewis2020-08-044-33/+151
| |\ \ \ \ \
| * \ \ \ \ \ Merge branch '3.x' into escape-combined-args-kwargsKeewis2020-07-2516-131/+427
| |\ \ \ \ \ \ | | | |_|/ / / | | |/| | | |
| * | | | | | add tests to make sure the warning is raisedKeewis2020-07-131-1/+1
| * | | | | | fix the conditions for warningKeewis2020-07-131-2/+2
| * | | | | | use inspect.getfile insteadKeewis2020-07-121-2/+2
| * | | | | | make sure to return None if both path and name are NoneKeewis2020-07-121-1/+4
| * | | | | | add a method to get the current docstring's locationKeewis2020-07-121-2/+7
| * | | | | | add location information and make sure args and kwargs cannot be swappedKeewis2020-07-121-5/+19
| * | | | | | check that we can only combine *args with **kwargs and vice versaKeewis2020-06-081-3/+28
| * | | | | | use a alias of the implementation of the base class and add type hintsKeewis2020-06-081-6/+5
| * | | | | | escape combined args and kwargs for numpy docstringsKeewis2020-06-081-0/+10
* | | | | | | Merge pull request #8048 from cjmayo/graphvizTakeshi KOMIYA2020-08-061-1/+1
|\ \ \ \ \ \ \
| * | | | | | | Don't copy graphviz.css when building man pagesChris Mayo2020-08-051-1/+1
| | |_|_|/ / / | |/| | | | |
* | | | | | | Merge pull request #8025 from tk0miya/6698_no-trim-flagsTakeshi KOMIYA2020-08-061-1/+11
|\ \ \ \ \ \ \ | |_|_|_|/ / / |/| | | | | |
| * | | | | | Close #6698: doctest: Add :no-trim-doctest-flags: optionsTakeshi KOMIYA2020-08-051-1/+11
| |/ / / / /
* | | | | | Merge pull request #8021 from keewis/fix-type-preprocessorTakeshi KOMIYA2020-08-051-7/+32
|\ \ \ \ \ \ | |/ / / / / |/| | | | |
| * | | | | only allow "default <obj>" and "default: <obj>" for nowKeewis2020-08-041-4/+4
| * | | | | use a regex to decide whether to postprocess a token starting with defaultKeewis2020-08-011-1/+4
| * | | | | use a upper-case name for the list of singleton namesKeewis2020-08-011-2/+2
| * | | | | use complex to check for numerical valuesKeewis2020-08-011-1/+10
| * | | | | detect `...` as a linkKeewis2020-08-011-1/+1