summaryrefslogtreecommitdiff
path: root/tests/test_util_inventory.py
Commit message (Collapse)AuthorAgeFilesLines
* A happy new year!Takeshi KOMIYA2021-01-011-1/+1
| | | | | | | .. 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
* refactor with pyupgradeTakeshi KOMIYA2020-11-251-8/+8
| | | | | | Run `pyupgrade --py3-only --keep-percent-format` to refine our code. Note: --keep-percent-format is required to keep translations available.
* Fix #7183: intersphinx: ``:attr:`` reference to property is brokenTakeshi KOMIYA2020-02-221-0/+1
|
* 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.
* Avoid respecifying default encoding for .encode()/.decode() callsJon Dufresne2018-12-151-6/+6
| | | | | | | | | | | In Python 3, both .encode() and .decode() default the encoding to 'utf-8'. See the docs: https://docs.python.org/3/library/stdtypes.html#str.encode https://docs.python.org/3/library/stdtypes.html#bytes.decode Simplify and shorten the code by using the default instead of respecifying it.
* Replace all six.BytesIO with io.BytesIOJon Dufresne2018-09-231-2/+1
|
* Fix flake8 violationsTakeshi KOMIYA2018-02-191-1/+1
|
* Fix #4209: intersphinx: In link title, "v" should be optional if target has ↵Takeshi KOMIYA2018-01-301-0/+16
| | | | no version
* Some cleanup to avoid using the std:: namespaceAndy Neebel2017-09-281-0/+2
|
* Improve cpp intersphinx supportAndy Neebel2017-06-261-0/+2
| | | | | Now types called out in function declarations will be searched for in the intersphinx inventory as well
* Implement get_full_qualified_name() to CPPDomain (refs: #3630)Takeshi KOMIYA2017-04-231-0/+2
|
* Implement get_full_qualified_name() to JavascriptDomain (refs: #3630)Takeshi KOMIYA2017-04-231-0/+4
|
* Implement get_full_qualified_name() to StandardDomain (refs: #3630)Takeshi KOMIYA2017-04-231-0/+1
|
* Move InventoryFile class to sphinx.util.inventoryTakeshi KOMIYA2017-03-021-0/+67