Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/sphinx-doc/sphinx.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2022-02-20Collapse single line docstringsAdam Turner
2022-02-20Remove copyright and licence fieldsAdam Turner
2022-02-20Fix module docstring indentationAdam Turner
2022-02-20Fix module docstring first lineAdam Turner
2022-02-20Remove module titles in docstringsAdam Turner
2022-01-01A happy new year!Takeshi KOMIYA
2021-01-01A happy new year!Takeshi KOMIYA
.. note:: $ find sphinx tests LICENSE doc/conf.py -type f -exec sed -i '' -e 's/2007\-20../2007-2021/' {} \; $ git co sphinx/locale/**/*.js sphinx/templates/epub3/mimetype
2020-11-11Sort imports with isortFrançois Freitag
Keep imports alphabetically sorted and their order homogeneous across Python source files. The isort project has more feature and is more active than the flake8-import-order plugin. Most issues caught were simply import ordering from the same module. Where imports were purposefully placed out of order, tag with isort:skip.
2020-04-19refactor: Add Optional to type annotationsTakeshi KOMIYA
2020-01-01A happy new year!Takeshi KOMIYA
2019-06-03Migrate to py3 style type annotation: sphinx.util.pngTakeshi KOMIYA
2019-01-02Merge branch '1.8'Takeshi KOMIYA
2019-01-02A happy new year!Takeshi KOMIYA
2018-12-16Remove unnecessary encoding cookie from Python source filesJon Dufresne
In Python 3, the default encoding of source files is utf-8. The encoding cookie is now unnecessary and redundant so remove it. For more details, see the docs: https://docs.python.org/3/howto/unicode.html#the-string-type > The default encoding for Python source code is UTF-8, so you can > simply include a Unicode character in a string literal ... Includes a fix for the flake8 header checks to stop expecting an encoding cookie.
2018-12-15Replace all "unicode" type by "str"Takeshi KOMIYA
2018-11-24Add sphinx.util.typing:unicode to help mypy-3 migrationTakeshi KOMIYA
2018-01-27Use flake8-import-orderTakeshi KOMIYA
2017-12-31A happy new year!Takeshi KOMIYA
2017-03-26Merge branch 'stable'Takeshi KOMIYA
2017-03-26Year++Takeshi KOMIYA
2017-02-08Fix mypy violationsTakeshi KOMIYA
2016-05-25Refactor code using ``with`` syntaxTakeshi KOMIYA
2016-01-15Obligatory copyright update.Georg Brandl
2015-01-03Merge branch 'stable'Georg Brandl
2015-01-03all: update copyrightGeorg Brandl
2014-05-01use b prefix for bytes instead of sphinx.pycompat.b function.Takayuki Shimizukawa
2014-03-01Update copyright year.Georg Brandl
2013-06-04merge stable for PR#141, #982Takayuki Shimizukawa
2013-05-07Closes #982: Avoid crash when writing PNG file using Python 3.Marcin Wojdyr
binascii.crc32() has changed in version 3.0. In Py2 it returns value in the range [-2**31, 2**31-1], in Py3 in [0, 2**32-1]. This change made write_png_depth() crash with: struct.error: 'i' format requires -2147483648 <= number <= 2147483647
2013-01-02Copyright update.Georg Brandl
2011-01-04merge with 1.0Georg Brandl
2011-01-04New year update.Georg Brandl
2010-08-23Make chunks bytestringsDaniel Neuhäuser
2010-08-22Docstring harmonization.Georg Brandl
2010-01-01Happy new year!Georg Brandl
2009-01-03Switch copyright and license tags to single style. Add contributorGeorg Brandl
names in AUTHORS instead, and add the license of etree13 to LICENSE.
2008-12-10#65: Store depth information in PNG images themselves.Georg Brandl