Commit message (Collapse) | Author | Age | Files | Lines | ||
---|---|---|---|---|---|---|
... | ||||||
* | Fix flake8 violations | Takeshi KOMIYA | 2017-01-26 | 1 | -0/+2 | |
| | ||||||
* | pytest optimizatoin: | shimizukawa | 2017-01-08 | 1 | -19/+24 | |
| | | | | | | | | - remote using deprecated decorators - remove gen_with_app - remove yield testing - remove pytest warnings - refactoring | |||||
* | pytest migration | shimizukawa | 2017-01-04 | 1 | -10/+15 | |
| | ||||||
* | Merge branch 'stable' into 1.5-release | Takeshi KOMIYA | 2016-12-03 | 1 | -2/+12 | |
|\ | ||||||
| * | Merge branch 'fix-attr-documenter' into stable | shimizukawa | 2016-11-24 | 1 | -2/+12 | |
| |\ | ||||||
| | * | Fix documentation of descriptor classes that have a custom metaclass | Erik M. Bray | 2015-04-09 | 1 | -2/+13 | |
| | | | | | | | | | | | | | | | | | | | | | (i.e. a subclass of type). This avoids using string comparisons to do type checks, except in the case of the fix for #1155, since in Python 3 there really seems to be no way to export the instancemethod type, short of using ctypes. | |||||
| * | | Fix #3135: ``sphinx.ext.autodoc`` crashes with plain Callable | Takeshi KOMIYA | 2016-11-13 | 1 | -3/+4 | |
| | | | ||||||
* | | | Fix annotations formatting for plain typing.Callable | Alex Grönholm | 2016-11-02 | 1 | -4/+5 | |
| | | | | | | | | | | | | The typing.Callable class may be used without generic arguments, in which case it is equivalent to collections.abc.Callable. | |||||
* | | | Merge pull request #3071 from mleinart/autodoc/pass_through_decorators | Takeshi KOMIYA | 2016-11-02 | 1 | -0/+11 | |
|\ \ \ | | | | | | | | | Autodoc: Allow mocked module decorators to pass-through functions unchanged | |||||
| * | | | Add tests for mocked modules | Michael Leinartas | 2016-10-21 | 1 | -0/+11 | |
| | | | | ||||||
* | | | | Closes #3060: autodoc supports documentation for attributes of Enum class. ↵ | shimizukawa | 2016-10-28 | 1 | -0/+33 | |
|/ / / | | | | | | | | | | Now autodoc render just the value of Enum attributes instead of Enum attribute representation. | |||||
* | | | refs #2432 update for latest master | shimizukawa | 2016-10-19 | 1 | -2/+2 | |
| | | | ||||||
* | | | Merge pull request #2432 from agronholm/kwonlyargs | Takayuki SHIMIZUKAWA | 2016-10-19 | 1 | -3/+6 | |
|\ \ \ | |/ / |/| | | #2432 Fix unwanted * between varargs and keyword only args | |||||
| * | | Fix unwanted * between varargs and keyword only args | Alex Grönholm | 2016-04-09 | 1 | -4/+7 | |
| | | | | | | | | | | | | The * parameter must only be present when a holder for positional variable arguments is not present. | |||||
* | | | ext.autodoc: fix formatting instance annotations | Joost van Zwieten | 2016-08-07 | 1 | -1/+4 | |
| | | | | | | | | | | | | | | | | | | | | | Currently `format_annotation` fails on instances, because instances don't have `__module__` and `__qualname__` attributes. Defer building the `qualified_name` of an annotation until we have established that the annotation is a type. | |||||
* | | | Fix flake8 violation under tests/ | Takeshi KOMIYA | 2016-06-12 | 1 | -26/+41 | |
|/ / | ||||||
* | | Merge pull request #2300 from akruis/feature_autoclass_content_from__new__ | Takeshi KOMIYA | 2016-02-14 | 1 | -0/+33 | |
|\ \ | | | | | | | Feature: enhance autoclass:: to use the docstring of __new__ if __init__ method's is missing of empty | |||||
| * | | Feature: enhance autoclass:: to use the docstring of __new__ | Anselm Kruis | 2016-02-05 | 1 | -0/+33 | |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | The method new is an alternative to __init__, but autoclass does not respect __new__. This commit enhances the directive autoclass:: to try __new__ method's docstring, if __init__ method's docstring is missing or empty. The commit also adds tests and updates the documentation. | |||||
* | | | Merge branch 'stable' | Georg Brandl | 2016-01-14 | 1 | -1/+1 | |
|\ \ \ | |/ / | ||||||
| * | | Obligatory copyright update. | Georg Brandl | 2016-01-14 | 1 | -1/+1 | |
| |/ | ||||||
* | | Move py3.5 specific tests to their own file and adjust test environment | Alberto Berti | 2015-11-10 | 1 | -16/+0 | |
| | | ||||||
* | | Add a test for doc on coroutine functions and general support for ↵ | Alberto Berti | 2015-11-10 | 1 | -0/+18 | |
| | | | | | | | | async/await py3.5 syntax | |||||
* | | Skip type hinting tests if there is a SyntaxError while importing a module ↵ | Andrey Vlasovskikh | 2015-07-31 | 1 | -1/+1 | |
| | | | | | | | | with function annotations | |||||
* | | Use 'SkipTest' from 'util' for tests | Andrey Vlasovskikh | 2015-07-31 | 1 | -3/+2 | |
| | | ||||||
* | | Closes #1968: Show extended type hints for function annotations that use ↵ | Andrey Vlasovskikh | 2015-07-31 | 1 | -1/+45 | |
|/ | | | | 'typing' module | |||||
* | Merge branch 'stable' | Georg Brandl | 2015-01-03 | 1 | -1/+1 | |
|\ | ||||||
| * | all: update copyright | Georg Brandl | 2015-01-03 | 1 | -1/+1 | |
| | | ||||||
* | | Py3 fix. | Georg Brandl | 2014-11-07 | 1 | -2/+2 | |
| | | ||||||
* | | merge with stable | Georg Brandl | 2014-11-07 | 1 | -8/+20 | |
|\ \ | |/ | ||||||
| * | Fix :confval:`autodoc_docstring_signature` not working with signatures | Georg Brandl | 2014-11-07 | 1 | -8/+20 | |
| | | | | | | | | in class docstrings. | |||||
* | | fix trailing space and long line | Takayuki Shimizukawa | 2014-10-09 | 1 | -4/+8 | |
| | | ||||||
* | | Complete test suite overhaul. | Georg Brandl | 2014-09-21 | 1 | -1/+1 | |
| | | | | | | | | | | | | | | | | | | | | | | | | * rename a few test modules to make the names more consistent * do not copy/use Sphinx from build/ (unnecessary without 2to3) * use a temporary dir for *all* test projects, the source tree will stay pristine that way (default is tests/build) * speed up tests by ~3x by splitting up test projects and avoiding rebuilds | |||||
* | | Move env.temp_data content that might be used to resolve references to a new ↵ | Georg Brandl | 2014-09-20 | 1 | -13/+13 | |
| | | | | | | | | env.ref_context dictionary. | |||||
* | | merge with stable | Takayuki Shimizukawa | 2014-07-13 | 1 | -0/+6 | |
|\ \ | |/ | ||||||
| * | * In autodoc, fix display of parameter defaults containing backslashes. ↵ | Takayuki Shimizukawa | 2014-07-02 | 1 | -0/+6 | |
| | | | | | | | | Closes #1502 | |||||
* | | * add test and code comment for pull request #157 | Takayuki Shimizukawa | 2014-06-14 | 1 | -0/+47 | |
| | | ||||||
* | | merge with stable | Takayuki Shimizukawa | 2014-06-09 | 1 | -0/+3 | |
|\ \ | |/ | ||||||
| * | * Fix exception on Python3 if nonexistent method is specified by automethod. ↵ | Takayuki Shimizukawa | 2014-06-09 | 1 | -0/+3 | |
| | | | | | | | | Closes #1467 | |||||
* | | remove 'six' name except importing line. | Takayuki Shimizukawa | 2014-04-30 | 1 | -2/+2 | |
| | | ||||||
* | | introduce the six module and reduce sphinx.util.pycompat implementation. ↵ | Takayuki Shimizukawa | 2014-04-29 | 1 | -4/+2 | |
| | | | | | | | | refs #1350. | |||||
* | | Update copyright year. | Georg Brandl | 2014-03-01 | 1 | -1/+1 | |
|\ \ | |/ | ||||||
| * | Update copyright year. | Georg Brandl | 2014-03-01 | 1 | -1/+1 | |
| | | ||||||
| * | Fix an exception introduced by b69b59480cba for __init__ with no docstring. | Ben Darnell | 2014-01-20 | 1 | -0/+16 | |
| | | ||||||
* | | Fix an exception introduced by b69b59480cba for __init__ with no docstring. | Ben Darnell | 2014-01-20 | 1 | -0/+16 | |
| | | ||||||
* | | merge heads | Takayuki Shimizukawa | 2014-01-15 | 1 | -8/+3 | |
|\ \ | |/ |/| | ||||||
| * | Drop python-2.5 and remove 2.4,2.5 support codes | Takayuki Shimizukawa | 2013-12-15 | 1 | -8/+3 | |
| | | ||||||
* | | Fix autodoc with ``autoclass_content="both"`` uses useless ↵ | Takayuki Shimizukawa | 2014-01-02 | 1 | -0/+14 | |
|/ | | | | | | ``object.__init__`` docstring when class does not have ``__init__``. Closes #1337 This caused by a change for #1138. | |||||
* | Fix: autodoc class __init__ override not removed from docstring. Closes #1138 | Takayuki Shimizukawa | 2013-12-09 | 1 | -0/+33 | |
| | ||||||
* | Test suite quickfix. | Georg Brandl | 2013-09-16 | 1 | -0/+1 | |
| | ||||||
* | Merged in JonnyJD/sphinx/autodoc_novalue (pull request #109) | Georg Brandl | 2013-09-16 | 1 | -0/+1 | |
|\ | | | | | | | feature: autodoc: add :annotation: option for autodata and autoattribute |