summaryrefslogtreecommitdiffstats
path: root/Doc/library/functions.rst
Commit message (Expand)AuthorAgeFilesLines
* [3.11] gh-114070: correct the specification of ``digit`` in the float() docs ...Miss Islington (bot)2024-01-151-5/+4
* [3.11] gh-101100: Fix Sphinx nitpicks in `library/functions.rst` (GH-112669) ...Miss Islington (bot)2023-12-041-46/+67
* [3.11] gh-59254: mention in open() doc that line buffering is for writing (GH...Miss Islington (bot)2023-11-241-1/+1
* [3.11] GH-101100: Fix reference warnings for ``__getitem__`` (GH-110118) (#11...Miss Islington (bot)2023-10-191-2/+2
* [3.11] gh-110631: Fix reST indentation in `Doc/library` (GH-110685) (#110737)Ezio Melotti2023-10-111-15/+15
* [3.11] gh-109634: Use :samp: role (GH-109635) (GH-109778)Serhiy Storchaka2023-09-291-1/+1
* [3.11] gh-107755: Document the correct default value of slice step (GH-107756...Miss Islington (bot)2023-09-071-1/+1
* [3.11] gh-107662: Switch 'any' and 'anext' in functions.rst (GH-107663) (#107...Miss Islington (bot)2023-08-051-2/+2
* [3.11] gh-106892: Use roles :data: and :const: for referencing module variabl...Serhiy Storchaka2023-07-211-1/+1
* [3.11] gh-101880: add link to object.__hash__() in hash() builtin documentati...Miss Islington (bot)2023-07-081-1/+1
* [3.11] gh-101100: Docs: Fix references to several numeric dunders (GH-106278)...Miss Islington (bot)2023-06-301-16/+16
* [3.11] Add a mention of PYTHONBREAKPOINT to breakpoint() docs (GH-104430) (#1...Miss Islington (bot)2023-05-131-0/+7
* [3.11] GH-97950: Use new-style index directive ('builtin') (GH-104164) (#104221)Miss Islington (bot)2023-05-061-1/+1
* [3.11] GH-97950: Use new-style index directive ('statement') (GH-104162) (#10...Miss Islington (bot)2023-05-041-1/+1
* [3.11] GH-97950: Use new-style index directive ('object') (GH-104158) (#104159)Miss Islington (bot)2023-05-041-1/+1
* [3.11] GH-97950: Use new-style index directive ('module') (GH-103996) (#104154)Adam Turner2023-05-041-2/+2
* gh-87864: Use correct function definition syntax in the docs (GH-103312)Miss Islington (bot)2023-04-111-1/+1
* gh-81762: Clarify and simplify description of print's flush param (GH-103264)Miss Islington (bot)2023-04-051-2/+3
* gh-102105 Fix wording in filterfalse/quantify/filter (GH-102189)Miss Islington (bot)2023-02-241-2/+2
* [3.11] Sync-up parameter name in equivalent code snippet of `enumerate` (GH-1...Miss Islington (bot)2023-01-151-2/+2
* gh-100428: Make int documentation more accurate (GH-100436)Miss Islington (bot)2023-01-021-11/+15
* gh-100546: Remove incorrect positional-only marker from eval (GH-100547)Miss Islington (bot)2023-01-011-1/+1
* GH-100101: Clarify documentation of zip's strict option (GH-100103)Miss Islington (bot)2022-12-281-4/+14
* gh-100428: Make float documentation more accurate (GH-100437)Miss Islington (bot)2022-12-241-9/+12
* Doc: Make functions.html readable again. (GH-99476)Miss Islington (bot)2022-11-191-60/+60
* gh-94286 Fix documentation of print default param (GH-94297)Miss Islington (bot)2022-11-061-1/+1
* gh-91485: Doc: Using Python syntax to document builtin Python functions. (GH-...Miss Islington (bot)2022-10-151-65/+84
* gh-64921: Clarify wording for open()'s newline arg (GH-96171)Miss Islington (bot)2022-10-071-2/+2
* [3.11] gh-96197: Fix expression when :func:`sys.breakpointhook is missing (gh...Miss Islington (bot)2022-10-051-1/+1
* gh-96397: Document that attributes need not be identifiers (GH-96454)Miss Islington (bot)2022-09-291-0/+8
* [3.11] gh-95778: CVE-2020-10735: Prevent DoS by very large int() (#96500)Gregory P. Smith2022-09-021-0/+7
* gh-96197: Define the behavior of repr if sys.displayhook is lost (gh-96242)Miss Islington (bot)2022-08-261-0/+2
* gh-96197: Define the behavior of breakpoint if sys.breakpointhook is lost (gh...Miss Islington (bot)2022-08-241-0/+2
* gh-86986: Drop compatibility support for Sphinx 2 (GH-93737)Miss Islington (bot)2022-06-211-1/+1
* gh-71223: Improve rendering of some references in the docs (GH-93041)Miss Islington (bot)2022-05-211-0/+1
* bpo-39229: fix formatting in library/functions.rst (GH-17857)Miss Islington (bot)2022-05-081-2/+2
* gh-92203: Add closure support to exec(). (#92204)larryhastings2022-05-061-1/+9
* GH-89519: Deprecate classmethod descriptor chaining (#92379)Raymond Hettinger2022-05-061-0/+5
* gh-81488: Add recursive wording for issubclass docs (#92087)slateny2022-05-011-1/+2
* gh-91603: Speed up isinstance/issubclass on union types (GH-91631)Yurii Karabas2022-04-281-1/+2
* gh-91156: Use `locale.getencoding()` instead of getpreferredencoding (GH-91732)Inada Naoki2022-04-221-6/+5
* bpo-30718: Add information about text buffering (GH-32351)slateny2022-04-201-1/+5
* bpo-44977: Deprecate delegation of int to __trunc__ (GH-31031)Zackery Spytz2022-02-031-0/+3
* bpo-43698: do not use `...` as argument name in docs (GH-30502)Nikita Sobolev2022-01-261-1/+1
* Add Positional only arguments forward slash (/) to sorted() function in Built...Vivek Vashist2021-12-151-1/+1
* bpo-19737: Improved the documentation for globals (GH-29823)1809092021-12-111-3/+3
* bpo-45250: fix docs regarding `__iter__` and iterators being inconsistently r...Brett Cannon2021-11-201-6/+3
* [doc] Link to section File input (GH-28941)Andre Delfino2021-11-021-1/+1
* bpo-44344: Document that pow can return a complex number for non-complex inpu...Mark Dickinson2021-10-211-1/+4
* [docs] Improve the markup of powers (GH-28598)Serhiy Storchaka2021-09-281-2/+2