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
*
Issue #1950: Fixed misusage of PyUnicode_AsString().
Alexandre Vassalotti
2008-05-03
1
-4/+9
*
There is no reason for imp.get_magic() to return a mutable bytearray
Amaury Forgeot d'Arc
2008-04-24
1
-1/+1
*
Merged revisions 61954,61956-61957 via svnmerge from
Christian Heimes
2008-03-26
1
-0/+1
*
Merged revisions 61952-61953 via svnmerge from
Christian Heimes
2008-03-26
1
-1/+2
*
Properly terminate file name.
Martin v. Löwis
2008-03-22
1
-1/+1
*
Merged revisions 61239-61249,61252-61257,61260-61264,61269-61275,61278-61279,...
Christian Heimes
2008-03-16
1
-2/+3
*
Merged revisions 61003-61033 via svnmerge from
Christian Heimes
2008-02-24
1
-0/+5
*
Merged revisions 60990-61002 via svnmerge from
Christian Heimes
2008-02-23
1
-13/+14
*
Merged revisions 60441-60474 via svnmerge from
Christian Heimes
2008-01-31
1
-0/+2
*
Good catch Neal!
Christian Heimes
2008-01-11
1
-1/+2
*
Merged revisions 59864-59882 via svnmerge from
Christian Heimes
2008-01-10
1
-0/+10
*
Merged revisions 59822-59841 via svnmerge from
Christian Heimes
2008-01-07
1
-3/+6
*
Another patch for #1762972: __file__ points to the py file instead pyo/pyc file
Christian Heimes
2008-01-07
1
-4/+38
*
Issue #1762972: Readded the reload() function as imp.reload()
Christian Heimes
2008-01-07
1
-0/+12
*
Merged revisions 59666-59679 via svnmerge from
Christian Heimes
2008-01-03
1
-23/+51
*
Merged revisions 59541-59561 via svnmerge from
Christian Heimes
2007-12-19
1
-2/+3
*
Manual merge of PEP 366 implementation from trunk (the automatic merge choked...
Nick Coghlan
2007-12-04
1
-26/+86
*
Add an errors parameter to open() and TextIOWrapper() to specify error handling.
Guido van Rossum
2007-12-03
1
-1/+1
*
Cleanup: Replaced most PyInt_ aliases with PyLong_ and disabled the aliases i...
Christian Heimes
2007-12-02
1
-2/+2
*
#1535: rename __builtin__ module to builtins.
Georg Brandl
2007-12-02
1
-13/+13
*
Merged revisions 59005-59040 via svnmerge from
Christian Heimes
2007-11-18
1
-7/+20
*
Cosmetic changes to Christian's patch r58903.
Guido van Rossum
2007-11-07
1
-6/+4
*
Patch for bug http://bugs.python.org/issue1293
Christian Heimes
2007-11-07
1
-1/+19
*
Merging the py3k-pep3137 branch back into the py3k branch.
Guido van Rossum
2007-11-06
1
-4/+5
*
Applied patch #1379 with a minor tweak.
Christian Heimes
2007-11-04
1
-2/+2
*
Patch 1329 (partial) by Christian Heimes.
Guido van Rossum
2007-10-30
1
-1/+1
*
Issue 1267, continued.
Guido van Rossum
2007-10-22
1
-4/+13
*
Fix a memory leak caused by PyTokenizer_FindEncoding() returning a char * that
Brett Cannon
2007-10-20
1
-3/+8
*
Patch 1267 by Christian Heimes.
Guido van Rossum
2007-10-19
1
-1/+12
*
Patch #1272, by Christian Heimes and Alexandre Vassalotti.
Guido van Rossum
2007-10-15
1
-4/+5
*
Convert code from sys.stdin.encoding to UTF-8 in
Martin v. Löwis
2007-09-04
1
-1/+2
*
Update import.c's MAGIC value for the new raise syntax (as opposed to merely ...
Collin Winter
2007-08-31
1
-1/+1
*
Issue #1066: implement PEP 3109, 2/3 of PEP 3134.
Collin Winter
2007-08-31
1
-0/+1
*
Some changes in preparation of stricter rules about mixing str and bytes.
Guido van Rossum
2007-08-27
1
-2/+9
*
Use unicode and remove support for some uses of str8.
Neal Norwitz
2007-08-26
1
-29/+10
*
Fix a couple of warnings
Neal Norwitz
2007-08-26
1
-1/+1
*
Merged revisions 57221-57391 via svnmerge from
Guido van Rossum
2007-08-24
1
-1/+5
*
Remove RISCOS support
Skip Montanaro
2007-08-16
1
-106/+0
*
PyErr_Warn is deprecated in 2.5 - goes away for 3.0
Skip Montanaro
2007-08-12
1
-4/+4
*
SF patch# 1766592 by Paul Colomiets.
Guido van Rossum
2007-08-03
1
-1/+1
*
Fix import of frozen package submodules to use Unicode. Fixes test_frozen.
Guido van Rossum
2007-07-23
1
-3/+4
*
Merged revisions 56467-56482 via svnmerge from
Martin v. Löwis
2007-07-21
1
-2/+1
*
Rip out the file object's implementation.
Guido van Rossum
2007-06-12
1
-20/+17
*
Revert 55876. Use PyUnicode_AsEncodedString instead.
Martin v. Löwis
2007-06-12
1
-3/+3
*
Make identifiers str (not str8) objects throughout.
Martin v. Löwis
2007-06-10
1
-11/+45
*
Merged revisions 55631-55794 via svnmerge from
Guido van Rossum
2007-06-06
1
-3/+2
*
More uniform approach to getting (UTF8) bytes out of a string.
Guido van Rossum
2007-05-09
1
-30/+3
*
More coding by random modification.
Guido van Rossum
2007-05-04
1
-5/+17
*
Get rid of all #ifdef Py_USING_UNICODE (it is always present now).
Guido van Rossum
2007-05-03
1
-2/+0
*
Checkpoint. Manipulated things so that string literals are always
Guido van Rossum
2007-04-27
1
-1/+1
[next]