Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Update copyright year. | Georg Brandl | 2014-03-01 | 1 | -10/+5 |
|\ | |||||
| * | merge with stable | Georg Brandl | 2014-03-01 | 1 | -3/+3 |
| |\ | |||||
| * | | Modernize the code now that Python 2.5 is no longer supported | Dmitry Shachnev | 2014-01-19 | 1 | -3/+3 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | - Use print function instead of print statement; - Use new exception handling; - Use in operator instead of has_key(); - Do not use tuple arguments in functions; - Other miscellaneous improvements. This is based on output of `futurize --stage1`, with some manual corrections. | ||||
| * | | Drop python-2.5 and remove 2.4,2.5 support codes | shimizukawa | 2013-12-15 | 1 | -7/+2 |
| | | | |||||
* | | | Update copyright year. | Georg Brandl | 2014-03-01 | 1 | -1/+1 |
| |/ |/| | |||||
* | | Fix inspect using the "__builtins__" CPython specific module. | Georg Brandl | 2014-03-01 | 1 | -3/+3 |
|/ | |||||
* | Now sphinx.ext.autodoc on PyPy ignoring the method of built-in classes. | shimizukawa | 2013-10-07 | 1 | -0/+17 |
| | | | | | | | | | | | For example:: class CustomDict(dict): """Docstring.""" From this code, autoclass directive on PyPy generate a document output as ``class foo.CustomDict(obj, *args, **keywords)`` instead of ``class foo.CustomDict`` before this change. | ||||
* | Fix new getargspec implementation for 3.x. | Georg Brandl | 2013-09-17 | 1 | -3/+3 |
| | |||||
* | Closes #828: use inspect.getfullargspec() to be able to document functions with | Georg Brandl | 2013-09-16 | 1 | -1/+37 |
| | | | | keyword-only arguments on Python 3. | ||||
* | Respect add_autodoc_attrgetter() even when inherited-members is set | A. Jesse Jiryu Davis | 2013-01-31 | 1 | -2/+2 |
| | |||||
* | Closes #1069: Fix autodoc signature formatting of "partial" functions ↵ | Jonathan Waltman | 2013-01-09 | 1 | -2/+7 |
| | | | | without kwargs (patch by Artur Gaspar). | ||||
* | Copyright update. | Georg Brandl | 2013-01-01 | 1 | -1/+1 |
| | |||||
* | * fix for Python2.5: test failed by using inspect.ArgSpec that introduced at ↵ | shimizukawa | 2012-05-02 | 1 | -1/+4 |
| | | | | Python-2.6. | ||||
* | Closes #810: fix deprecation warnings with Python 3. What is left over is ↵ | Georg Brandl | 2012-01-29 | 1 | -1/+4 |
| | | | | from nose or docutils. | ||||
* | PR#40: Fix ``safe_repr`` function to decode bytestrings with non-ASCII ↵ | Georg Brandl | 2012-01-29 | 1 | -1/+3 |
| | | | | characters correctly. | ||||
* | #437: autodoc now shows values of class data attributes. | Georg Brandl | 2011-01-08 | 1 | -0/+9 |
| | |||||
* | merge with https://bitbucket.org/langacore/sphinx | Georg Brandl | 2011-01-08 | 1 | -1/+5 |
|\ | |||||
* | | getargspec moved to sphinx.util.inspect | ?ukasz Langa | 2011-01-08 | 1 | -0/+34 |
|/ | |||||
* | New year update. | Georg Brandl | 2011-01-04 | 1 | -1/+1 |
| | |||||
* | Happy new year! | Georg Brandl | 2010-01-01 | 1 | -1/+1 |
| | |||||
* | #229: Fix autodoc failures with members that raise errors | Georg Brandl | 2009-08-06 | 1 | -0/+43 |
on ``getattr()``. |