| Commit message (Expand) | Author | Age | Files | Lines |
* | Merged revisions 68893 via svnmerge from | Martin v. Löwis | 2009-01-24 | 1 | -0/+35 |
|
|
* | Merged revisions 68885 via svnmerge from | Martin v. Löwis | 2009-01-24 | 3 | -4/+45 |
|
|
* | Add a test for UNC import paths, see issue 3677 | Kristján Valur Jónsson | 2009-01-24 | 1 | -0/+21 |
|
|
* | Merged revisions 68750,68776-68777,68811,68842,68859 via svnmerge from | Benjamin Peterson | 2009-01-23 | 1 | -1/+1 |
|
|
* | Add some comment markers to more clearly delineate what different parts of the | Brett Cannon | 2009-01-22 | 1 | -1/+5 |
|
|
* | Add importlib.machinery with its first tenants, BuitinImporter and | Brett Cannon | 2009-01-22 | 7 | -75/+68 |
|
|
* | Followup of #4874: also fix multibytecodec.c | Antoine Pitrou | 2009-01-22 | 1 | -1/+11 |
|
|
* | Issue #4874: Most builtin decoders now reject unicode input. | Antoine Pitrou | 2009-01-22 | 1 | -0/+31 |
|
|
* | Update comments and add an optimized path for Counter.update(). | Raymond Hettinger | 2009-01-22 | 1 | -3/+5 |
|
|
* | Tighten-up the docs for Counter(). | Raymond Hettinger | 2009-01-21 | 1 | -0/+5 |
|
|
* | Simplify explanation of multiset operations by removing restrictions on negat... | Raymond Hettinger | 2009-01-21 | 2 | -10/+11 |
|
|
* | merge r68839 forward to py3k | Jesse Noller | 2009-01-21 | 2 | -3/+5 |
|
|
* | Merged revisions 68835 via svnmerge from | Antoine Pitrou | 2009-01-21 | 1 | -0/+11 |
|
|
* | Issue 5013: Fixed bug in FileHandler when delay was set - added fix for Rotat... | Vinay Sajip | 2009-01-21 | 2 | -13/+16 |
|
|
* | Revert part of r68799 which unintentionally updated this file. | Raymond Hettinger | 2009-01-20 | 1 | -0/+0 |
|
|
* | Issue 4842, patch 2/2: int('3L') should be invalid in Python 3.x. | Mark Dickinson | 2009-01-20 | 1 | -0/+10 |
|
|
* | Issue #4842, patch 1/2: fix pickle in Python 3.x so that pickling with the | Mark Dickinson | 2009-01-20 | 3 | -120/+124 |
|
|
* | Merged revisions 68797,68801 via svnmerge from | Benjamin Peterson | 2009-01-20 | 1 | -1/+1 |
|
|
* | Issue 4998: Decimal should not subclass or register with numbers.Real. | Raymond Hettinger | 2009-01-20 | 2 | -6/+5 |
|
|
* | Forward port r68792 and r68789 putting Counter in __all__ and adding Counter ... | Raymond Hettinger | 2009-01-20 | 2 | -10/+136 |
|
|
* | Document the (very small) public API for importlib. As time goes on and some | Brett Cannon | 2009-01-20 | 2 | -30/+30 |
|
|
* | Merged revisions 68779 via svnmerge from | Benjamin Peterson | 2009-01-19 | 3 | -15/+32 |
|
|
* | Merged revisions 68763,68773 via svnmerge from | Benjamin Peterson | 2009-01-19 | 1 | -2/+1 |
|
|
* | merge r68768 to py3k | Jesse Noller | 2009-01-19 | 1 | -1/+15 |
|
|
* | reenable the invalid fd test for fdopen | Benjamin Peterson | 2009-01-19 | 1 | -1/+1 |
|
|
* | Merged revisions 68755 via svnmerge from | Benjamin Peterson | 2009-01-19 | 1 | -0/+4 |
|
|
* | Remove a debugging print statement that accidentally got left in. | Brett Cannon | 2009-01-19 | 1 | -1/+0 |
|
|
* | Fix a typo in some code that is not tested or supported yet. | Brett Cannon | 2009-01-19 | 1 | -1/+1 |
|
|
* | Merged revisions 68546 via svnmerge from | Benjamin Peterson | 2009-01-18 | 1 | -1/+46 |
|
|
* | Merged revisions 68633,68648,68667,68706,68718,68720-68721,68724-68727,68739 ... | Benjamin Peterson | 2009-01-18 | 2 | -3/+3 |
|
|
* | merge cl r68737 to py3k | Jesse Noller | 2009-01-18 | 2 | -24/+10 |
|
|
* | Merged revisions 68547,68607,68610,68618,68621-68622,68649,68722 via svnmerge... | Benjamin Peterson | 2009-01-18 | 5 | -35/+136 |
|
|
* | Issue #4815: Offer conversion to UTF-8 if source files have | Martin v. Löwis | 2009-01-18 | 2 | -12/+31 |
|
|
* | Issue #4008: Fix problems with non-ASCII source files. | Martin v. Löwis | 2009-01-18 | 3 | -12/+21 |
|
|
* | Issues #10867: remove old cPickle imports from multiprocessing | Jesse Noller | 2009-01-18 | 2 | -10/+2 |
|
|
* | Tests of case-sensitivity were being executed on OSs which did not have a | Brett Cannon | 2009-01-18 | 3 | -4/+13 |
|
|
* | Merge r68708 to py3k, fixes 4449 | Jesse Noller | 2009-01-18 | 2 | -6/+24 |
|
|
* | NOTES for importlib should mention the ultimate end-goal for the package. | Brett Cannon | 2009-01-18 | 1 | -0/+2 |
|
|
* | Skip over any file or folder that starts with a dot (e.g. .svn). | Brett Cannon | 2009-01-18 | 1 | -0/+3 |
|
|
* | Merged revisions 68678 via svnmerge from | Amaury Forgeot d'Arc | 2009-01-18 | 1 | -11/+6 |
|
|
* | Add initial implementation of importlib. See the NOTES files for what is | Brett Cannon | 2009-01-18 | 35 | -0/+3360 |
|
|
* | Merged revisions 68459 via svnmerge from | Benjamin Peterson | 2009-01-18 | 1 | -3/+1 |
|
|
* | Merged revisions 68458 via svnmerge from | Benjamin Peterson | 2009-01-18 | 1 | -7/+8 |
|
|
* | Merged revisions 68676 via svnmerge from | Benjamin Peterson | 2009-01-17 | 2 | -2/+10 |
|
|
* | Merged revisions 68661 via svnmerge from | Amaury Forgeot d'Arc | 2009-01-17 | 1 | -7/+13 |
|
|
* | fix inspect.formatargspec on functions with keyword-only arguments without de... | Benjamin Peterson | 2009-01-17 | 3 | -1/+12 |
|
|
* | Make test_io faster | Antoine Pitrou | 2009-01-17 | 1 | -1/+5 |
|
|
* | Merged revisions 68450,68480-68481,68493,68495,68501,68512,68514-68515,68534-... | Benjamin Peterson | 2009-01-16 | 6 | -6/+35 |
|
|
* | Issue 4910, patch 2 of (probably) 3: pave the way for renaming of | Mark Dickinson | 2009-01-15 | 2 | -9/+1 |
|
|
* | Merged revisions 68611-68613 via svnmerge from | Mark Dickinson | 2009-01-15 | 1 | -0/+4 |
|
|