355 Commits (284fa08eb783a48f98eabda25aaaebefb5937cce)

Author SHA1 Message Date
Antoine Pitrou 284fa08eb7 Issue #14761: Fix potential leak on an error case in the import machinery. 14 years ago
Gregory P. Smith a72aa843b6 Fix compiler warning related to issue #14331. harmless. 14 years ago
Gregory P. Smith fcdf04becc Fixes Issue #14331: Use significantly less stack space when importing modules by 14 years ago
Jason R. Coombs 0e17dfbdcf Test in 6c218b9c5c4c was inadvertently converted from #ifdef to #if. Now #ifdef again. 14 years ago
Antoine Pitrou 6f25d75f25 Remove debug output, fix assert (hopefully) and exercise signedness issues a bit more. 14 years ago
Antoine Pitrou b744cef654 Fix temporary debug output (so, time_t is 8 bytes on some Windows builds) 14 years ago
Antoine Pitrou 11cc480ed0 Temporary debug for Windows buildbots. 14 years ago
Antoine Pitrou 0e5fd59a27 Make guard more dynamic (apparently the size of a filesystem timestamp may vary under Windows). 14 years ago
Antoine Pitrou d1c818a9c0 Issue #11235: Fix OverflowError when trying to import a source file whose modification time doesn't fit in a 32-bit timestamp. 14 years ago
Jason R. Coombs 0737b7281e Fix indentation 14 years ago
Jason R. Coombs fa93cf8e3e Extracted Windows directory detection from NullImporter.__init__. This greatly simplifies the code and fixes issue6727. 14 years ago
Jason R. Coombs 925ff7495b Moved directory detection into an isdir function 14 years ago
Victor Stinner 63c22fac72 Issue #7732: Fix a crash on importing a module if a directory has the same name 14 years ago
Victor Stinner ed36c06f1d Fix the import machinery if there is an error on sys.path or sys.meta_path 15 years ago
Victor Stinner 871a0fbf46 Remove unused variable if Python is build without threads 15 years ago
Brett Cannon 7d006260a5 Merged revisions 81380 via svnmerge from 16 years ago
Brett Cannon eb3cd301ae Turned out that if you used explicit relative import syntax 16 years ago
Antoine Pitrou c7c96a90bc Recorded merge of revisions 81029 via svnmerge from 16 years ago
Antoine Pitrou c83ea137d7 Untabify C files. Will watch buildbots. 16 years ago
Brett Cannon b166afc17c Fix whitespace. 16 years ago
Brett Cannon 417439e6cd Partially revert the over-reaching r80813. 16 years ago
Brett Cannon 0b03f10afb Remove three unneeded variable assignments. 16 years ago
Benjamin Peterson 06638735fc make naming convention consistent 16 years ago
Victor Stinner ea1642910e Partial backport of r78826: leave import site error handler unchanged (print 16 years ago
Victor Stinner 6664426d7c Issue #3137: Don't ignore errors at startup, especially a keyboard interrupt 16 years ago
Gregory P. Smith c21d0cb6cf Merged revisions 78527,78531 via svnmerge from 16 years ago
Gregory P. Smith 9e5d1327f8 Issue #7242: On Solaris 9 and earlier calling os.fork() from within a 16 years ago
Alexandre Vassalotti b646547bb4 Issue #2333: Backport set and dict comprehensions syntax. 16 years ago
Alexandre Vassalotti ee936a2130 Issue #2335: Backport set literals syntax from Python 3.x. 16 years ago
Thomas Wouters 448db2155f Merged revisions 74841 via svnmerge from 17 years ago
Thomas Wouters c4dcb3801e Fix issue #1590864, multiple threads and fork() can cause deadlocks, by 17 years ago
Amaury Forgeot d'Arc 982b2fa32d Better name a variable: 'buf' seems to imply a mutable buffer. 17 years ago
R. David Murray e38b0a8ec0 Merged revisions 73870,73879,73899-73900,73905-73906 via svnmerge from 17 years ago
R. David Murray 3310a10a68 Update issue 6070 patch to match the patch that was actually tested 17 years ago
R. David Murray 23a736a4f0 Issue 6070: when creating a compiled file, after copying the mode bits, on 17 years ago
Benjamin Peterson 1880d8b823 add a SETUP_WITH opcode 17 years ago
Brett Cannon 238cedcd63 Fix two issues introduced by issue #71031 by changing the signature of 17 years ago
Brett Cannon c4f90ebea7 PyImport_AppendInittab() took a char * as a first argument even though that 17 years ago
Jeffrey Yasskin 68d6852006 Backport r69961 to trunk, replacing JUMP_IF_{TRUE,FALSE} with 17 years ago
Georg Brandl c04c2890c7 Merged revisions 68292,68344,68361,68378,68424,68426,68429-68430,68450,68457,68480-68481,68493,68495,68499,68501,68512,68514-68515 via svnmerge from 17 years ago
Kristján Valur Jónsson 3b2a6b819d Issue 3677: Fix import from UNC paths on Windows. 17 years ago
Antoine Pitrou 5b0767c31d Merged revisions 68360 via svnmerge from 17 years ago
Antoine Pitrou e96d4ea4e2 Issue #1180193: When importing a module from a .pyc (or .pyo) file with 17 years ago
Martin v. Löwis 0fa10b3cd5 Issue #4817: Remove unused function PyOS_GetLastModificationTime. 17 years ago
Antoine Pitrou d0c3515bc5 Issue #2183: Simplify and optimize bytecode for list comprehensions. 17 years ago
Benjamin Peterson 17f03ca962 Fix compilation when --without-threads is given #3683 18 years ago
Brett Cannon 3aa2a49ec9 Add imp.reload(). This to help with transitioning to 3.0 the reload() built-in 18 years ago
Nick Coghlan b028f50911 Fix issue 3221 by emitting a RuntimeWarning instead of raising SystemError when the parent module can't be found during an absolute import (likely due to non-PEP 361 aware code which sets a module level __package__ attribute) 18 years ago
Gregory P. Smith dd96db63f6 This reverts r63675 based on the discussion in this thread: 18 years ago
Christian Heimes 593daf545b Renamed PyString to PyBytes 18 years ago