summaryrefslogtreecommitdiffstats
path: root/Doc/tools/susp-ignored.csv
Commit message (Collapse)AuthorAgeFilesLines
* Remove use of deprecated `array.fromstring` method (GH-17332)David Coles2019-11-261-1/+1
|
* bpo-38738: Fix formatting of True and False. (GH-17083)Serhiy Storchaka2019-11-121-2/+2
| | | | | | | | | * "Return true/false" is replaced with "Return ``True``/``False``" if the function actually returns a bool. * Fixed formatting of some True and False literals (now in monospace). * Replaced "True/False" with "true/false" if it can be not only bool. * Replaced some 1/0 with True/False if it corresponds the code. * "Returns <bool>" is replaced with "Return <bool>".
* bpo-38557: Improve documentation for list and tuple C API. (GH-16925)Serhiy Storchaka2019-10-261-0/+1
|
* bpo-38294: Add list of no-longer-escaped chars to re.escape documentation. ↵Ricardo Bánffy2019-10-071-0/+1
| | | | | | | | | (GH-16442) Prior to 3.7, re.escape escaped many characters that don't have special meaning in Python, but that use to require escaping in other tools and languages. This commit aims to make it clear which characters were, but are no longer escaped.
* bpo-33187: Document ElementInclude (XInclude) support in ElementTree (GH-8861)Anjali Bansal2019-09-111-0/+3
|
* bpo-38086: Sync importlib.metadata with importlib_metadata 0.21. (GH-15840)Jason R. Coombs2019-09-101-1/+1
| | | https://gitlab.com/python-devs/importlib_metadata/-/tags/0.21
* Bpo-37644: update suspicious.csv for distutils/examples (GH-14885)Ned Deily2019-07-211-1/+1
|
* Replace backquote with command substitution in subprocess doc example (GH-13941)David Jones2019-07-161-2/+0
| | | Replace backquotes with POSIXy command substitution in example.
* bpo-37111: Add 'encoding' and 'errors' parameters to logging.basicCon… ↵Vinay Sajip2019-06-171-0/+2
| | | | (GH-14008)
* bpo-36933: Remove sys.set_coroutine_wrapper (marked for removal in 3.8) ↵Matthias Bussonnier2019-05-281-1/+0
| | | | | | | | | | (GH-13577) It has been documented as deprecated and to be removed in 3.8; From a comment on another thread – which I can't find ; leave get_coro_wrapper() for now, but always return `None`. https://bugs.python.org/issue36933
* bpo-35397: Remove deprecation and document urllib.parse.unwrap (GH-11481)Rémi Lapeyre2019-05-271-0/+2
|
* Fix highlighting in importlib.metadata docs (GH-13575)Anthony Sottile2019-05-261-1/+0
|
* bpo-34632: Add importlib.metadata (GH-12547)Jason R. Coombs2019-05-241-0/+3
| | | Add importlib.metadata module as forward port of the standalone importlib_metadata.
* bpo-36797: Prune more legacy distutils documentation (GH-13092)Nick Coghlan2019-05-141-1/+1
| | | | | | Removes more legacy distutils documentation, and more clearly marks what is left as potentially outdated, with references to setuptools as a replacement.
* bpo-30670: Add pp function to the pprint module (GH-11769)Rémi Lapeyre2019-03-221-9/+9
|
* Document actual string.punctuation value. (GH-12270)Andre Delfino2019-03-141-0/+1
|
* bpo-32613: Update window FAQ (GH-5552)Julien Palard2018-11-141-1/+1
|
* bpo-35075: Fix broken url in the pprint documentation (GH-10201)Pablo Galindo2018-11-011-1/+9
| | | https://bugs.python.org/issue35075
* bpo-24937: Replace the extension module porting HOWTO by links to external ↵Petr Viktorin2018-09-241-2/+0
| | | | projects (GH-9317)
* bpo-13631: Fix the order of initialization for readline libedit on macOS. ↵Zvezdan Petkovic2018-05-171-0/+2
| | | | | | (GH-6915) The editline emulation needs to be initialized *after* the name is defined. This fixes the long open issue.
* bpo-31975 (PEP 565): Show DeprecationWarning in __main__ (GH-4458)Nick Coghlan2018-01-081-4/+15
| | | | | | | | | | | | | - primary change is to add a new default filter entry for 'default::DeprecationWarning:__main__' - secondary change is an internal one to cope with plain strings in the warning module's internal filter list (this avoids the need to create a compiled regex object early on during interpreter startup) - assorted documentation updates, including many more examples of configuring the warnings settings - additional tests to ensure that both the pure Python and the C accelerated warnings modules have the expected default configuration
* bpo-32230: Set sys.warnoptions with -X dev (#4820)Victor Stinner2017-12-121-0/+3
| | | | | | | | | | | | | | Rather than supporting dev mode directly in the warnings module, this instead adjusts the initialisation code to add an extra 'default' entry to sys.warnoptions when dev mode is enabled. This ensures that dev mode behaves *exactly* as if `-Wdefault` had been passed on the command line, including in the way it interacts with `sys.warnoptions`, and with other command line flags like `-bb`. Fix also bpo-20361: have -b & -bb options take precedence over any other warnings options. Patch written by Nick Coghlan, with minor modifications of Victor Stinner.
* bpo-30349: Raise FutureWarning for nested sets and set operations (#1553)Serhiy Storchaka2017-11-161-1/+1
| | | | in regular expressions.
* Docs: correct hashlib.blake2 keyed hashing example (bpo-31560)Dmitry Chestnykh2017-09-231-3/+0
|
* Prevent a few make suspicious warnings. (#3341)Ned Deily2017-09-051-0/+2
|
* Blurbify master branch. (#3298)larryhastings2017-09-041-3/+0
| | | Blurbify master branch.
* bpo-30380: Fix Sphinx 1.6.1 warnings. (#1613)Serhiy Storchaka2017-05-161-4/+3
| | | | | | | | * Use explicit numbering for footnotes referred by explicit number. * Restore missed footnote reference in stdtypes.rst. * Fix literal strings formatting in howto/urllib2.rst. * Update susp-ignored.csv for zipapp.rst. * Fix suspicious mark up in Misc/NEWS.
* bpo-30103: Allow Uuencode in Python using backtick as zero instead of space ↵Xiang Zhang2017-05-031-0/+4
| | | | | | (#1326)
* bpo-29995: re.escape() now escapes only special characters. (#1007)Serhiy Storchaka2017-04-131-1/+1
|
* bpo-30021: Add examples for re.escape(). (#1048)Serhiy Storchaka2017-04-131-0/+2
| | | | And fix the parameter name.
* Issue #28822: Add susp-ignored entry for NEWS; fix grammarMartin Panter2017-01-291-0/+1
|
* Issue #29062: Doc: Fix make suspiciousINADA Naoki2017-01-141-4/+4
|\
| * Issue #29062: Doc: Fix make suspiciousINADA Naoki2017-01-141-4/+4
| |
* | Merge with 3.6Zachary Ware2016-11-181-0/+1
|\ \ | |/
| * Ignore newly added suspicious lineZachary Ware2016-11-181-0/+1
| |
* | Remove unused suspicious rulesZachary Ware2016-10-261-2/+0
|/
* Ignore harmless suspicious markupZachary Ware2016-10-261-0/+1
|
* Add some additional suspicious exemption rules for recent doc changes.Ned Deily2016-09-111-0/+25
|
* Actually fix suspicious markup, I ignored it too readilyZachary Ware2016-09-101-1/+0
|
* Remove line numbers from suspicious rulesZachary Ware2016-09-101-16/+16
|
* Fix suspicious markupZachary Ware2016-09-091-0/+4
|
* Remove unused suspicious rulesZachary Ware2016-09-091-3/+0
|
* shut up some perfectly innocent reST in hashlib-blake2Benjamin Peterson2016-09-061-0/+4
|
* Issue #27285: Cleanup leftover susp-ignored entry after text was changedMartin Panter2016-07-161-1/+0
|
* Issue #27285: Cleanup "suspicious" warnings.Ned Deily2016-07-111-1/+1
|
* Merge from 3.5Berker Peksag2016-06-111-3/+3
|\
| * Silence 'make suspicious' warningsBerker Peksag2016-06-111-3/+3
| |
* | Fix RST conflicts with Idle news entriesMartin Panter2016-06-081-0/+1
|/
* Issue #23806: Update susp-ignored.csvMartin Panter2016-04-241-0/+1
|
* Update susp-ignore file (#25910).Georg Brandl2016-02-281-1/+1
|