| Commit message (Expand) | Author | Age | Files | Lines |
* | Fix docs for __import__ that say the default for 'level' is -1; it's actually | Brett Cannon | 2009-03-15 | 1 | -6/+5 |
|
|
* | Implement InspectLoader for BuiltinImporter. | Brett Cannon | 2009-03-15 | 1 | -10/+11 |
|
|
* | #5486: typos. | Georg Brandl | 2009-03-13 | 9 | -20/+20 |
|
|
* | Issue 5477: Fix buglet in the itertools documentation. | Raymond Hettinger | 2009-03-12 | 1 | -3/+4 |
|
|
* | Record version added as 3.1. | Raymond Hettinger | 2009-03-10 | 1 | -1/+1 |
|
|
* | For collections.deque() objects, expose the maxlen parameter as a read-only a... | Raymond Hettinger | 2009-03-10 | 1 | -0/+9 |
|
|
* | Implement importlib.util.set_loader: a decorator to automatically set | Brett Cannon | 2009-03-10 | 1 | -1/+9 |
|
|
* | Implement get_source for importlib.abc.PyLoader using source_path and get_data. | Brett Cannon | 2009-03-10 | 1 | -0/+7 |
|
|
* | Fix markup. | Raymond Hettinger | 2009-03-10 | 1 | -1/+1 |
|
|
* | fix versionchanged | Benjamin Peterson | 2009-03-09 | 2 | -2/+2 |
|
|
* | Merged revisions 69998-69999,70002,70022-70023,70025-70026,70061,70086,70145,... | Benjamin Peterson | 2009-03-09 | 8 | -14/+56 |
|
|
* | Fix some reST mishaps. | Brett Cannon | 2009-03-09 | 1 | -12/+12 |
|
|
* | Add cross-reference to the collections docs. | Raymond Hettinger | 2009-03-09 | 1 | -0/+6 |
|
|
* | Add consume() recipe to itertools docs. | Raymond Hettinger | 2009-03-09 | 1 | -0/+4 |
|
|
* | Issue 5443: Fix typo. | Raymond Hettinger | 2009-03-09 | 1 | -1/+1 |
|
|
* | Clarify an assumption that importlib.abc.PyLoader makes when importing a | Brett Cannon | 2009-03-09 | 1 | -1/+4 |
|
|
* | Introduce importlib.abc. The module contains various ABCs related to imports | Brett Cannon | 2009-03-09 | 1 | -31/+184 |
|
|
* | fix StringIO constructor docs #5452 | Benjamin Peterson | 2009-03-09 | 1 | -4/+4 |
|
|
* | Redocument the empty() and full() methods. | Raymond Hettinger | 2009-03-07 | 1 | -0/+16 |
|
|
* | remove usage of the deprecated max_buffer_size | Benjamin Peterson | 2009-03-05 | 1 | -6/+9 |
|
|
* | FileIO.readinto() isn't going anywhere | Benjamin Peterson | 2009-03-05 | 1 | -3/+0 |
|
|
* | Rename importlib.util.set___package__ to set_package. | Brett Cannon | 2009-03-04 | 1 | -1/+1 |
|
|
* | merge the io-c branch: C implementation of the io module | Benjamin Peterson | 2009-03-04 | 1 | -1/+8 |
|
|
* | Fix markup. | Raymond Hettinger | 2009-03-03 | 1 | -1/+1 |
|
|
* | Fix markup. | Raymond Hettinger | 2009-03-03 | 1 | -3/+3 |
|
|
* | Let configparser use ordered dicts by default. | Raymond Hettinger | 2009-03-02 | 1 | -0/+9 |
|
|
* | Add OrderedDict support to collections.namedtuple(). | Raymond Hettinger | 2009-03-02 | 1 | -5/+9 |
|
|
* | Fix versionchanged. | Raymond Hettinger | 2009-03-02 | 1 | -1/+1 |
|
|
* | fix versionadded | Benjamin Peterson | 2009-03-02 | 1 | -2/+2 |
|
|
* | PEP 372: OrderedDict() | Raymond Hettinger | 2009-03-02 | 1 | -1/+28 |
|
|
* | Expose importlib.util.set___package__. | Brett Cannon | 2009-03-02 | 1 | -13/+21 |
|
|
* | Merged revisions 70090 via svnmerge from | Gregory P. Smith | 2009-03-02 | 1 | -3/+16 |
|
|
* | Merged r70088 from trunk (re documentation update) | Gregory P. Smith | 2009-03-02 | 1 | -8/+12 |
|
|
* | Fix docs for ConfigParser. | Raymond Hettinger | 2009-03-01 | 1 | -2/+2 |
|
|
* | #5357: fix incomprehensible paragraph in urlopen() doc. | Georg Brandl | 2009-02-27 | 1 | -11/+11 |
|
|
* | Merged revisions 69803-69805,69840,69901,69905,69907,69924,69927,69987 via sv... | Benjamin Peterson | 2009-02-26 | 6 | -17/+21 |
|
|
* | Fix typo. | Raymond Hettinger | 2009-02-26 | 1 | -1/+1 |
|
|
* | Sync-up 3.1 docs with 2.7 for collections.Counter(). | Raymond Hettinger | 2009-02-25 | 1 | -7/+6 |
|
|
* | http://bugs.python.org/issue4715 | Jeffrey Yasskin | 2009-02-25 | 1 | -6/+16 |
|
|
* | More markup and spelling fixes. | Raymond Hettinger | 2009-02-25 | 1 | -6/+6 |
|
|
* | Tweak markup, grammar, and punctuation. | Raymond Hettinger | 2009-02-25 | 1 | -5/+5 |
|
|
* | Refine docs for super() noting that sibling classes can | Raymond Hettinger | 2009-02-24 | 1 | -9/+13 |
|
|
* | Fix-up random docs. Jumpahead was removed long ago. Other minor corrections. | Raymond Hettinger | 2009-02-24 | 1 | -14/+4 |
|
|
* | Update itertools recipes to use next(). | Raymond Hettinger | 2009-02-23 | 1 | -4/+3 |
|
|
* | #5348: format() converts all kinds of values. | Georg Brandl | 2009-02-23 | 1 | -5/+6 |
|
|
* | Merged revisions 69846 via svnmerge from | Mark Dickinson | 2009-02-21 | 3 | -5/+5 |
|
|
* | Add links to helpful external resources. | Raymond Hettinger | 2009-02-19 | 2 | -0/+7 |
|
|
* | Add an example for math.fsum() and elaborate on the accurary note. | Raymond Hettinger | 2009-02-19 | 1 | -8/+12 |
|
|
* | Add some cross-references to the docs. Simplify the python code equivalent f... | Raymond Hettinger | 2009-02-19 | 2 | -8/+13 |
|
|
* | Merged revisions 69576,69579-69580,69589,69619-69620,69633,69703-69704,69728-... | Benjamin Peterson | 2009-02-19 | 4 | -8/+17 |
|
|