summaryrefslogtreecommitdiffstats
path: root/Python/import.c
Commit message (Expand)AuthorAgeFilesLines
* fix #4211: the __path__ of a frozen package should be a list.Benjamin Peterson2008-11-051-28/+17
* Revert r33661, which broke all buildbots.Amaury Forgeot d'Arc2008-09-091-7/+4
* #3705: Fix crash when given a non-ascii value on the command line for the "-c...Amaury Forgeot d'Arc2008-09-091-4/+7
* #3773: Check for errors around the use of PyTokenizer_FindEncoding().Amaury Forgeot d'Arc2008-09-041-0/+2
* Fix a memory leak in reloading extension modules #3667Benjamin Peterson2008-09-041-1/+1
* Merged revisions 66045,66048-66049,66053,66060,66062-66063,66065,66067,66071-...Benjamin Peterson2008-09-021-1/+4
* Rename PyUnicode_AsString -> _PyUnicode_AsString andMarc-André Lemburg2008-08-071-7/+7
* #3368: free string allocated by "es" ParseTuple format.Georg Brandl2008-07-191-0/+2
* Merged revisions 64722,64729,64753,64845-64846,64849,64871,64880-64882,64885,...Georg Brandl2008-07-161-3/+22
* Issue 1342: Python could not start if installed in a directoryAmaury Forgeot d'Arc2008-06-111-4/+11
* #3021: Antoine Pitrou's Lexical exception handlersBenjamin Peterson2008-06-111-1/+2
* Implement PEP 3121: new module initialization and finalization API.Martin v. Löwis2008-06-111-39/+101
* Renamed PyString to PyBytesChristian Heimes2008-05-261-5/+5
* Issue #1950: Fixed misusage of PyUnicode_AsString().Alexandre Vassalotti2008-05-031-4/+9
* There is no reason for imp.get_magic() to return a mutable bytearrayAmaury Forgeot d'Arc2008-04-241-1/+1
* Merged revisions 61954,61956-61957 via svnmerge fromChristian Heimes2008-03-261-0/+1
* Merged revisions 61952-61953 via svnmerge fromChristian Heimes2008-03-261-1/+2
* Properly terminate file name.Martin v. Löwis2008-03-221-1/+1
* Merged revisions 61239-61249,61252-61257,61260-61264,61269-61275,61278-61279,...Christian Heimes2008-03-161-2/+3
* Merged revisions 61003-61033 via svnmerge fromChristian Heimes2008-02-241-0/+5
* Merged revisions 60990-61002 via svnmerge fromChristian Heimes2008-02-231-13/+14
* Merged revisions 60441-60474 via svnmerge fromChristian Heimes2008-01-311-0/+2
* Good catch Neal!Christian Heimes2008-01-111-1/+2
* Merged revisions 59864-59882 via svnmerge fromChristian Heimes2008-01-101-0/+10
* Merged revisions 59822-59841 via svnmerge fromChristian Heimes2008-01-071-3/+6
* Another patch for #1762972: __file__ points to the py file instead pyo/pyc fileChristian Heimes2008-01-071-4/+38
* Issue #1762972: Readded the reload() function as imp.reload()Christian Heimes2008-01-071-0/+12
* Merged revisions 59666-59679 via svnmerge fromChristian Heimes2008-01-031-23/+51
* Merged revisions 59541-59561 via svnmerge fromChristian Heimes2007-12-191-2/+3
* Manual merge of PEP 366 implementation from trunk (the automatic merge choked...Nick Coghlan2007-12-041-26/+86
* Add an errors parameter to open() and TextIOWrapper() to specify error handling.Guido van Rossum2007-12-031-1/+1
* Cleanup: Replaced most PyInt_ aliases with PyLong_ and disabled the aliases i...Christian Heimes2007-12-021-2/+2
* #1535: rename __builtin__ module to builtins.Georg Brandl2007-12-021-13/+13
* Merged revisions 59005-59040 via svnmerge fromChristian Heimes2007-11-181-7/+20
* Cosmetic changes to Christian's patch r58903.Guido van Rossum2007-11-071-6/+4
* Patch for bug http://bugs.python.org/issue1293Christian Heimes2007-11-071-1/+19
* Merging the py3k-pep3137 branch back into the py3k branch.Guido van Rossum2007-11-061-4/+5
* Applied patch #1379 with a minor tweak.Christian Heimes2007-11-041-2/+2
* Patch 1329 (partial) by Christian Heimes.Guido van Rossum2007-10-301-1/+1
* Issue 1267, continued.Guido van Rossum2007-10-221-4/+13
* Fix a memory leak caused by PyTokenizer_FindEncoding() returning a char * thatBrett Cannon2007-10-201-3/+8
* Patch 1267 by Christian Heimes.Guido van Rossum2007-10-191-1/+12
* Patch #1272, by Christian Heimes and Alexandre Vassalotti.Guido van Rossum2007-10-151-4/+5
* Convert code from sys.stdin.encoding to UTF-8 inMartin v. Löwis2007-09-041-1/+2
* Update import.c's MAGIC value for the new raise syntax (as opposed to merely ...Collin Winter2007-08-311-1/+1
* Issue #1066: implement PEP 3109, 2/3 of PEP 3134.Collin Winter2007-08-311-0/+1
* Some changes in preparation of stricter rules about mixing str and bytes.Guido van Rossum2007-08-271-2/+9
* Use unicode and remove support for some uses of str8.Neal Norwitz2007-08-261-29/+10
* Fix a couple of warningsNeal Norwitz2007-08-261-1/+1
* Merged revisions 57221-57391 via svnmerge fromGuido van Rossum2007-08-241-1/+5