Commit message (Collapse) | Author | Age | Files | Lines | ||
---|---|---|---|---|---|---|
... | ||||||
| * | Fix flake8 violations | Takeshi KOMIYA | 2017-01-12 | 2 | -3/+3 | |
| | | ||||||
* | | Add type-check annotations to sphinx.* | Takeshi KOMIYA | 2016-11-16 | 6 | -50/+70 | |
|/ | ||||||
* | Merge branch 'stable' into 1.5-release | Takeshi KOMIYA | 2016-11-16 | 1 | -0/+2 | |
|\ | ||||||
| * | insert blank line(s) to adapt latest flake8/pycodestyle | shimizukawa | 2016-11-16 | 1 | -0/+2 | |
| | | ||||||
* | | Fix #2919: Drop py26 support | Takeshi KOMIYA | 2016-09-15 | 1 | -4/+1 | |
| | | ||||||
* | | Use new style python classes | Takeshi KOMIYA | 2016-09-10 | 1 | -1/+1 | |
| | | ||||||
* | | Remove sphinx version from the filename of compiled grammar files | Takeshi KOMIYA | 2016-07-12 | 1 | -2/+1 | |
| | | | | | | | | | | | | Now sphinx bundles the compiled grammar files. Then it will be replaced on upgrading sphinx. So the sphinx version is not needed on its filename. | |||||
* | | Bundle sphinx/pycode/Grammar-*.pickle (ref: #2765) | Takeshi KOMIYA | 2016-07-12 | 1 | -16/+26 | |
| | | | | | | | | | | | | So far, sphinx generates the grammar files on demand. It causes uninstallation does not remove whole of files. With this fix, Sphinx bundles the files in the package. | |||||
* | | Refactor code using ``with`` syntax | Takeshi KOMIYA | 2016-05-26 | 1 | -4/+1 | |
|/ | ||||||
* | Merge with 'stable' | shimizukawa | 2016-01-24 | 1 | -1/+1 | |
|\ | ||||||
| * | Fix #2253: ``:pyobject:`` option of ``literalinclude`` directive can't ↵ | shimizukawa | 2016-01-20 | 1 | -1/+1 | |
| | | | | | | | | detect indented body block when the block starts with blank or comment lines. | |||||
* | | Merge branch 'stable' | Georg Brandl | 2016-01-14 | 2 | -2/+2 | |
|\ \ | |/ | ||||||
| * | Obligatory copyright update. | Georg Brandl | 2016-01-14 | 2 | -2/+2 | |
| | | ||||||
| * | Fix #1789 `:pyobject:` option of `literalinclude` directive includes ↵ | Takeshi KOMIYA | 2015-04-02 | 1 | -3/+14 | |
| | | | | | | | | following lines after definitions | |||||
* | | Add a test for doc on coroutine functions and general support for ↵ | Alberto Berti | 2015-11-10 | 1 | -2/+1 | |
| | | | | | | | | async/await py3.5 syntax | |||||
* | | Treat async/await as anonymous token and deal with them in tokenize.py | Alberto Berti | 2015-11-09 | 2 | -2/+14 | |
| | | | | | | | | .. as cpython's parser does | |||||
* | | Update Python3 grammar to Python3.5 | Alberto Berti | 2015-11-09 | 3 | -20/+44 | |
| | | | | | | | | Taken from https://hg.python.org/cpython/file/3.5/Grammar/Grammar@99014:0c704864b917 | |||||
* | | Fix Python 2.6 incompatibility introduced in 4e77027. | Valentin Lorentz | 2015-08-20 | 1 | -1/+4 | |
| | | ||||||
* | | Make grammar generation deterministic. | Valentin Lorentz | 2015-08-19 | 1 | -4/+11 | |
| | | ||||||
* | | Fix #1789 `:pyobject:` option of `literalinclude` directive includes ↵ | Takeshi KOMIYA | 2015-03-31 | 1 | -3/+14 | |
|/ | | | | following lines after definitions | |||||
* | final pep8 fixes; reactivate most warnings in flake8 | Georg Brandl | 2015-03-08 | 2 | -17/+21 | |
| | ||||||
* | enables flake8 E401: multiple imports on one line | shimizukawa | 2015-03-07 | 1 | -1/+2 | |
| | ||||||
* | Merge branch 'stable' | Georg Brandl | 2015-01-03 | 2 | -2/+2 | |
|\ | ||||||
| * | all: update copyright | Georg Brandl | 2015-01-03 | 2 | -2/+2 | |
| | | ||||||
* | | Fix: pgen2 tokenizer doesn't recognize `...` literal (Ellipsis for py3). ↵ | Takayuki Shimizukawa | 2014-08-28 | 1 | -2/+9 | |
| | | | | | | | | | | | | Closes #1547 I think pgen2 code derived from lib2to3 package. Basically, the package only support python2 code then it doesn't recognize `...` literal. | |||||
* | | fix py2/py3 compat for 'iter.next()/next(iter)' and ↵ | Takayuki Shimizukawa | 2014-05-01 | 1 | -1/+1 | |
| | | | | | | | | 'dict.values()/list(dict.values())'. refs #1350. | |||||
* | | wrap py3 iterators with list() for each places that expect a list object. ↵ | Takayuki Shimizukawa | 2014-04-30 | 2 | -3/+4 | |
| | | | | | | | | refs #1350. | |||||
* | | remove 'six' name except importing line. | Takayuki Shimizukawa | 2014-04-30 | 1 | -4/+3 | |
| | | ||||||
* | | use six privided text_type() to replace with unicode() to support py2/py3 in ↵ | Takayuki Shimizukawa | 2014-04-29 | 2 | -4/+7 | |
| | | | | | | | | one source. refs #1350. | |||||
* | | provide __next__() and use native next() to support py2/py3 in one source. ↵ | Takayuki Shimizukawa | 2014-04-29 | 1 | -2/+2 | |
| | | | | | | | | refs #1350. | |||||
* | | wrap iterator with list() to avoid 'dictionary changed size during ↵ | Takayuki Shimizukawa | 2014-04-29 | 2 | -3/+3 | |
| | | | | | | | | iteration' on py3. refs #1350. | |||||
* | | use six privided iteritems(),itervalues() to support py2/py3 in one source. ↵ | Takayuki Shimizukawa | 2014-04-29 | 2 | -10/+13 | |
| | | | | | | | | refs #1350. | |||||
* | | introduce the six module and reduce sphinx.util.pycompat implementation. ↵ | Takayuki Shimizukawa | 2014-04-29 | 1 | -3/+5 | |
| | | | | | | | | refs #1350. | |||||
* | | Update copyright year. | Georg Brandl | 2014-03-01 | 2 | -2/+2 | |
|\ \ | |/ | ||||||
| * | Update copyright year. | Georg Brandl | 2014-03-01 | 2 | -2/+2 | |
| | | ||||||
* | | consistency nits | Georg Brandl | 2014-01-22 | 2 | -2/+5 | |
| | | ||||||
* | | Modernize the code now that Python 2.5 is no longer supported | Dmitry Shachnev | 2014-01-19 | 6 | -22/+28 | |
| | | | | | | | | | | | | | | | | | | | | | | - 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. | |||||
* | | merge heads | Takayuki Shimizukawa | 2014-01-15 | 2 | -90/+1 | |
|\ \ | |/ |/| | ||||||
| * | Drop python-2.5 and remove 2.4,2.5 support codes | Takayuki Shimizukawa | 2013-12-15 | 2 | -90/+1 | |
| | | ||||||
* | | Fix new grammar files to have correct starting symbol at the top. | Georg Brandl | 2014-01-12 | 2 | -3/+8 | |
| | | ||||||
* | | Closes #1152: Fix pycode parsing errors of Python 3 code by including two ↵ | Georg Brandl | 2014-01-12 | 6 | -50/+166 | |
| | | | | | | | | | | | | | | grammar versions for Python 2 and 3, and loading the appropriate version for the running Python version. | |||||
* | | Closes #641: use Sphinx version in cache pickle filename. | Georg Brandl | 2014-01-10 | 1 | -2/+4 | |
|/ | ||||||
* | Closes #1102: Support multi-context "with" statements in autodoc by updating | Georg Brandl | 2013-03-30 | 1 | -26/+16 | |
| | | | | pycode grammar from lib2to3. | |||||
* | Closes #1127: Fix traceback when autodoc tries to tokenize a non-Python file. | Georg Brandl | 2013-03-30 | 1 | -1/+4 | |
| | ||||||
* | Copyright update. | Georg Brandl | 2013-01-01 | 2 | -2/+2 | |
| | ||||||
* | Closes #796: use package_dir everywhere instead of __file__. | Georg Brandl | 2011-11-01 | 1 | -1/+2 | |
| | ||||||
* | Activate the viewcode extension in the automatically generated apidoc project. | Georg Brandl | 2011-10-07 | 1 | -0/+1 | |
| | ||||||
* | Fix #705: read module source in ModuleAnalyzer in binary mode, decode ↵ | Georg Brandl | 2011-09-19 | 1 | -8/+15 | |
| | | | | afterwards. | |||||
* | Remove unused imports. | Georg Brandl | 2011-09-19 | 1 | -2/+0 | |
| | ||||||
* | merge with 1.0 | Georg Brandl | 2011-05-15 | 1 | -14/+2 | |
|\ |