index
:
cpython.git
2.7
3.3
3.4
3.5
3.6
benjamin-clang
benjamin-iteration-torture
buildbot-custom
master
https://github.com/python/cpython.git
summary
refs
log
tree
commit
diff
stats
log msg
author
committer
range
path:
root
/
Python
/
import.c
Commit message (
Expand
)
Author
Age
Files
Lines
*
bpo-38730: Replace strncpy in import.c with memcpy. (GH-17633)
Benjamin Peterson
2019-12-17
1
-3/+3
*
[2.7] bpo-35133: Fix mistakes when concatenate string literals on different l...
Serhiy Storchaka
2018-11-05
1
-1/+1
*
[2.7] bpo-33330: Improve error handling in PyImport_Cleanup(). (GH-6564). (GH...
Serhiy Storchaka
2018-04-26
1
-8/+30
*
Issue #21720: Improve exception message when the type of fromlist is unicode
Berker Peksag
2016-10-16
1
-2/+3
*
Issue #15578: Correctly incref the parent module while importing.
Eric Snow
2016-09-08
1
-0/+2
*
Issue #25698: Importing module if the stack is too deep no longer replaces
Serhiy Storchaka
2016-02-10
1
-7/+25
*
Issue #23998: PyImport_ReInitLock() now checks for lock allocation error
Christian Heimes
2015-04-19
1
-1/+5
*
Issue #13863: fix incorrect .pyc timestamps on Windows / NTFS (apparently due...
Mark Dickinson
2012-12-24
1
-6/+46
*
Issue #6074: Restore the long-broken support for running with read-only sourc...
Nick Coghlan
2012-10-19
1
-0/+6
*
Issue #15604: Update uses of PyObject_IsTrue() to check for and handle errors...
Antoine Pitrou
2012-08-15
1
-2/+11
*
- Issue #15647: Make isdir static for windows and posix
Matthias Klose
2012-08-14
1
-2/+2
*
Issue #14761: Fix potential leak on an error case in the import machinery.
Antoine Pitrou
2012-05-09
1
-1/+2
*
Fix compiler warning related to issue #14331. harmless.
Gregory P. Smith
2012-04-18
1
-1/+2
*
Fixes Issue #14331: Use significantly less stack space when importing modules by
Gregory P. Smith
2012-03-18
1
-31/+95
*
Test in 6c218b9c5c4c was inadvertently converted from #ifdef to #if. Now #ifd...
Jason R. Coombs
2012-03-08
1
-1/+1
*
Fix indentation
Jason R. Coombs
2012-01-13
1
-16/+16
*
Extracted Windows directory detection from NullImporter.__init__. This greatl...
Jason R. Coombs
2012-01-13
1
-47/+24
*
Moved directory detection into an isdir function
Jason R. Coombs
2012-01-13
1
-28/+14
*
Remove debug output, fix assert (hopefully) and exercise signedness issues a ...
Antoine Pitrou
2012-01-25
1
-7/+2
*
Fix temporary debug output (so, time_t is 8 bytes on some Windows builds)
Antoine Pitrou
2012-01-25
1
-1/+1
*
Temporary debug for Windows buildbots.
Antoine Pitrou
2012-01-25
1
-0/+5
*
Make guard more dynamic (apparently the size of a filesystem timestamp may va...
Antoine Pitrou
2012-01-25
1
-8/+8
*
Issue #11235: Fix OverflowError when trying to import a source file whose mod...
Antoine Pitrou
2012-01-24
1
-7/+4
*
Issue #7732: Fix a crash on importing a module if a directory has the same name
Victor Stinner
2011-09-23
1
-3/+1
*
Fix the import machinery if there is an error on sys.path or sys.meta_path
Victor Stinner
2011-09-15
1
-4/+4
*
Remove unused variable if Python is build without threads
Victor Stinner
2011-09-01
1
-0/+2
*
Turned out that if you used explicit relative import syntax
Brett Cannon
2010-05-20
1
-1/+2
*
Untabify C files. Will watch buildbots.
Antoine Pitrou
2010-05-09
1
-2394/+2394
*
Fix whitespace.
Brett Cannon
2010-05-05
1
-8/+8
*
Partially revert the over-reaching r80813.
Brett Cannon
2010-05-05
1
-8/+8
*
Remove three unneeded variable assignments.
Brett Cannon
2010-05-05
1
-8/+8
*
make naming convention consistent
Benjamin Peterson
2010-03-25
1
-2/+2
*
Issue #3137: Don't ignore errors at startup, especially a keyboard interrupt
Victor Stinner
2010-03-10
1
-2/+0
*
Issue #7242: On Solaris 9 and earlier calling os.fork() from within a
Gregory P. Smith
2010-03-01
1
-4/+8
*
Issue #2333: Backport set and dict comprehensions syntax.
Alexandre Vassalotti
2010-01-11
1
-1/+2
*
Issue #2335: Backport set literals syntax from Python 3.x.
Alexandre Vassalotti
2010-01-09
1
-1/+2
*
Fix issue #1590864, multiple threads and fork() can cause deadlocks, by
Thomas Wouters
2009-09-16
1
-19/+12
*
Better name a variable: 'buf' seems to imply a mutable buffer.
Amaury Forgeot d'Arc
2009-07-25
1
-7/+7
*
Update issue 6070 patch to match the patch that was actually tested
R. David Murray
2009-07-07
1
-1/+3
*
Issue 6070: when creating a compiled file, after copying the mode bits, on
R. David Murray
2009-07-07
1
-1/+3
*
add a SETUP_WITH opcode
Benjamin Peterson
2009-05-25
1
-1/+2
*
Fix two issues introduced by issue #71031 by changing the signature of
Brett Cannon
2009-04-02
1
-1/+1
*
PyImport_AppendInittab() took a char * as a first argument even though that
Brett Cannon
2009-04-02
1
-1/+1
*
Backport r69961 to trunk, replacing JUMP_IF_{TRUE,FALSE} with
Jeffrey Yasskin
2009-02-28
1
-1/+3
*
Issue 3677: Fix import from UNC paths on Windows.
Kristján Valur Jónsson
2009-01-09
1
-15/+19
*
Issue #1180193: When importing a module from a .pyc (or .pyo) file with
Antoine Pitrou
2009-01-06
1
-0/+45
*
Issue #4817: Remove unused function PyOS_GetLastModificationTime.
Martin v. Löwis
2009-01-03
1
-2/+0
*
Issue #2183: Simplify and optimize bytecode for list comprehensions.
Antoine Pitrou
2008-12-17
1
-1/+2
*
Fix compilation when --without-threads is given #3683
Benjamin Peterson
2008-09-01
1
-1/+4
*
Add imp.reload(). This to help with transitioning to 3.0 the reload() built-in
Brett Cannon
2008-08-06
1
-0/+13
[next]