summaryrefslogtreecommitdiffstats
path: root/Doc/library/functions.rst
Commit message (Collapse)AuthorAgeFilesLines
* fix several compile() issues by translating newlines in the tokenizerBenjamin Peterson2009-11-121-5/+8
|
* Use "impl-detail" directive where applicable.Georg Brandl2009-10-221-9/+12
|
* Issue #7028: Add note to hex() builtin docs pointing to float.hex().Mark Dickinson2009-10-031-0/+5
|
* #6925: rewrite docs for locals() and vars() a bit.Georg Brandl2009-09-181-10/+8
|
* Fix base keyword arg name for int() and long().Georg Brandl2009-08-061-6/+7
|
* builtin -> built-in.Georg Brandl2009-07-261-1/+1
|
* #6577: fix (hopefully) all links to builtin instead of module/class-specific ↵Georg Brandl2009-07-261-5/+5
| | | | objects.
* Improve English phrasing.R. David Murray2009-06-221-1/+1
|
* s/use/call/Georg Brandl2009-05-221-1/+1
|
* Fix confusing wording.Georg Brandl2009-05-221-1/+1
|
* #6084: fix example.Georg Brandl2009-05-221-1/+1
|
* Demote warnings to notices where appropriate, following the goal that as few ↵Georg Brandl2009-04-271-3/+3
| | | | | | "red box" warnings should clutter the docs as possible. Part 1: stuff that gets merged to Py3k.
* #5751: fix escaping of \\n.Georg Brandl2009-04-211-1/+1
|
* Clarify the behavior of any() and all() with an empty iterable.Raymond Hettinger2009-04-161-2/+4
|
* Issue #2396: backport the memoryview object.Antoine Pitrou2009-04-021-0/+7
|
* #5199: make warning about vars() assignment more visible.Georg Brandl2009-03-301-2/+6
|
* a much better exampleBenjamin Peterson2009-03-181-18/+7
|
* I thought this was begging for an exampleBenjamin Peterson2009-03-171-0/+19
|
* Fix typo.Raymond Hettinger2009-02-261-1/+1
|
* Remove reference to zero argument form of super() in 2.x docs.Raymond Hettinger2009-02-251-2/+1
|
* More markup and spelling fixes.Raymond Hettinger2009-02-251-6/+6
|
* Restore Py2.x version of sample call to super().Raymond Hettinger2009-02-251-1/+1
|
* Sync-up py3.1 doc updates for super().Raymond Hettinger2009-02-251-17/+26
|
* #5348: format() converts all kinds of values.Georg Brandl2009-02-231-0/+20
|
* Add links to helpful external resources.Raymond Hettinger2009-02-191-4/+6
|
* Add some cross-references to the docs. Simplify the python code equivalent ↵Raymond Hettinger2009-02-191-2/+9
| | | | for izip(). Supply an optional argument for the nth() recipe.
* Add explanation for super(type1, type2).Raymond Hettinger2009-02-161-1/+1
|
* Issue 5229: Documentation for super() neglects to say what super() actually doesRaymond Hettinger2009-02-161-1/+5
|
* make "super only for new-style classes" a note.Georg Brandl2009-02-071-2/+4
|
* Remove trailing whitespace.Georg Brandl2009-01-031-6/+6
|
* #4457: rewrite __import__() documentation.Georg Brandl2008-12-071-38/+54
|
* Move __import__ to the bottom of the functions list.Georg Brandl2008-12-051-61/+61
| | | | | It doesn't make sense for such a fundamental document to have the most obscure function listed at the top.
* clarify what was addedBenjamin Peterson2008-11-081-1/+1
|
* move context clue to versionchanged tagBenjamin Peterson2008-11-081-8/+11
|
* a few compile() and ast doc improvementsBenjamin Peterson2008-11-081-9/+10
|
* backport bin() documentationBenjamin Peterson2008-10-301-0/+9
|
* add a much requested newlineBenjamin Peterson2008-10-151-1/+2
|
* talk about how you can unzip with zipBenjamin Peterson2008-10-101-0/+12
|
* #4041: don't refer to removed and outdated modules.Georg Brandl2008-10-041-4/+2
|
* Improve docs for super().Raymond Hettinger2008-09-191-1/+18
|
* clarify that radix for int is not 'guessed'Benjamin Peterson2008-09-141-8/+8
|
* super() actually returns a super object.Georg Brandl2008-08-301-1/+2
|
* #3569: eval() also accepts "exec"able code objects.Georg Brandl2008-08-301-4/+4
|
* fix various doc typos #3320Benjamin Peterson2008-07-121-1/+1
|
* #2831: add start argument to enumerate(). Patch by Scott Dial and me.Georg Brandl2008-05-131-5/+7
|
* Fix parameter name for enumerate().Georg Brandl2008-05-121-8/+9
|
* #2812: document property.getter/setter/deleter.Georg Brandl2008-05-111-6/+42
|
* #2719: backport next() from 3k.Georg Brandl2008-04-301-0/+9
|
* #2668: nit in apply() docs.Georg Brandl2008-04-261-1/+1
|
* Patch #1810 by Thomas Lee, reviewed by myself:Georg Brandl2008-03-281-14/+23
| | | | | allow compiling Python AST objects into code objects in compile().