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
*
Second half of #1752175: #ifdef out references to PyImport_DynLoadFiletab if ...
Georg Brandl
2007-08-23
1
-1/+5
*
Revert accidental checkins from last commit.
Georg Brandl
2007-08-21
1
-10/+0
*
Demand version 2.5.1 since 2.5 has a bug with codecs.open context managers.
Georg Brandl
2007-08-21
1
-0/+10
*
PEP 3123: Provide forward compatibility with Python 3.0, while keeping
Martin v. Löwis
2007-07-21
1
-2/+1
*
Fix indentation (whitespace only).
Neal Norwitz
2007-05-30
1
-2/+2
*
Make pythoncore compile cleanly with VisualStudio 2005. Used an explicit typ...
Kristján Valur Jónsson
2007-04-25
1
-0/+1
*
Inline PyImport_GetModulesReloading().
Collin Winter
2007-03-13
1
-11/+8
*
Fix some style nits:
Neal Norwitz
2007-03-13
1
-13/+15
*
Bug #742342: make Python stop segfaulting on infinitely-recursive reload()s. ...
Collin Winter
2007-03-12
1
-2/+35
*
Typos.
Georg Brandl
2007-03-10
1
-1/+1
*
Update the peephole optimizer to remove more dead code (jumps after returns)
Neal Norwitz
2006-10-14
1
-1/+2
*
Fix minor typo in a comment.
Brett Cannon
2006-10-03
1
-1/+1
*
Very minor grammatical fix in a comment.
Brett Cannon
2006-09-28
1
-1/+1
*
Properly handle a NULL returned from PyArena_New().
Neal Norwitz
2006-09-11
1
-2/+4
*
Bug #1550983: emit better error messages for erroneous relative
Georg Brandl
2006-09-06
1
-2/+3
*
Bug #1520864 (again): unpacking singleton tuples in list comprehensions and
Neal Norwitz
2006-09-05
1
-1/+2
*
cpathname could be NULL if it was longer than MAXPATHLEN. Don't try
Neal Norwitz
2006-08-13
1
-1/+6
*
There were really two issues
Neal Norwitz
2006-08-04
1
-1/+2
*
Bug #1191458: tracing over for loops now produces a line event
Neal Norwitz
2006-08-04
1
-1/+2
*
Patch #1531113: Fix augmented assignment with yield expressions.
Neal Norwitz
2006-07-30
1
-2/+3
*
Bug #1529871: The speed enhancement patch #921466 broke Python's compliance
Phillip J. Eby
2006-07-28
1
-34/+132
*
Speel initialise write. Tanks Anthony.
Neal Norwitz
2006-07-21
1
-1/+1
*
Handle allocation failures gracefully. Found with failmalloc.
Neal Norwitz
2006-07-21
1
-2/+7
*
Fix memory leak under some conditions.
Neal Norwitz
2006-07-16
1
-7/+9
*
Actually change the MAGIC #. Create a new section for 2.5c1 and mention the ...
Neal Norwitz
2006-07-12
1
-1/+1
*
Bug #1520864: unpacking singleton tuples in for loop (for x, in) work again.
Neal Norwitz
2006-07-12
1
-0/+1
*
Fix refleaks reported by Shane Hathaway in SF patch #1515361. This change
Neal Norwitz
2006-07-06
1
-2/+4
*
Correct None refcount issue in Mac modules. (Are they
Georg Brandl
2006-05-28
1
-1/+1
*
The empty string is a valid import path.
Georg Brandl
2006-05-28
1
-2/+4
*
Need for speed: Patch #921466 : sys.path_importer_cache is now used to cache ...
Georg Brandl
2006-05-26
1
-2/+30
*
Replace PyObject_CallFunction calls with only object args
Georg Brandl
2006-05-25
1
-3/+3
*
- Add new Warning class, ImportWarning
Thomas Wouters
2006-04-27
1
-7/+30
*
spread the extern "C" { } magic pixie dust around. Python itself builds now
Anthony Baxter
2006-04-13
1
-0/+7
*
Fix refleak in __import__("") (probably the cause of the 2 refleaks in
Thomas Wouters
2006-04-05
1
-0/+2
*
Fix __import__("") to raise ValueError rather than return None.
Thomas Wouters
2006-04-04
1
-1/+10
*
Found this in an old email message from Hartmut Goebel.
Skip Montanaro
2006-03-25
1
-0/+1
*
Use macro versions instead of function versions when we already know the type.
Neal Norwitz
2006-03-20
1
-2/+2
*
Um, I thought I'd already checked this in.
Guido van Rossum
2006-03-10
1
-0/+1
*
Change int to Py_ssize_t in several places.
Martin v. Löwis
2006-03-07
1
-4/+4
*
SF patch #1438387, PEP 328: relative and absolute imports.
Thomas Wouters
2006-02-28
1
-13/+56
*
PEP 343 -- the with-statement.
Guido van Rossum
2006-02-27
1
-1/+2
*
Merge ssize_t branch.
Martin v. Löwis
2006-02-15
1
-16/+18
*
Check return result from Py_InitModule*(). This API can fail.
Neal Norwitz
2006-01-19
1
-0/+2
*
Merge from ast-arena. This reduces the code in Python/ast.c by ~300 lines,
Neal Norwitz
2005-12-17
1
-3/+5
*
Add const to several API functions that take char *.
Jeremy Hylton
2005-12-10
1
-2/+2
*
the ast-branch changed the stack discipline of MAKE_CLOSURE, so we need to
Michael W. Hudson
2005-10-21
1
-1/+3
*
Merge ast-branch to head
Jeremy Hylton
2005-10-20
1
-11/+12
*
Fix SF bug #976608, Unhelpful error message when mtime of a module is -1
Neal Norwitz
2005-10-03
1
-1/+5
*
- Changes donated by Elemental Security to make it work on AIX 5.3
Guido van Rossum
2005-09-14
1
-0/+12
*
Patch #1290454: Fix reload() error message when parent module is not in
Georg Brandl
2005-09-14
1
-2/+3
[next]