summaryrefslogtreecommitdiffstats
path: root/Doc/library/functions.rst
Commit message (Collapse)AuthorAgeFilesLines
* Add a versionchanged directive to document addition of the new 'namereplace' ↵Berker Peksag2016-04-111-0/+2
| | | | | | error handler. Reported by Robert on docs@p.o.
* Issue #26525: Change chr example to match change in ord example.Terry Jan Reedy2016-03-231-1/+1
|
* Issue #26525: Change ord example from nu to more easily recognized Euro sign.Terry Jan Reedy2016-03-211-2/+2
|
* Closes #25910: fix dead and permanently redirected links in the docs. Thanks ↵Georg Brandl2016-02-261-1/+1
| | | | to SilentGhost for the patch.
* Issue #26401: Fix compile() documentationBerker Peksag2016-02-211-1/+5
| | | | | | | After 25032ec29315, compile() will raise a ValueError if source contains null bytes. Patch by SilentGhost.
* merge from 3.4Senthil Kumaran2016-01-021-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 Kumaran2016-01-021-2/+1
| | | | | | | | instead of wiki.
* | Issue #25523: Merge "a" to "an" fixes from 3.4 into 3.5Martin Panter2015-11-021-3/+3
|\ \ | |/
| * Issue #25523: Correct "a" article to "an" articleMartin Panter2015-11-021-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.4Terry Jan Reedy2015-10-281-4/+4
|\ \ | |/
| * Issue #25432: Explain isinstance behaviour when type is a tuple.Terry Jan Reedy2015-10-281-4/+4
| |
* | Merge with 3.4Terry Jan Reedy2015-05-231-1/+1
|\ \ | |/
| * Make expression legal python by adding '1'.Terry Jan Reedy2015-05-231-1/+1
| |
| * Issue #23181: More "codepoint" -> "code point".Serhiy Storchaka2015-01-181-1/+1
| |
* | Issue #24064: Docuement that oroperty docstrings are now writeable.Raymond Hettinger2015-05-151-0/+3
| |
* | Issue #23695: Explain the zip() example for clustering a data series into ↵Raymond Hettinger2015-05-131-1/+3
| | | | | | | | n-length groups.
* | Issue 19933: Provide default argument for ndigits in round. Patch by ↵Steve Dower2015-04-151-2/+2
| | | | | | | | Vajrasky Kok.
* | Issue #23618: Document EINTR changes in socket documentationVictor Stinner2015-04-021-1/+1
| |
* | Issue #23648: Document the PEP 475 in the "Porting to Python 3.5" section andVictor Stinner2015-03-261-0/+5
| | | | | | | | add a version changed note in modified functions.
* | change Σ to ν for obscure joke reasonsBenjamin Peterson2015-03-241-2/+2
| | | | | | | | https://twitter.com/ncoghlan_dev/status/579173053793353728
* | Issue #22286: The "backslashreplace" error handlers now works withSerhiy Storchaka2015-01-251-3/+2
| | | | | | | | decoding and translating.
* | Closes #23181: codepoint -> code pointGeorg Brandl2015-01-141-1/+1
| |
* | Merge issue 19548 changes from 3.4Nick Coghlan2015-01-061-3/+5
|\ \ | |/
| * Issue 19548: update codecs module documentationNick Coghlan2015-01-061-3/+5
| | | | | | | | | | | | | | | | - clarified the distinction between text encodings and other codecs - clarified relationship with builtin open and the io module - consolidated documentation of error handlers into one section - clarified type constraints of some behaviours - added tests for some of the new statements in the docs
* | Issue #19676: Added the "namereplace" error handler.Serhiy Storchaka2014-11-251-0/+3
| |
* | merge with 3.4Georg Brandl2014-10-311-2/+5
|\ \ | |/
| * #22613: fix several factual errors in builtin docs (thanks Jacques Ducasse)Georg Brandl2014-10-311-2/+5
| |
* | Merge with 3.4Georg Brandl2014-10-291-1/+1
|\ \ | |/
| * Use https:// URLs when referring to python.org hosts.Georg Brandl2014-10-291-1/+1
| |
* | #22237: merge with 3.4.Ezio Melotti2014-10-281-0/+5
|\ \ | |/
| * #22237: document that sorted() is guaranteed to be stable. Initial patch by ↵Ezio Melotti2014-10-281-0/+5
| | | | | | | | Martin Panter.
* | Merge 3.4 (open doc)Victor Stinner2014-10-221-0/+1
|\ \ | |/
| * Issue #22695: Fix syntax of open() docVictor Stinner2014-10-221-0/+1
| |
* | Issue #17401: document closefd in io.FileIO docs and add to reprRobert Collins2014-10-181-2/+2
| | | | | | | | | | | | | | | | | | | | closefd was documented in the open docs but not the matching FileIO class documented. Further, closefd, part of the core state for the object was not shown. In review it was noted that the open docs are a little confusing about the interaction between closefd and paths, so tweaked them at the same time.
* | merge with 3.4Georg Brandl2014-10-061-41/+41
|\ \ | |/
| * Document builtin classes as such, not functions.Georg Brandl2014-10-061-41/+41
| |
* | Merge with 3.4Terry Jan Reedy2014-10-011-5/+8
|\ \ | |/
| * Issue 22492: Be explicit that print does not support binary mode files.Terry Jan Reedy2014-10-011-5/+8
| | | | | | | | Original patch by Georg Brandl.
* | sigma actually works in latex...Benjamin Peterson2014-09-011-3/+3
| |
* | try to pick a unicode char that latex understandsBenjamin Peterson2014-09-011-1/+1
| |
* | a more universal unicode char exampleBenjamin Peterson2014-09-011-2/+1
| |
* | Clarify ord() and chr() documentationNick Coghlan2014-08-171-9/+10
|/
* Issue #22174: Clean-up grammar and ambiguities in property() docs.Raymond Hettinger2014-08-101-7/+13
|
* Add an index entry for exec() builtin.Berker Peksag2014-07-041-0/+1
| | | | Reported by Draic Kin on docs@.
* 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.
* Issue 21143: Fix typo in docs for max().Raymond Hettinger2014-04-031-1/+1
|
* Documentation nit. List the traditional keyword-only argument first and the ↵Raymond Hettinger2014-04-021-2/+2
| | | | default last.
* Fix a few scoping issues with versionadded/versionchanged directives.Georg Brandl2014-03-241-0/+1
|
* Merge in all documentation changes since branching 3.4.0rc1.Larry Hastings2014-03-161-7/+28
|
* merge 3.3 (#19910)Benjamin Peterson2013-12-071-3/+3
|\