summaryrefslogtreecommitdiffstats
path: root/Python/import.c
Commit message (Expand)AuthorAgeFilesLines
* There were really two issuesNeal Norwitz2006-08-041-1/+2
* Bug #1191458: tracing over for loops now produces a line eventNeal Norwitz2006-08-041-1/+2
* Patch #1531113: Fix augmented assignment with yield expressions.Neal Norwitz2006-07-301-2/+3
* Bug #1529871: The speed enhancement patch #921466 broke Python's compliancePhillip J. Eby2006-07-281-34/+132
* Speel initialise write. Tanks Anthony.Neal Norwitz2006-07-211-1/+1
* Handle allocation failures gracefully. Found with failmalloc.Neal Norwitz2006-07-211-2/+7
* Fix memory leak under some conditions.Neal Norwitz2006-07-161-7/+9
* Actually change the MAGIC #. Create a new section for 2.5c1 and mention the ...Neal Norwitz2006-07-121-1/+1
* Bug #1520864: unpacking singleton tuples in for loop (for x, in) work again.Neal Norwitz2006-07-121-0/+1
* Fix refleaks reported by Shane Hathaway in SF patch #1515361. This changeNeal Norwitz2006-07-061-2/+4
* Correct None refcount issue in Mac modules. (Are theyGeorg Brandl2006-05-281-1/+1
* The empty string is a valid import path.Georg Brandl2006-05-281-2/+4
* Need for speed: Patch #921466 : sys.path_importer_cache is now used to cache ...Georg Brandl2006-05-261-2/+30
* Replace PyObject_CallFunction calls with only object argsGeorg Brandl2006-05-251-3/+3
* - Add new Warning class, ImportWarningThomas Wouters2006-04-271-7/+30
* spread the extern "C" { } magic pixie dust around. Python itself builds nowAnthony Baxter2006-04-131-0/+7
* Fix refleak in __import__("") (probably the cause of the 2 refleaks inThomas Wouters2006-04-051-0/+2
* Fix __import__("") to raise ValueError rather than return None.Thomas Wouters2006-04-041-1/+10
* Found this in an old email message from Hartmut Goebel.Skip Montanaro2006-03-251-0/+1
* Use macro versions instead of function versions when we already know the type.Neal Norwitz2006-03-201-2/+2
* Um, I thought I'd already checked this in.Guido van Rossum2006-03-101-0/+1
* Change int to Py_ssize_t in several places.Martin v. Löwis2006-03-071-4/+4
* SF patch #1438387, PEP 328: relative and absolute imports.Thomas Wouters2006-02-281-13/+56
* PEP 343 -- the with-statement.Guido van Rossum2006-02-271-1/+2
* Merge ssize_t branch.Martin v. Löwis2006-02-151-16/+18
* Check return result from Py_InitModule*(). This API can fail.Neal Norwitz2006-01-191-0/+2
* Merge from ast-arena. This reduces the code in Python/ast.c by ~300 lines,Neal Norwitz2005-12-171-3/+5
* Add const to several API functions that take char *.Jeremy Hylton2005-12-101-2/+2
* the ast-branch changed the stack discipline of MAKE_CLOSURE, so we need toMichael W. Hudson2005-10-211-1/+3
* Merge ast-branch to headJeremy Hylton2005-10-201-11/+12
* Fix SF bug #976608, Unhelpful error message when mtime of a module is -1Neal Norwitz2005-10-031-1/+5
* - Changes donated by Elemental Security to make it work on AIX 5.3Guido van Rossum2005-09-141-0/+12
* Patch #1290454: Fix reload() error message when parent module is not inGeorg Brandl2005-09-141-2/+3
* This is my patch:Michael W. Hudson2005-06-031-1/+2
* Patch #1197318: Cygwin case-sensitive import patchJason Tishler2005-05-201-17/+6
* SF patch #1035498: -m option to run a module as a scriptRaymond Hettinger2004-10-071-0/+16
* Fix for SF bug #1029475 : reload() doesn't work with PEP 302 loaders.Phillip J. Eby2004-09-231-4/+10
* SF patch #1031667: Fold tuples of constants into a single constantRaymond Hettinger2004-09-221-1/+2
* SF Patch #1013667: Cleanup Peepholer OutputRaymond Hettinger2004-08-231-1/+2
* PyImport_ExecCodeModuleEx(): remove module from sys.modules in error cases.Tim Peters2004-08-021-16/+46
* lock_held() docs: Use True/False instead of 1/0. The LaTeX docs wereTim Peters2004-08-011-3/+3
* Trimmed trailing whitespace.Tim Peters2004-08-011-2/+2
* Patch #923098: Share interned strings in marshal.Martin v. Löwis2004-06-271-9/+9
* Fix a refcount bug in an obscure code corner.Thomas Heller2004-06-071-0/+1
* starting to add comments to explain what's hereFred Drake2004-05-281-0/+11
* Bump the magic number to avoid sharing bytecode between 2.3 and 2.4.Jeremy Hylton2004-04-011-32/+14
* Marshal clean-up (SF patch #873224)Armin Rigo2004-03-261-7/+7
* Changed random calls to PyThreadState_Get() to use the macroNicholas Bastin2004-03-241-2/+2
* Decref all if ensure_fromlist fails. Fixes #876533.Martin v. Löwis2004-03-231-2/+3
* Add comment to mollify Tim.Jeremy Hylton2004-01-021-0/+2