| Commit message (Expand) | Author | Age | Files | Lines |
* | bpo-42840: Document providing kwargs to type. (GH-24173) | Miss Islington (bot) | 2021-03-01 | 1 | -1/+8 |
|
|
* | bpo-16781: In 'exec' doc, add 'nonlocal' to 'yield' and 'return' (GH-2446) | Miss Islington (bot) | 2021-02-07 | 1 | -1/+2 |
|
|
* | bpo-40304: Correct type(name, bases, dict) doc (GH-19553) | Miss Islington (bot) | 2021-01-22 | 1 | -8/+9 |
|
|
* | Revert "[3.8] [doc] Fix erroneous backslashes in signatures and names (GH-236... | Julien Palard | 2021-01-04 | 1 | -1/+1 |
|
|
* | [3.8] [doc] Fix erroneous backslashes in signatures and names (GH-23658) (GH-... | Andre Delfino | 2020-12-22 | 1 | -1/+1 |
|
|
* | Add a link to buffer protocol in bytearray() doc (GH-22675) | Miss Skeleton (bot) | 2020-10-26 | 1 | -2/+2 |
|
|
* | bpo-41192: Add documentation of undocumented audit events (GH-22832) | Miss Skeleton (bot) | 2020-10-20 | 1 | -0/+2 |
|
|
* | bpo-41762: Fix usage of productionlist markup in the doc (GH-22281) (GH-22300) | Miss Islington (bot) | 2020-09-18 | 1 | -1/+1 |
|
|
* | Document vars behavior when __dict__ is missing (GH-21466) (GH-21941) | Miss Islington (bot) | 2020-08-22 | 1 | -0/+3 |
|
|
* | Doc: Add a link to tutorial page from `open()` doc (GH-21737) | Miss Islington (bot) | 2020-08-08 | 1 | -1/+2 |
|
|
* | Fix "versionchanged" for pow named arguments (GH-19042) (GH-19079) | Miss Islington (bot) | 2020-03-19 | 1 | -1/+1 |
|
|
* | bpo-34118: memoryview, range, and tuple are classes (GH-17761) | Miss Islington (bot) | 2019-12-30 | 1 | -3/+3 |
|
|
* | Update functions.rst (GH-16468) | Miss Islington (bot) | 2019-11-21 | 1 | -2/+2 |
|
|
* | [3.8] bpo-38738: Fix formatting of True and False. (GH-17083) (GH-17125) | Serhiy Storchaka | 2019-11-12 | 1 | -6/+6 |
|
|
* | bpo-37330: open(): "U" mode is removed in Python 3.9 (GH-16972) | Victor Stinner | 2019-10-29 | 1 | -1/+1 |
|
|
* | bpo-38255: super() can search attributes as well as methods (GH-16368) (GH-16... | Miss Islington (bot) | 2019-09-25 | 1 | -0/+4 |
|
|
* | bpo-38237: Let pow() support keyword arguments (GH-16302) (GH-16320) | Miss Islington (bot) | 2019-09-21 | 1 | -9/+15 |
|
|
* | bpo-25810: Clarify eval() docs, it does not keywords (GH-15173) | Miss Islington (bot) | 2019-09-11 | 1 | -1/+1 |
|
|
* | Correct minor grammatical mistake in open docs (GH-15865) | Miss Islington (bot) | 2019-09-10 | 1 | -2/+2 |
|
|
* | Note regarding + mode truncation applies to both text and binary mode (GH-113... | Miss Islington (bot) | 2019-09-10 | 1 | -3/+3 |
|
|
* | bpo-23674: Clarify ambiguities in super() docs (GH-15564) (GH-15586) | Miss Islington (bot) | 2019-08-29 | 1 | -3/+10 |
|
|
* | bpo-37646: Document that eval() cannot access nested scopes (GH-15117) (GH-1... | Miss Islington (bot) | 2019-08-07 | 1 | -6/+10 |
|
|
* | bpo-37390: Add audit event table to documentations (GH-14406) | Miss Islington (bot) | 2019-06-27 | 1 | -7/+7 |
|
|
* | bpo-37363: Add audit events for a range of modules (GH-14301) | Miss Islington (bot) | 2019-06-24 | 1 | -6/+8 |
|
|
* | bpo-37134: Use PEP570 syntax for sum() (GH-13851) | Miss Islington (bot) | 2019-06-05 | 1 | -3/+3 |
|
|
* | bpo-36027: Extend three-argument pow to negative second argument (GH-13266) | Mark Dickinson | 2019-06-02 | 1 | -3/+18 |
|
|
* | bpo-20092. Use __index__ in constructors of int, float and complex. (GH-13108) | Serhiy Storchaka | 2019-06-01 | 1 | -2/+19 |
|
|
* | bpo-31968: Documentation -- add clarification on the globals dict for exec() ... | Anthony Shaw | 2019-06-01 | 1 | -1/+2 |
|
|
* | bpo-36842: Implement PEP 578 (GH-12613) | Steve Dower | 2019-05-23 | 1 | -0/+31 |
|
|
* | bpo-34616: Add PyCF_ALLOW_TOP_LEVEL_AWAIT to allow top-level await (GH-13148) | Matthias Bussonnier | 2019-05-21 | 1 | -0/+10 |
|
|
* | bpo-32413: Add documentation that at the module level, locals(), globals() ar... | Srinivas Reddy Thatiparthy (శ్రీనివాస్ రెడ్డి తాటిపర్తి) | 2019-04-02 | 1 | -1/+2 |
|
|
* | bpo-34085: Improve wording on classmethod/staticmethod (#8228) | Andre Delfino | 2019-03-25 | 1 | -12/+10 |
|
|
* | bpo-21314: Add a FAQ entry about positional only parameters (GH-10641) | Lysandros Nikolaou | 2019-03-10 | 1 | -0/+5 |
|
|
* | Doc: fix example for iter() function. (GH-11959) | Cristian Ciupitu | 2019-02-21 | 1 | -1/+1 |
|
|
* | Clarify U-mode deprecation in open() (GH-11646) | Nick Coghlan | 2019-01-27 | 1 | -1/+8 |
|
|
* | bpo-34764: improve docs example of iter() with sentinel value (GH-11222) | Chris Rands | 2018-12-24 | 1 | -7/+8 |
|
|
* | bpo-35506: Remove redundant and incorrect links from keywords. (GH-11174) | Serhiy Storchaka | 2018-12-19 | 1 | -1/+1 |
|
|
* | fix dangling keyfunc examples in documentation of heapq and sorted (#1432) | Wolfgang Maier | 2018-10-15 | 1 | -2/+2 |
|
|
* | bpo-34637: Make the *start* argument for *sum()* visible as a keyword argumen... | Raymond Hettinger | 2018-09-12 | 1 | -0/+3 |
|
|
* | bpo-34434: Update doc for bool(), float() and int() arguments (GH-8834) | Louis Sautier | 2018-08-27 | 1 | -1/+9 |
|
|
* | bpo-22057: Clarify eval() documentation (GH-8812) | Berker Peksag | 2018-08-19 | 1 | -2/+4 |
|
|
* | bpo-34149: Behavior of the min/max with key=None (GH-8328) | Alexander Marshalov | 2018-07-24 | 1 | -0/+6 |
|
|
* | Doc: Point to Simple statements section instead of PEP (GH-8238) | Andrés Delfino | 2018-07-11 | 1 | -2/+2 |
|
|
* | classify abs() argument type (GH-8103) | Windson yang | 2018-07-05 | 1 | -1/+2 |
|
|
* | Fix the indentation in the documentation of bin() and hash() (GH-7998) | Andrés Delfino | 2018-06-29 | 1 | -5/+5 |
|
|
* | bpo-33943: Add references in the docs for logging.basicConfig (GH-7858) | Andrés Delfino | 2018-06-25 | 1 | -0/+5 |
|
|
* | bpo-30940: Updating round() docs. (GH-6342) | Lisa Roach | 2018-05-20 | 1 | -4/+5 |
|
|
* | 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 |
|
|