summaryrefslogtreecommitdiffstats
path: root/Doc/library/functions.rst
Commit message (Collapse)AuthorAgeFilesLines
* Closes #25910: fix dead and permanently redirected links in the docs. Thanks ↵Georg Brandl2016-02-261-1/+1
| | | | to SilentGhost for the patch.
* Issue #25432: Explain isinstance behaviour when type is a tuple.Terry Jan Reedy2015-10-281-5/+4
|
* Issue #20769: Improve reload() docs. Patch by Dorian Pula.Robert Collins2015-08-041-4/+5
|
* Make expression legal python by adding '1'.Terry Jan Reedy2015-05-231-1/+1
|
* #24081: Remove obsolete caveat from import docs.R David Murray2015-05-021-6/+0
| | | | | Per Eric Snow's research, this changed in Python 2.4 in changeset 331e60d8ce, but these docs were not updated.
* #23512: list non-essential built-in functions after the table. Patch by ↵Ezio Melotti2015-03-241-4/+9
| | | | Carlo Beccarini.
* Use internal links where possibleRaymond Hettinger2014-11-101-2/+1
|
* #22613: fix several factual errors in builtin docs (thanks Jacques Ducasse)Georg Brandl2014-10-311-1/+4
|
* Use https:// URLs when referring to python.org hosts.Georg Brandl2014-10-291-1/+1
|
* #22237: document that sorted() is guaranteed to be stable. Initial patch by ↵Ezio Melotti2014-10-281-0/+5
| | | | Martin Panter.
* Issue #22575: Revise bytearray entry for 2.7.Terry Jan Reedy2014-10-101-3/+3
|
* Document builtin classes as such, not functions.Georg Brandl2014-10-061-33/+36
|
* Issue #22174: Clean-up grammar and ambiguities in property() docs.Raymond Hettinger2014-08-101-7/+13
|
* Fix minor typo in round docs. Reported by Scott Hinton on docs@.Zachary Ware2014-07-221-1/+1
|
* Issue #19362: Tweek len() doc and docstring to expand the indicated range ofTerry Jan Reedy2014-06-161-1/+2
| | | | arguments. Original patch by Gareth Rees.
* Close #16665: improve documentation for hex(). Patch by Jessica McKellar.Antoine Pitrou2014-03-161-2/+15
|
* Define what “updating” means in docs for open (#19627).Éric Araujo2014-03-121-2/+2
| | | | Original patch by Lina Clark.
* Issue #19795: Improved markup of True/False constants.Serhiy Storchaka2013-11-291-3/+3
|
* Issue #19190: Improve cross-references in builtin types and functions ↵Serhiy Storchaka2013-10-091-21/+22
| | | | documentation.
* document that various functions that parse from source will interpret things ↵Benjamin Peterson2013-09-011-5/+7
| | | | as latin-1 (closes #18870)
* Issue #17418: specify that buffer sizes are bytes.Terry Jan Reedy2013-03-161-3/+3
|
* #14489: fix wrong link.Ezio Melotti2013-03-101-1/+3
|
* #17035: use new style classes in classmethod/staticmethod examples. Patch ↵Ezio Melotti2013-02-221-4/+6
| | | | by Berker Peksag.
* #16503: clarify "apply" docs.Ezio Melotti2012-11-181-1/+2
|
* Link to "XRange Type" section in xrange() built-in function documentation.Chris Jerdonek2012-11-141-2/+4
|
* Backport from 3.2: adjust set and frozenset function docs (issue #16436).Chris Jerdonek2012-11-101-8/+12
|
* #16210: combine the two type() docs. Patch by Pete Sevander.Ezio Melotti2012-10-241-17/+12
|
* Issue #16206: Backport dict documentation improvements from 3.2.Chris Jerdonek2012-10-131-5/+8
| | | | | | Improve the documentation of the dict constructor. This change includes replacing the single-line signature documentation with a more complete multiple-line signature.
* Issue #14783: Backport changes from 3.2.Chris Jerdonek2012-10-081-3/+5
|
* Close #16036: Backport 3.x documentation improvement.Chris Jerdonek2012-10-011-14/+20
| | | | See changeset 6ccb04c4cbae for the corresponding 3.3 change.
* Close issue #16077: fix code example in documentation of reduce() built-in ↵Chris Jerdonek2012-09-291-1/+1
| | | | (from docs@).
* Issue 15985: fix round argument names in documentation. Thanks Chris Jerdonek.Mark Dickinson2012-09-201-7/+8
|
* #15831: avoid using 3.x syntax for keyword-only args.Ezio Melotti2012-09-151-1/+1
|
* #15831: document multiple signatures on different lines. Patch by Chris ↵Ezio Melotti2012-09-141-14/+27
| | | | Jerdonek.
* #15543: reflow paragraphs.R David Murray2012-08-151-10/+9
|
* #15543: glossary entry for and 'universal newlines', and links to it.R David Murray2012-08-151-2/+6
| | | | Patch by Chris Jerdonek.
* make documented file() kw names and actual ones agree (closes #15572)Benjamin Peterson2012-08-071-1/+1
| | | | Patch by Daniel Ellis.
* Closes #9254: backport __import__ docstring/doc mentions of importlib.R David Murray2012-07-181-10/+3
| | | | Patch by Éric Araujo.
* Issue #13557: Clarify effect of giving two different namespaces to exec orTerry Jan Reedy2012-07-081-1/+4
| | | | execfile().
* #14804: Remove [] around optional arguments with default valuesHynek Schlawack2012-05-221-2/+2
| | | | | Mostly just mechanical removal of []. In some rare cases I've pulled the default value up into the argument list.
* backport 7a05cb3beddf to 2.7Sandro Tosi2012-05-071-6/+19
|
* Closes #14489: correct link target.Georg Brandl2012-04-051-1/+1
|
* Closes #9574: Note that complex constructor doesn't allow whitespace around ↵Mark Dickinson2012-03-101-0/+7
| | | | central operator.
* Clean-up docs for input()Raymond Hettinger2012-02-021-6/+3
|
* Add pure python equivalent code for reduce().Raymond Hettinger2012-02-021-1/+13
|
* Move a space.Ezio Melotti2012-01-211-2/+2
|
* update to new C roles and directivesSandro Tosi2012-01-141-4/+4
|
* #11633 about buffering of printTerry Jan Reedy2012-01-141-1/+3
|
* Clarify that vars() doesn't place extra restrictions on __dict__.Raymond Hettinger2012-01-061-7/+9
|
* Add missing versionadded (fixes #12392)Éric Araujo2011-11-051-0/+2
|