summaryrefslogtreecommitdiff
path: root/tests/test_util_logging.py
Commit message (Collapse)AuthorAgeFilesLines
* Fix pytest style issuesAdam Turner2023-02-181-3/+3
|
* logging: always show source locations as absolute paths (#10460)Doug Hellmann2022-06-161-1/+17
|
* Collapse single line docstringsAdam Turner2022-02-201-2/+1
|
* Remove copyright and licence fieldsAdam Turner2022-02-201-3/+0
|
* Fix module docstring indentationAdam Turner2022-02-201-2/+2
|
* Fix module docstring first lineAdam Turner2022-02-201-2/+1
|
* Remove module titles in docstringsAdam Turner2022-02-191-3/+0
|
* A happy new year!Takeshi KOMIYA2022-01-011-1/+1
|
* Fix #9979: Error level messages were displayed as warning messagesTakeshi KOMIYA2021-12-171-5/+5
|
* Merge pull request #9793 from samdoran/enable-parallel-on-macosTakeshi KOMIYA2021-12-111-4/+0
|\ | | | | Set multiprocessing start method to `fork`
| * Set multiprocessing start method to forkSam Doran2021-10-281-4/+0
| | | | | | | | | | Since the current code requires forking, set it explicitly rather than disabling parallelization on macOS.
* | Fix issue with warnings without subtype being incorrectly suppressedSteven Hiscocks2021-09-201-3/+10
|/ | | | | | | This fixes an issue with warnings that have been raised with no subtype being suppressed if a suppress warnings value with a subtype has been set. e.g. all `autodoc` warnings should not be suppressed if `autodoc.import_object` is only set to be suppressed.
* Fix typos discovered by codespellChristian Clauss2021-09-081-1/+1
|
* 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
* Fix #7423: crashed when giving a non-string object to loggerTakeshi KOMIYA2020-04-091-0/+8
|
* Add "once" option to logger.warning()Takeshi KOMIYA2020-03-211-0/+11
|
* Add suppress_logging()Takeshi KOMIYA2020-03-181-0/+14
| | | | | | As a helper for C/C++ domain, this adds suppress_logging(). It works as a context manager and suppresses all loggings during the context temporarily.
* A happy new year!Takeshi KOMIYA2020-01-011-1/+1
|
* Fix #6803: Disable parallel build on macOS and py38+Takeshi KOMIYA2019-12-011-0/+4
|
* Merge branch '1.8'Takeshi KOMIYA2019-01-021-1/+1
|\
| * A happy new year!Takeshi KOMIYA2019-01-021-1/+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.
* | refactor: Remove u-prefix from stringsTakeshi KOMIYA2018-12-161-1/+1
| |
* | Remove print_function featureTakeshi KOMIYA2018-12-151-1/+0
| |
* | logging: Add prefixed_warnings() helperTakeshi KOMIYA2018-10-171-1/+20
|/
* Close #4976: ``SphinxLoggerAdapter.info()`` now supports ``location`` parameterTakeshi KOMIYA2018-06-261-0/+31
|
* Fix flake8 violationsTakeshi KOMIYA2018-02-191-5/+4
|
* Fix #4081: Warnings and errors colored the same when buildingTakeshi KOMIYA2018-01-081-3/+3
|
* A happy new year!Takeshi KOMIYA2018-01-011-1/+1
|
* Fix #4070, #4111: crashes when the warning message contains format strings ↵Takeshi KOMIYA2017-10-051-1/+5
| | | | (again)
* Fix #3926: Add ``autodoc_warningiserror`` to suppress the behavior of ``-W`` ↵Takeshi KOMIYA2017-07-151-0/+24
| | | | option
* Mark tests as xfail/skip to allow successful runAndy Neebel2017-06-141-0/+3
|
* Update testcase for #3858Takeshi KOMIYA2017-06-101-1/+1
|
* refs #3458: add sphinx.testing that are moved from /tests directory.shimizukawa2017-05-141-1/+1
|
* Merge branch 'stable'Takeshi KOMIYA2017-03-261-1/+1
|\
| * Year++Takeshi KOMIYA2017-03-261-1/+1
| |
* | Drop debug2() (refs: #3304)Takeshi KOMIYA2017-01-071-37/+17
| |
* | pytest: remove deprecated test util functionsshimizukawa2017-01-071-12/+4
| |
* | logger.warning() supports node as location parameterTakeshi KOMIYA2017-01-021-15/+9
| |
* | Use loggersTakeshi KOMIYA2017-01-021-1/+2
| |
* | Add sphinx.util.logging.SafeEncodingWriterTakeshi KOMIYA2017-01-021-0/+16
| |
* | Add sphinx.util.logging.pending_warnings()Takeshi KOMIYA2017-01-021-2/+2
| |
* | sphinx.util.parallel supports logging in child workersTakeshi KOMIYA2017-01-021-0/+17
| |
* | sphinx.util.logging supports colorized logTakeshi KOMIYA2017-01-021-0/+31
| |
* | logging.info() supports verbosity filter by app.verbosityTakeshi KOMIYA2017-01-021-0/+64
| |
* | Now sphinx.util.logging supports info and other logsTakeshi KOMIYA2017-01-021-0/+38
| |
* | Add testcase for sphinx.util.loggingTakeshi KOMIYA2017-01-021-0/+112
|/
* Add :confval:`suppress_warnings` to supress arbitrary warning messageTakeshi KOMIYA2016-02-231-0/+26