summaryrefslogtreecommitdiffstats
path: root/Python/import.c
Commit message (Expand)AuthorAgeFilesLines
* Fixed #1776. __import__() no longer imports modules by file nameChristian Heimes2008-01-091-0/+10
* patch #1668: clarify envvar docs; rename THREADDEBUG to PYTHONTHREADDEBUG.Georg Brandl2008-01-071-1/+1
* Patch #602345 by Neal Norwitz and me: add -B option and PYTHONDONTWRITEBYTECO...Georg Brandl2008-01-071-2/+5
* Modified PyImport_Import and PyImport_ImportModule to always use absolute imp...Christian Heimes2008-01-031-23/+51
* Speed-up dictionary constructor by about 10%.Raymond Hettinger2007-12-181-2/+2
* Implement PEP 366Nick Coghlan2007-12-031-26/+86
* Patch #1739468: Directories and zipfiles containing __main__.py are now execu...Nick Coghlan2007-11-181-7/+20
* Backport of Guido's review of my patch.Christian Heimes2007-11-071-7/+5
* Backported fix for bug #1392 from py3k branch r58903.Christian Heimes2007-11-071-1/+19
* Second half of #1752175: #ifdef out references to PyImport_DynLoadFiletab if ...Georg Brandl2007-08-231-1/+5
* Revert accidental checkins from last commit.Georg Brandl2007-08-211-10/+0
* Demand version 2.5.1 since 2.5 has a bug with codecs.open context managers.Georg Brandl2007-08-211-0/+10
* PEP 3123: Provide forward compatibility with Python 3.0, while keepingMartin v. Löwis2007-07-211-2/+1
* Fix indentation (whitespace only).Neal Norwitz2007-05-301-2/+2
* Make pythoncore compile cleanly with VisualStudio 2005. Used an explicit typ...Kristján Valur Jónsson2007-04-251-0/+1
* Inline PyImport_GetModulesReloading().Collin Winter2007-03-131-11/+8
* Fix some style nits:Neal Norwitz2007-03-131-13/+15
* Bug #742342: make Python stop segfaulting on infinitely-recursive reload()s. ...Collin Winter2007-03-121-2/+35
* Typos.Georg Brandl2007-03-101-1/+1
* Update the peephole optimizer to remove more dead code (jumps after returns)Neal Norwitz2006-10-141-1/+2
* Fix minor typo in a comment.Brett Cannon2006-10-031-1/+1
* Very minor grammatical fix in a comment.Brett Cannon2006-09-281-1/+1
* Properly handle a NULL returned from PyArena_New().Neal Norwitz2006-09-111-2/+4
* Bug #1550983: emit better error messages for erroneous relativeGeorg Brandl2006-09-061-2/+3
* Bug #1520864 (again): unpacking singleton tuples in list comprehensions andNeal Norwitz2006-09-051-1/+2
* cpathname could be NULL if it was longer than MAXPATHLEN. Don't tryNeal Norwitz2006-08-131-1/+6
* 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