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
*
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
*
Merged revisions 53952-54987 via svnmerge from
Guido van Rossum
2007-04-27
1
-3/+36
*
Patch #1680961: remove sys.exitfunc and replace it with a private C API. Also...
Collin Winter
2007-03-21
1
-1/+1
*
Implement PEP 3115 -- new metaclass syntax and semantics.
Guido van Rossum
2007-03-18
1
-1/+2
*
Essential changes for print function changes.
Guido van Rossum
2007-02-09
1
-1/+2
*
Update the magic number now that signature annotations were added.
Guido van Rossum
2006-12-28
1
-1/+2
*
Four months of trunk changes (including a few releases...)
Thomas Wouters
2006-12-13
1
-6/+11
*
Jiwon Seo's PEP 3102 implementation.
Guido van Rossum
2006-10-27
1
-1/+2
*
SF patch 1547796 by Georg Brandl -- set literals.
Guido van Rossum
2006-08-28
1
-1/+2
*
Remove the UNARY_CONVERT opcode (was used for backticks). Also bumped up the
Brett Cannon
2006-08-25
1
-1/+2
*
Merge current trunk into p3yk. This includes the PyNumber_Index API change,
Thomas Wouters
2006-08-21
1
-1/+6
*
Merged revisions 46753-51188 via svnmerge from
Thomas Wouters
2006-08-11
1
-45/+156
*
Partially merge trunk into p3yk. The removal of Mac/Tools is confusing svn
Thomas Wouters
2006-06-08
1
-3/+5
*
Much-needed merge (using svnmerge.py this time) of trunk changes into p3yk.
Thomas Wouters
2006-05-27
1
-12/+63
*
Merge p3yk branch with the trunk up to revision 45595. This breaks a fair
Thomas Wouters
2006-04-21
1
-3/+22
*
Checkpoint. 218 tests are okay; 53 are failing. Done so far:
Guido van Rossum
2006-03-15
1
-2/+3
*
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
*
This is my patch:
Michael W. Hudson
2005-06-03
1
-1/+2
*
Patch #1197318: Cygwin case-sensitive import patch
Jason Tishler
2005-05-20
1
-17/+6
*
SF patch #1035498: -m option to run a module as a script
Raymond Hettinger
2004-10-07
1
-0/+16
*
Fix for SF bug #1029475 : reload() doesn't work with PEP 302 loaders.
Phillip J. Eby
2004-09-23
1
-4/+10
*
SF patch #1031667: Fold tuples of constants into a single constant
Raymond Hettinger
2004-09-22
1
-1/+2
*
SF Patch #1013667: Cleanup Peepholer Output
Raymond Hettinger
2004-08-23
1
-1/+2
[next]