summaryrefslogtreecommitdiffstats
path: root/Python/import.c
Commit message (Expand)AuthorAgeFilesLines
* Issue #2333: Backport set and dict comprehensions syntax.Alexandre Vassalotti2010-01-111-1/+2
* Issue #2335: Backport set literals syntax from Python 3.x.Alexandre Vassalotti2010-01-091-1/+2
* Fix issue #1590864, multiple threads and fork() can cause deadlocks, byThomas Wouters2009-09-161-19/+12
* Better name a variable: 'buf' seems to imply a mutable buffer.Amaury Forgeot d'Arc2009-07-251-7/+7
* Update issue 6070 patch to match the patch that was actually testedR. David Murray2009-07-071-1/+3
* Issue 6070: when creating a compiled file, after copying the mode bits, onR. David Murray2009-07-071-1/+3
* add a SETUP_WITH opcodeBenjamin Peterson2009-05-251-1/+2
* Fix two issues introduced by issue #71031 by changing the signature ofBrett Cannon2009-04-021-1/+1
* PyImport_AppendInittab() took a char * as a first argument even though thatBrett Cannon2009-04-021-1/+1
* Backport r69961 to trunk, replacing JUMP_IF_{TRUE,FALSE} withJeffrey Yasskin2009-02-281-1/+3
* Issue 3677: Fix import from UNC paths on Windows.Kristján Valur Jónsson2009-01-091-15/+19
* Issue #1180193: When importing a module from a .pyc (or .pyo) file withAntoine Pitrou2009-01-061-0/+45
* Issue #4817: Remove unused function PyOS_GetLastModificationTime.Martin v. Löwis2009-01-031-2/+0
* Issue #2183: Simplify and optimize bytecode for list comprehensions.Antoine Pitrou2008-12-171-1/+2
* Fix compilation when --without-threads is given #3683Benjamin Peterson2008-09-011-1/+4
* Add imp.reload(). This to help with transitioning to 3.0 the reload() built-inBrett Cannon2008-08-061-0/+13
* Fix issue 3221 by emitting a RuntimeWarning instead of raising SystemError wh...Nick Coghlan2008-07-131-3/+22
* This reverts r63675 based on the discussion in this thread:Gregory P. Smith2008-06-091-34/+34
* Renamed PyString to PyBytesChristian Heimes2008-05-261-34/+34
* Build bots are working again - removing the hackChristian Heimes2008-03-271-1/+1
* Quick 'n dirty hack: Increase the magic by 2 to force a rebuild of pyc/pyo fi...Christian Heimes2008-03-271-1/+1
* Initialize PyCompilerFlags cf_flags with 0Christian Heimes2008-03-261-0/+2
* Patch #2477: Added from __future__ import unicode_literalsChristian Heimes2008-03-261-1/+2
* Speed up with statements by storing the __exit__ method on the stack instead ...Nick Coghlan2008-03-071-1/+2
* MS Windows doesn't have mode_t but stat.st_mode is defined as unsigned short.Christian Heimes2008-02-231-0/+5
* Issue #2051 and patch from Alexander Belopolsky:Christian Heimes2008-02-231-13/+14
* Fixed some references leaks in sys.Christian Heimes2008-01-301-0/+2
* 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