summaryrefslogtreecommitdiffstats
path: root/Doc/library/functions.rst
Commit message (Collapse)AuthorAgeFilesLines
...
* | 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
|\
| * document that compile() can take bytes (closes #19910)Benjamin Peterson2013-12-071-3/+3
| |
* | Issue #19795: Improved markup of True/False constants.Serhiy Storchaka2013-11-291-4/+4
|\ \ | |/
| * Issue #19795: Improved markup of True/False constants.Serhiy Storchaka2013-11-291-4/+4
| |
* | Issue #15204: Deprecated the 'U' mode in file-like objects.Serhiy Storchaka2013-11-231-2/+4
| |
* | Issue #19190: Improve cross-references in builtin types and functions ↵Serhiy Storchaka2013-10-091-29/+31
|\ \ | |/ | | | | documentation.
| * Issue #19190: Improve cross-references in builtin types and functions ↵Serhiy Storchaka2013-10-091-29/+31
| | | | | | | | documentation.
* | Issue #18571: Implementation of the PEP 446: file descriptors and file handlesVictor Stinner2013-08-271-4/+7
| | | | | | | | | | are now created non-inheritable; add functions os.get/set_inheritable(), os.get/set_handle_inheritable() and socket.socket.get/set_inheritable().
* | merge emphasized discouragement of overriding __import__Brett Cannon2013-08-231-4/+5
|\ \ | |/
| * Emphasize that people should not override __import__.Brett Cannon2013-08-231-4/+5
| | | | | | | | | | | | | | | | With importlib getting used more and more, changing __import__ will not work as well as people used to hope as it will potentially bypass importers, etc. It also will not work with importlib.import_module() as it uses "importlib.__import__" (i.e. importlib's implementation of import) directly and not builtins.__import__.
* | - Issue #18440: Clarify that `hash()` can truncate the value returned from anBarry Warsaw2013-07-151-4/+9
|\ \ | |/ | | | | object's custom `__hash__()` method.
| * - Issue #18440: Clarify that `hash()` can truncate the value returned from anBarry Warsaw2013-07-151-4/+9
| | | | | | | | object's custom `__hash__()` method.
* | Issue 18111: Add a default argument to min() and max()Raymond Hettinger2013-06-251-14/+20
| |
* | Merge with 3.3Andrew Kuchling2013-06-161-10/+30
|\ \ | |/
| * Describe 'surrogateescape' in the documentation.Andrew Kuchling2013-06-161-10/+30
| | | | | | | | | | | | Also, improve some docstring descriptions of the 'errors' parameter. Closes #14015.
* | mergeRaymond Hettinger2013-06-021-10/+10
|\ \ | |/
| * Clarify which dictionaries are updateableRaymond Hettinger2013-06-021-10/+10
| | | | | | | | by using the wording from the Py2.7 docs.
* | Merge with 3.3.Georg Brandl2013-03-281-1/+1
|\ \ | |/
| * Closes #4159: add LaTeX tabular column specifications to tables that ↵Georg Brandl2013-03-281-1/+1
| | | | | | | | otherwise are cut off or have overlapping text.
* | Merge with 3.3Terry Jan Reedy2013-03-161-2/+2
|\ \ | |/
| * Merge with 3.2Terry Jan Reedy2013-03-161-2/+2
| |\
| | * Issue #17418: specify that buffer sizes are bytes as soon as possible.Terry Jan Reedy2013-03-161-2/+2
| | |