summaryrefslogtreecommitdiffstats
path: root/Python/import.c
Commit message (Expand)AuthorAgeFilesLines
* Issue #25698: Importing module if the stack is too deep no longer replacesSerhiy Storchaka2016-02-101-7/+25
* Issue #23998: PyImport_ReInitLock() now checks for lock allocation errorChristian Heimes2015-04-191-1/+5
* Issue #13863: fix incorrect .pyc timestamps on Windows / NTFS (apparently due...Mark Dickinson2012-12-241-6/+46
* Issue #6074: Restore the long-broken support for running with read-only sourc...Nick Coghlan2012-10-191-0/+6
* Issue #15604: Update uses of PyObject_IsTrue() to check for and handle errors...Antoine Pitrou2012-08-151-2/+11
* - Issue #15647: Make isdir static for windows and posixMatthias Klose2012-08-141-2/+2
* Issue #14761: Fix potential leak on an error case in the import machinery.Antoine Pitrou2012-05-091-1/+2
* Fix compiler warning related to issue #14331. harmless.Gregory P. Smith2012-04-181-1/+2
* Fixes Issue #14331: Use significantly less stack space when importing modules byGregory P. Smith2012-03-181-31/+95
* Test in 6c218b9c5c4c was inadvertently converted from #ifdef to #if. Now #ifd...Jason R. Coombs2012-03-081-1/+1
* Fix indentationJason R. Coombs2012-01-131-16/+16
* Extracted Windows directory detection from NullImporter.__init__. This greatl...Jason R. Coombs2012-01-131-47/+24
* Moved directory detection into an isdir functionJason R. Coombs2012-01-131-28/+14
* Remove debug output, fix assert (hopefully) and exercise signedness issues a ...Antoine Pitrou2012-01-251-7/+2
* Fix temporary debug output (so, time_t is 8 bytes on some Windows builds)Antoine Pitrou2012-01-251-1/+1
* Temporary debug for Windows buildbots.Antoine Pitrou2012-01-251-0/+5
* Make guard more dynamic (apparently the size of a filesystem timestamp may va...Antoine Pitrou2012-01-251-8/+8
* Issue #11235: Fix OverflowError when trying to import a source file whose mod...Antoine Pitrou2012-01-241-7/+4
* Issue #7732: Fix a crash on importing a module if a directory has the same nameVictor Stinner2011-09-231-3/+1
* Fix the import machinery if there is an error on sys.path or sys.meta_pathVictor Stinner2011-09-151-4/+4
* Remove unused variable if Python is build without threadsVictor Stinner2011-09-011-0/+2
* Turned out that if you used explicit relative import syntaxBrett Cannon2010-05-201-1/+2
* Untabify C files. Will watch buildbots.Antoine Pitrou2010-05-091-2394/+2394
* Fix whitespace.Brett Cannon2010-05-051-8/+8
* Partially revert the over-reaching r80813.Brett Cannon2010-05-051-8/+8
* Remove three unneeded variable assignments.Brett Cannon2010-05-051-8/+8
* make naming convention consistentBenjamin Peterson2010-03-251-2/+2
* Issue #3137: Don't ignore errors at startup, especially a keyboard interruptVictor Stinner2010-03-101-2/+0
* Issue #7242: On Solaris 9 and earlier calling os.fork() from within aGregory P. Smith2010-03-011-4/+8
* 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