summaryrefslogtreecommitdiffstats
path: root/Doc/tools
Commit message (Collapse)AuthorAgeFilesLines
...
* bpo-35015: Doc: Fix internationalisation of the availability directive. ↵Julien Palard2018-11-071-3/+4
| | | | (GH-10360)
* bpo-35159: Add a link to the devguide in the sidebar of the index (Doc/) ↵Stéphane Wirtel2018-11-041-0/+1
| | | | (GH-10316)
* bpo-35075: Fix broken url in the pprint documentation (GH-10201)Pablo Galindo2018-11-011-1/+9
| | | https://bugs.python.org/issue35075
* bpo-35036: Remove empty log line in the suspicious.py tool (GH-10024)Xtreak2018-10-211-1/+0
| | | | Previous to commit ee171a2 the logline was working because of self.info() (now deprecated) defaults to an empty message.
* Stop using deprecated logging API in Sphinx suspicious checker (GH-9875)Pablo Galindo2018-10-151-4/+6
|
* bpo-34967: Sphinx is deprecating add_description_unit, use add_object_type ↵Stéphane Wirtel2018-10-131-5/+3
| | | | (GH-9827)
* bpo-11233: Create availability directive for documentation (GH-9692)Cheryl Sabella2018-10-122-11/+32
| | | | | | Replace "Availability: xxx" with ".. availability:: xxx" in the doc. Original patch by Georg Brandl. Co-Authored-By: Georg Brandl <georg@python.org>
* bpo-32174: Let .chm document display non-ASCII characters properly (GH-9758)animalize2018-10-081-0/+39
| | | | | Let .chm document display non-ASCII characters properly Escape the `body` part of .chm source file to 7-bit ASCII, to fix visual effect on some MBCS Windows systems.
* bpo-24937: Replace the extension module porting HOWTO by links to external ↵Petr Viktorin2018-09-241-2/+0
| | | | projects (GH-9317)
* bpo-33649: Add a high-level section about Futures; few quick fixes (GH-9403)Yury Selivanov2018-09-181-0/+21
| | | Co-authored-by: Elvis Pranskevichus <elvis@magic.io>
* bpo-33649: Add low-level APIs index. (GH-9364)Yury Selivanov2018-09-171-0/+9
|
* Forward port 3.7.0 final changesNed Deily2018-06-272-3/+3
|
* 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-33378: Add Korean to the language switcher. (GH-6627)Dong-hee Na2018-04-281-0/+1
|
* fix pydoc-topics to work with Sphinx 1.7 (GH-6475)Benjamin Peterson2018-04-171-4/+8
| | | In fact, we now require a newer Sphinx version because APIs have moved around.
* bpo-30607: Use external python-doc-theme (GH-2017)Jon Wayne Parrott2018-03-017-580/+68
|
* bpo-32087: Doc: Make "deprecated-removed" directive translatable (GH-4473)cocoatomo2018-02-232-5/+8
|
* Update Doc build to 3.8Ned Deily2018-01-312-1/+3
|
* 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.
* Replace KB unit with KiB (#4293)Victor Stinner2017-11-081-9/+9
| | | | | | | | | | | kB (*kilo* byte) unit means 1000 bytes, whereas KiB ("kibibyte") means 1024 bytes. KB was misused: replace kB or KB with KiB when appropriate. Same change for MB and GB which become MiB and GiB. Change the output of Tools/iobench/iobench.py. Round also the size of the documentation from 5.5 MB to 5 MiB.
* bpo-31766: restore 3.5 to docs version switchers (#3969)Ned Deily2017-10-122-1/+3
|
* bpo-30406: Make async and await proper keywords (#1669)Jelle Zijlstra2017-10-061-3/+3
| | | Per PEP 492, 'async' and 'await' should become proper keywords in 3.7.
* Remove retired and security branches from active docs (#3879)Ned Deily2017-10-042-4/+0
|
* 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.
* Fix broken `Show Source` links on documentation pages (GH-3113)Elmar Ritsch2017-08-181-1/+1
| | | | | The `Show Source` was broken because of a change made in sphinx 1.5.1 In Sphinx 1.4.9, the sourcename was "index.txt". In Sphinx 1.5.1+, it is now "index.rst.txt"
* Update the language selection in the docs language switch. (GH-3114)Julien Palard2017-08-171-1/+1
| | | Change the option for `Français` into `French` to be consistent with the other language selections that are already in English.
* bpo-31159: fix language switch regex on unknown yet built languages. (#3039)Julien Palard2017-08-091-2/+2
| | | | | | This fix a regex issue (a missing non-matching group around an 'or' list) and the specific possible case where a translation is built but not yet in known by the picker, but not explicitly listing possible languages in the regex.
* bpo-31149: Doc: Add Japanese to the language switcher. (#3028)Julien Palard2017-08-081-0/+1
|
* bpo-31045: Language switch (#2652)Julien2017-08-073-69/+149
| | | | | | | | | | | | | | | | | | * Doc: Indicate the language * Renaming version_switcher to switchers (to add language_switcher). * Adding language switch. * Doc switchers: Enhance readability of regex parsing versions. * Doc switchers: Desambiguate the need of a replace(/\/+$/g, '') by proper naming. * Doc switchers: py3k can't reach js, it's redirected server-side by nginx. * Doc switchers: Examples matching actual regexes. * Doc switchers: Better fallback on unexisting translated version.
* Update doc download files size estimates. (#2771)Ned Deily2017-07-201-9/+9
|
* bpo-30939: Avoid Sphinx deprecation warning in docs build. (#2721)Ned Deily2017-07-151-1/+1
|
* bpo-29783: Replace codecs.open() with io.open() (#599)Victor Stinner2017-06-161-5/+2
|
* 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.
* bpo-29888: Fix the link referring to the "Python download page" (GH-824)cocoatomo2017-03-261-1/+1
|
* bpo-28331: fix impl-detail label is removed when content is translated. (GH-195)INADA Naoki2017-03-082-2/+18
|
* bpo-29520: doc: add missing dot (GH-182)INADA Naoki2017-02-201-1/+1
| | | 3eea8c6 missed dot at the end of paragraph.
* bpo-29520: doc: fix deprecation warning from 'defindex' template (GH-165)INADA Naoki2017-02-191-2/+9
|
* bpo-28929: Link the documentation to its source file on GitHub (#35)Mariatta2017-02-121-2/+5
| | | | | | | | | * bpo-28929: Link the documentation to its source file on GitHub Change the documentation's `Show Source` link on the left menu to GitHub source file. * change version to master
* Support "bpo-" in Misc/NEWS (#1)Brett Cannon2017-02-101-4/+4
|
* Merge issue #26355 fix from 3.6Nick Coghlan2017-02-091-0/+1
|\
| * Merge issue #26355 fix from Python 3.5Nick Coghlan2017-02-091-0/+1
| |\
| | * Issue #26355: Specify canonical URLs in docs pagesNick Coghlan2017-02-091-0/+1
| | | | | | | | | | | | | | | | | | | | | Add canonical header link on each page to corresponding major version of the documentation. Patch by Matthias Bussonnier.
* | | Issue #28822: Add susp-ignored entry for NEWS; fix grammarMartin Panter2017-01-291-0/+1
| | |