Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | bpo-26701: Tweak the documentation for special methods in int(). (GH-6741) | Serhiy Storchaka | 2018-05-10 | 1 | -8/+6 |
| | |||||
* | Fix superfluous if in documentation. (GH-6728) | Julien Palard | 2018-05-09 | 1 | -1/+1 |
| | |||||
* | bpo-26701: Add documentation for __trunc__ (GH-6022) | Eric Appelt | 2018-03-10 | 1 | -2/+5 |
| | | | | `int` fails back to `__trunc__` is `__int__` isn't defined, so cover that in the docs. | ||||
* | Warn that compile() can crash when compiling to an AST object (GH-6043) | Brett Cannon | 2018-03-09 | 1 | -0/+6 |
| | |||||
* | Fix minor markup typo (#5407) | cocoatomo | 2018-01-29 | 1 | -1/+1 |
| | |||||
* | bpo-31567: more decorator markup fixes in docs (GH-3959) (#3966) | Éric Araujo | 2017-10-12 | 1 | -2/+11 |
| | |||||
* | bpo-31567: add or fix decorator markup in docs (#3959) | Daisuke Miyakawa | 2017-10-12 | 1 | -4/+4 |
| | |||||
* | PEP 553 built-in breakpoint() function (bpo-31353) (#3355) | Barry Warsaw | 2017-10-05 | 1 | -17/+31 |
| | | | Implement PEP 553, built-in breakpoint() with support from sys.breakpointhook(), along with documentation and tests. Closes bpo-31353 | ||||
* | Doc that 'sorted' args are keyword-only, fix 'reverse' default (#2706) | Łukasz Rogalski | 2017-07-14 | 1 | -1/+1 |
| | |||||
* | bpo-26506: hex() documentation: mention %x % int (GH-2525) | Manvisha Kodali | 2017-07-06 | 1 | -10/+52 |
| | |||||
* | bpo-27200: Fix several doctests (GH-604) | Marco Buttu | 2017-04-27 | 1 | -1/+1 |
| | |||||
* | bpo-30052: Link `bytes` & `bytearray` to stdtypes not functions (GH-1271) | csabella | 2017-04-26 | 1 | -3/+6 |
| | | | | | | | | | | Builtin container types have two potential link targets in the docs: - their entry in the list of builtin callables - their type documentation This change brings `bytes` and `bytearray` into line with other container types by having cross-references default to linking to their type documentation, rather than their builtin callable entry. | ||||
* | Fix a typo in Doc/library/functions.rst (GH-1117) | Joshua Diaddigo | 2017-04-13 | 1 | -1/+1 |
| | | | Replace `For object's ... ` with `For objects ...` | ||||
* | bpo-29791: Clarify that flush is keyword-only argument (#1093) | Berker Peksag | 2017-04-13 | 1 | -1/+1 |
| | | | Reported by Lucio Ricardo Montero Valenzuela. | ||||
* | bpo-29677: DOC: clarify documentation for `round` (GH-877) | csabella | 2017-03-29 | 1 | -3/+6 |
| | |||||
* | bpo-29677: DOC: clarify documentation for `round` (#357) | Gerrit Holl | 2017-03-27 | 1 | -1/+2 |
| | | | | | | | | | | * DOC: clarify documentation for `round` Clarified that `round` can take a negative value for *ndigits*. * DOC: remove trailing whitespace in previous commit remove trailing whitespace in previous commit | ||||
* | bpo-29892: Fix wrong markup on doc-lib-functions (GH-802) | NAKAMURA Osamu | 2017-03-25 | 1 | -1/+1 |
| | |||||
* | Issue #28763: Use double hyphens (rendered as en-dashes) in numerical ranges | Serhiy Storchaka | 2016-11-26 | 1 | -1/+1 |
|\ | | | | | | | in the documentation. | ||||
| * | Issue #28763: Use double hyphens (rendered as en-dashes) in numerical ranges | Serhiy Storchaka | 2016-11-26 | 1 | -1/+1 |
| | | | | | | | | in the documentation. | ||||
* | | Merge doc fixups from 3.5 | Martin Panter | 2016-11-21 | 1 | -1/+1 |
|\ \ | |/ | |||||
| * | Change double hyphens (en dashes) to em (longer) dashes | Martin Panter | 2016-11-21 | 1 | -1/+1 |
| | | |||||
* | | Issue #26331: Implement the parsing part of PEP 515. | Brett Cannon | 2016-09-09 | 1 | -3/+13 |
| | | | | | | | | Thanks to Georg Brandl for the patch. | ||||
* | | Issue #1602: Windows console doesn't input or print Unicode (PEP 528) | Steve Dower | 2016-08-31 | 1 | -16/+24 |
| | | | | | | | | Closes #17602: Adds a readline implementation for the Windows console | ||||
* | | Issue #26027, #27524: Document the support for path-like objects in os and ↵ | Brett Cannon | 2016-09-06 | 1 | -5/+5 |
| | | | | | | | | | | | | os.path. This completes PEP 519. | ||||
* | | Merge | Raymond Hettinger | 2016-09-04 | 1 | -2/+2 |
|\ \ | |/ | |||||
| * | Issue 27936: Update doc for round() to indicate that None is an allowable ↵ | Raymond Hettinger | 2016-09-04 | 1 | -2/+2 |
| | | | | | | | | argument. | ||||
* | | Issue #27157: Make only type() itself accept the one-argument form | Berker Peksag | 2016-08-19 | 1 | -0/+3 |
| | | | | | | | | Patch by Eryk Sun and Emanuel Barry. | ||||
* | | Issue #26547: Merge from 3.5 | Berker Peksag | 2016-06-24 | 1 | -1/+1 |
|\ \ | |/ | |||||
| * | Issue #26547: Remove outdated term dictproxy from vars() documentation | Berker Peksag | 2016-06-24 | 1 | -1/+1 |
| | | | | | | | | | | | | | | dictproxy was used in Python 2 and it was renamed to mappingproxy in Python 3.3. Patch by Julien. | ||||
* | | Issue #24314: Merge doc links from 3.5 | Martin Panter | 2016-06-18 | 1 | -5/+5 |
|\ \ | |/ | |||||
| * | Issue #24314: Fix doc links for general attributes like __name__, __dict__ | Martin Panter | 2016-06-18 | 1 | -5/+5 |
| | | |||||
* | | Issue #27182: Document os.PathLike. | Brett Cannon | 2016-06-09 | 1 | -0/+3 |
| | | | | | | | | Part of PEP 519. | ||||
* | | issue27186: add open/io.open; patch by Jelle Zijlstra | Ethan Furman | 2016-06-04 | 1 | -5/+5 |
|/ | |||||
* | #26829: Clarify that namespace is copied to a new __dict__ in instance creation. | R David Murray | 2016-06-03 | 1 | -2/+3 |
| | | | | Patch by Emily Morehouse. | ||||
* | Add a versionchanged directive to document addition of the new 'namereplace' ↵ | Berker Peksag | 2016-04-11 | 1 | -0/+2 |
| | | | | | | error handler. Reported by Robert on docs@p.o. | ||||
* | Issue #26525: Change chr example to match change in ord example. | Terry Jan Reedy | 2016-03-23 | 1 | -1/+1 |
| | |||||
* | Issue #26525: Change ord example from nu to more easily recognized Euro sign. | Terry Jan Reedy | 2016-03-21 | 1 | -2/+2 |
| | |||||
* | Closes #25910: fix dead and permanently redirected links in the docs. Thanks ↵ | Georg Brandl | 2016-02-26 | 1 | -1/+1 |
| | | | | to SilentGhost for the patch. | ||||
* | Issue #26401: Fix compile() documentation | Berker Peksag | 2016-02-21 | 1 | -1/+5 |
| | | | | | | | After 25032ec29315, compile() will raise a ValueError if source contains null bytes. Patch by SilentGhost. | ||||
* | merge from 3.4 | Senthil Kumaran | 2016-01-02 | 1 | -2/+1 |
|\ | | | | | | | Issue25917 : Fix howto links in docs. Point the reference documentation instead of wiki. | ||||
| * | Issue25917 : Fix howto links in docs. Point the reference documentation ↵ | Senthil Kumaran | 2016-01-02 | 1 | -2/+1 |
| | | | | | | | | instead of wiki. | ||||
* | | Issue #25523: Merge "a" to "an" fixes from 3.4 into 3.5 | Martin Panter | 2015-11-02 | 1 | -3/+3 |
|\ \ | |/ | |||||
| * | Issue #25523: Correct "a" article to "an" article | Martin Panter | 2015-11-02 | 1 | -3/+3 |
| | | | | | | | | | | | | This changes the main documentation, doc strings, source code comments, and a couple error messages in the test suite. In some cases the word was removed or edited some other way to fix the grammar. | ||||
* | | Merge with 3.4 | Terry Jan Reedy | 2015-10-28 | 1 | -4/+4 |
|\ \ | |/ | |||||
| * | Issue #25432: Explain isinstance behaviour when type is a tuple. | Terry Jan Reedy | 2015-10-28 | 1 | -4/+4 |
| | | |||||
* | | Merge with 3.4 | Terry Jan Reedy | 2015-05-23 | 1 | -1/+1 |
|\ \ | |/ | |||||
| * | Make expression legal python by adding '1'. | Terry Jan Reedy | 2015-05-23 | 1 | -1/+1 |
| | | |||||
| * | Issue #23181: More "codepoint" -> "code point". | Serhiy Storchaka | 2015-01-18 | 1 | -1/+1 |
| | | |||||
* | | Issue #24064: Docuement that oroperty docstrings are now writeable. | Raymond Hettinger | 2015-05-15 | 1 | -0/+3 |
| | | |||||
* | | Issue #23695: Explain the zip() example for clustering a data series into ↵ | Raymond Hettinger | 2015-05-13 | 1 | -1/+3 |
| | | | | | | | | n-length groups. |