summaryrefslogtreecommitdiff
path: root/sphinx/util/jsonimpl.py
Commit message (Collapse)AuthorAgeFilesLines
* Remove deprecated features marked as RemovedInSphinx40WarningTakeshi KOMIYA2020-04-291-46/+0
|
* refactor: Rename var keyword argument to "**kwargs"Takeshi KOMIYA2020-01-081-10/+10
|
* A happy new year!Takeshi KOMIYA2020-01-011-1/+1
|
* mypy: Enable disallow_incomplete_defs flag for type checkingTakeshi KOMIYA2019-12-301-4/+4
|
* Migrate to py3 style type annotation: sphinx.util.jsonimplTakeshi KOMIYA2019-06-031-14/+6
|
* Separate json and pickle to sphinxcontrib packageTakeshi KOMIYA2019-02-171-0/+7
|
* Merge branch '1.8'Takeshi KOMIYA2019-01-021-1/+1
|\
| * A happy new year!Takeshi KOMIYA2019-01-021-1/+1
| |
* | Replace use of six.text_type with strJon Dufresne2018-12-181-3/+1
| | | | | | | | | | This removes the last use of the six package allowing Sphinx to remove it as a dependency.
* | Remove unnecessary encoding cookie from Python source filesJon Dufresne2018-12-161-1/+0
| | | | | | | | | | | | | | | | | | | | | | | | | | | | 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.
* | Use Python 3 super() argument-less syntaxJon Dufresne2018-12-151-1/+1
| | | | | | | | | | | | The form is less verbose and more idiomatic for Python 3 only code. https://docs.python.org/3/library/functions.html#super
* | Replace all "unicode" type by "str"Takeshi KOMIYA2018-12-151-3/+2
| |
* | refactor: Replace six.UserString by collections.UserStringTakeshi KOMIYA2018-12-151-1/+1
| |
* | Add sphinx.util.typing:unicode to help mypy-3 migrationTakeshi KOMIYA2018-11-241-0/+1
| |
* | Use super() in SphinxJSONEncoderJon Dufresne2018-11-131-1/+1
|/ | | | | This case was missed as part of 710ca3d7c3a41296861b0be79b9904246477968d.
* Revert "Use typing.TYPE_CHECKING for typehints"Takeshi KOMIYA2018-03-131-3/+2
| | | | This reverts commit a073e17537c2aacaac305feadea58d4473ec97f4.
* Use typing.TYPE_CHECKING for typehintsTakeshi KOMIYA2018-02-141-2/+3
|
* A happy new year!Takeshi KOMIYA2018-01-011-1/+1
|
* Merge branch 'stable'Takeshi KOMIYA2017-03-261-1/+1
|\
| * Year++Takeshi KOMIYA2017-03-261-1/+1
| |
* | Upgrade to mypy-0.5Takeshi KOMIYA2017-03-031-1/+1
| |
* | Fix mypy violationsTakeshi KOMIYA2017-02-081-1/+10
|/
* Obligatory copyright update.Georg Brandl2016-01-141-1/+1
|
* util: pep8 fixesGeorg Brandl2015-03-081-0/+3
|
* Merge branch 'stable'Georg Brandl2015-01-031-1/+1
|\
| * all: update copyrightGeorg Brandl2015-01-031-1/+1
| |
* | use six privided text_type() to replace with unicode() to support py2/py3 in ↵Takayuki Shimizukawa2014-04-291-1/+2
| | | | | | | | one source. refs #1350.
* | use six privided functions/classes to support py2/py3 in one source. refs #1350.Takayuki Shimizukawa2014-04-291-2/+3
| |
* | Update copyright year.Georg Brandl2014-03-011-1/+1
|\ \ | |/
| * Update copyright year.Georg Brandl2014-03-011-1/+1
| |
* | Drop python-2.5 and remove 2.4,2.5 support codesTakayuki Shimizukawa2013-12-151-16/+4
|/
* Copyright update.Georg Brandl2013-01-011-1/+1
|
* merge with 1.0Georg Brandl2011-01-041-1/+1
|\
| * New year update.Georg Brandl2011-01-041-1/+1
| |
* | Docstring harmonization.Georg Brandl2010-08-221-1/+1
|/
* #488: Fix crash when json-py is installed, which provides a ``json`` module ↵Georg Brandl2010-08-051-1/+3
| | | | but is incompatible to simplejson.
* Dont fail when no json impl is found.Georg Brandl2010-07-271-2/+5
|
* Add a custom json serializer implementation that forces translation proxies. ↵Georg Brandl2010-07-251-0/+43
Fixes building with the JSON builder.