summaryrefslogtreecommitdiffstats
path: root/Doc
Commit message (Collapse)AuthorAgeFilesLines
* bpo-34009: Expand on platform support changes (GH-8022)Nick Coghlan2018-07-101-3/+26
| | | | | | | | | Many users won't realise the implications the OpenSSL 1.0.2 minimum version requirement has when it comes to Ubuntu 14.04 and Debian 8, so expand on that in the platform support section. Also explicitly note the non-ASCII-based locale requirement for full Unicode text handling support on non-Windows systems.
* bpo-34067: Include a more easily understood example for nullcontext (GH-8158)Daniel Porteous2018-07-091-1/+13
| | | Include a more easily understood example for nullcontext
* bpo-26544: Fixed implementation of platform.libc_ver(). (GH-7684)Serhiy Storchaka2018-07-091-1/+1
|
* Fix margin in sentinel and mock_open (GH-8188)Andrés Delfino2018-07-091-21/+21
|
* bpo-34061: Document sqlite3.NotSupportedError (GH-8172)Marcin Niemira2018-07-081-1/+8
|
* bpo-34041: Allow creating deterministic functions in ↵Sergey Fedoseev2018-07-081-2/+9
| | | | Connection.create_function() (GH-8086)
* bpo-33888: Use CPython instead of Python in the FAQ (GH-7767)Andrés Delfino2018-07-071-6/+6
| | | | Make the change where discussing the CPython implementation of lists and dicts.
* closes bpo-34050: Fix link in SSL docs (GH-8173)Marcin Niemira2018-07-071-1/+1
|
* bpo-28626: rearrange discussion of output formatting to encourage f-strings ↵Andrew Kuchling2018-07-071-89/+138
| | | | | | | | (#6036) The 'output formatting' section of the tutorial talks a lot about manual formatting with things like .rjust() and .zfill(), with only a passing reference to 3.6's new f-strings. This doesn't drop all of the old material, but it does rearrange the topics into a more modern order: f-strings first, discussing formatting specifiers a bit; then calling .format(); finally manual formatting with .ljust().
* bpo-33702: Add some missing links in production lists and do a little polish ↵Andrés Delfino2018-07-073-25/+25
| | | | (GH-7259)
* bpo-33804: Document that the argument for io.TextIOBase.read() is optional ↵Andrés Delfino2018-07-071-1/+1
| | | | (GH-7510)
* Fix moduleauthor/sectionauthor directives in Enum (GH-8117)Andrés Delfino2018-07-071-4/+4
|
* Add missing closing parentheses (GH-8144)Andrés Delfino2018-07-071-1/+1
|
* bpo-34065: Improve the markup of logging.basicConfig() arguments (GH-8153)Dong-hee Na2018-07-071-8/+7
|
* Doc: Remove superfluous markup. (GH-8112)Julien Palard2018-07-061-1/+1
| | | The line is speaking of a list of commands, not the list command.
* versionadded -> versionchanged for all 'X parameter was added' for ↵Sergey Fedoseev2018-07-063-7/+7
| | | | | | uniformity. (GH8114) Per the recommendation in our Developer's Guide: https://devguide.python.org/documenting/#paragraph-level-markup
* classify abs() argument type (GH-8103)Windson yang2018-07-051-1/+2
|
* Removed unused import from tzinfo_examples.py. (GH-7994)Sergey Fedoseev2018-07-051-1/+1
|
* Update Stackless Python wiki URL (GH-8072)Julien Palard2018-07-051-1/+1
| | | It was moved from bitbucket to GitHub.
* DOC: In `reduce`, refer to `accumulate` (GH-7930)Gerrit Holl2018-07-041-0/+2
|
* bpo-30516: Fix documentation issue with -timedelta in datetime (GH-7348)Farhaan Bukhsh2018-07-041-5/+6
| | | | | This commit fixes the -timedelta overfllow issue not documented properly. Signed-off-by: Farhaan Bukhsh <farhaan.bukhsh@gmail.com>
* bpo-34018: Doc'd that type names of SQLite converters are case-insensitive. ↵Sergey Fedoseev2018-07-031-2/+2
| | | | (GH-8042)
* bpo-34006: Revert line length limit for Windows help docs (GH-8051)Zachary Ware2018-07-021-0/+3
| | | | The line-length limit is not needed because the pages appear in a separate app rather than on a browser tab. It can also interact badly with the DPI setting.
* bpo-30660: Doc: Optimize PNG files by optipng (GH-8032)INADA Naoki2018-07-017-0/+0
| | | | Using OptiPNG 0.7.7. Used command is: `find . -name '*.png' | xargs optipng -o7`
* bpo-31938: Convert selectmodule.c to Argument Clinic (GH-4265)Tal Einat2018-06-301-1/+1
|
* Doc: Remove unused image file (GH-8027)INADA Naoki2018-06-301-0/+0
|
* bpo-32568: make select.epoll() and its docs consistent (#7840)Tal Einat2018-06-301-1/+10
| | | | | | | | | | | | | * `flags` is indeed deprecated, but there is a validation on its value for backwards compatibility reasons. This adds mention of this in the docs. * The docs say that `sizehint` is deprecated and ignored, but it is still used when `epoll_create1()` is unavailable. This adds mention of this in the docs. * `sizehint=-1` is acceptable again, and is replaced with `FD_SETSIZE-1`. This is needed to have a default value available at the Python level, since `FD_SETSIZE` is not exposed to Python. (see: bpo-31938) * Reject `sizehint=0` since it is invalid to pass on to `epoll_create()`. The relevant tests have also been updated.
* Fix the indentation in the documentation of bin() and hash() (GH-7998)Andrés Delfino2018-06-291-5/+5
|
* bpo-33985: Implement ContextVar.name attribute. (GH-7980)Yury Selivanov2018-06-281-0/+2
|
* bpo-32996: Enhancements to What's New based on feedback (GH-7988)Elvis Pranskevichus2018-06-281-21/+29
|
* bpo-33842: Remove tarfile.filemode (GH-7661)INADA Naoki2018-06-281-0/+2
|
* bpo-33958: Doc: Remove unused variable in example (GH-7927)Srinivas Reddy Thatiparthy (శ్రీనివాస్ రెడ్డి తాటిపర్తి)2018-06-281-1/+1
|
* Forward port 3.7.0 final changesNed Deily2018-06-273-4/+4
|
* bpo-25007: Add copy protocol support to zlib compressors and decompressors ↵Zackery Spytz2018-06-271-0/+10
| | | | (GH-7940)
* use rich markup for PEP reference (GH-7939)Behzad B. Mokhtari2018-06-271-1/+1
| | | it's better to refer to PEP with `pep` role in reStructuredText. It also links to the PEP page.
* bpo-33957: Doc: Use better wording (GH-7912)Srinivas Reddy Thatiparthy (శ్రీనివాస్ రెడ్డి తాటిపర్తి)2018-06-261-1/+1
|
* bpo-33573: docs to suggest median() alternatives for non-numeric data (GH-7587)Tal Einat2018-06-251-0/+4
|
* bpo-33952: Fix typo in str.upper() documentation (GH-7898)Andrés Delfino2018-06-251-1/+1
|
* bpo-33943: Add references in the docs for logging.basicConfig (GH-7858)Andrés Delfino2018-06-252-19/+27
| | | | Adds references to info about file modes, `time.strftime()`, string formatting syntaxes, and logging levels.
* bpo-33897: Add a 'force' keyword argument to logging.basicConfig(). (GH-7873)Dong-hee Na2018-06-251-1/+10
|
* [master] bpo-33885: Replace "hook function" with "callable" (GH-7765) (#7886)Andrés Delfino2018-06-241-2/+2
| | | | | (cherry picked from commit c45cb479074b5d25f0d382d3109f527520a9f03c) Co-authored-by: Andrés Delfino <adelfino@gmail.com>
* bpo-33887: Add TOC to Design and History FAQ(GH-7766)Andrés Delfino2018-06-231-0/+5
|
* bpo-33877: Remove UNIX qualification for running complete programs (GH-7744)Andrés Delfino2018-06-221-5/+6
| | | The statement is true for Windows (and macOS) also.
* Clarified the tempfile.tempdir documentation (GH-7829)Srinivas Reddy Thatiparthy (శ్రీనివాస్ రెడ్డి తాటిపర్తి)2018-06-211-1/+1
|
* bpo-33499: PYTHONPYCACHEPREFIX What's New entry (GH-7749)Nick Coghlan2018-06-201-0/+14
| | | | Initial What's New in Python 3.8 entry for `PYTHONPYCACHEPREFIX`.
* bpo-33671 / shutil.copyfile: use memoryview() with dynamic size on Windows ↵Giampaolo Rodola2018-06-192-12/+22
| | | | | | | | | | (#7681) bpo-33671 * use memoryview() with size == file size on Windows, see https://github.com/python/cpython/pull/7160#discussion_r195405230 * release intermediate (sliced) memoryview immediately * replace "OSX" occurrences with "macOS" * add some unittests for copyfileobj()
* bpo-33843: Remove deprecated stuff in cgi module (GH-7662)INADA Naoki2018-06-192-26/+4
|
* bpo-33866: enum: Stop using OrderedDict (GH-7698)INADA Naoki2018-06-181-2/+2
|
* bpo-33892: Doc: Use gender neutral words (GH-7770)Andrés Delfino2018-06-188-20/+20
|
* bpo-33859: Fix spelling mistakes in docs. (GH-7691)Xtreak2018-06-167-7/+7
|