index
:
delta/cpython.git
2.0
2.1
2.2
2.3
2.4
2.5
2.6
2.7
3.0
3.1
3.2
3.3
3.4
3.5
3.6
baserock/2.7.9-mips64
baserock/markdoffman/py2-symlink
baserock/markdoffman/py2-symlink-v2
baserock/morph-2.7
legacy-trunk
master
summary
refs
log
tree
commit
diff
log msg
author
committer
range
path:
root
/
Include
Commit message (
Expand
)
Author
Age
Files
Lines
...
*
Some more changes related to the new except syntax and semantics,
Guido van Rossum
2007-01-10
1
-3
/
+3
*
PEP 3107 - Function Annotations thanks to Tony Lownds
Neal Norwitz
2006-12-28
4
-83
/
+118
*
Cruft removal:
Neal Norwitz
2006-12-28
2
-91
/
+1
*
Remove PyFloat_AsReprString() and PyFloat_AsString() which should not
Neal Norwitz
2006-12-28
1
-14
/
+5
*
Patch #1601678: move intern() to sys.intern().
Georg Brandl
2006-12-19
1
-1
/
+1
*
Four months of trunk changes (including a few releases...)
Thomas Wouters
2006-12-13
3
-3
/
+17
*
- patch #1600346 submitted by Tomer Filiba
Jack Diederich
2006-11-28
1
-1
/
+1
*
Jiwon Seo's PEP 3102 implementation.
Guido van Rossum
2006-10-27
4
-5
/
+15
*
Patch #1550786: ellipsis literal.
Georg Brandl
2006-09-06
1
-4
/
+5
*
Patch #1550800: make exec a function.
Georg Brandl
2006-09-06
4
-66
/
+55
*
Get rid of more coerce cruft (really check in this time :-)
Neal Norwitz
2006-08-29
1
-1
/
+0
*
Get rid of some more cases of backquotes. parsermodule.c doesn't compile
Neal Norwitz
2006-08-29
1
-1
/
+1
*
SF patch 1547796 by Georg Brandl -- set literals.
Guido van Rossum
2006-08-28
3
-10
/
+16
*
SF patch 1546297 (with some tweaks):
Guido van Rossum
2006-08-25
1
-0
/
+3
*
Remove the UNARY_CONVERT opcode (was used for backticks). Also bumped up the
Brett Cannon
2006-08-25
2
-9
/
+2
*
Restructure comparison dramatically. There is no longer a default
Guido van Rossum
2006-08-24
1
-0
/
+1
*
Change the way __hash__ is inherited; when __eq__ or __cmp__ is overridden
Guido van Rossum
2006-08-21
1
-0
/
+1
*
Merge current trunk into p3yk. This includes the PyNumber_Index API change,
Thomas Wouters
2006-08-21
6
-5
/
+46
*
Get rid of most of the rest of coerce (slot is still there for now).
Neal Norwitz
2006-08-21
2
-19
/
+0
*
Get rid of dict.has_key(). Boy this has a lot of repercussions!
Guido van Rossum
2006-08-18
1
-2
/
+2
*
Completely get rid of PyClass and PyInstance.
Guido van Rossum
2006-08-17
5
-58
/
+9
*
Merged revisions 46753-51188 via svnmerge from
Thomas Wouters
2006-08-11
10
-14
/
+33
*
Get rid of most of the flags (in tp_flags) that keep track of various
Guido van Rossum
2006-07-27
3
-50
/
+6
*
Merge the rest of the trunk.
Thomas Wouters
2006-06-08
2
-0
/
+7
*
Partially merge trunk into p3yk. The removal of Mac/Tools is confusing svn
Thomas Wouters
2006-06-08
3
-14
/
+32
*
Much-needed merge (using svnmerge.py this time) of trunk changes into p3yk.
Thomas Wouters
2006-05-27
8
-15
/
+181
*
Optimizations for bytes reallocation.
Guido van Rossum
2006-05-05
1
-0
/
+1
*
Added much functionality to the bytes type.
Guido van Rossum
2006-04-24
1
-2
/
+3
*
Here is a bytes type. It's very minimal but it's a start.
Guido van Rossum
2006-04-22
2
-0
/
+48
*
Merge p3yk branch with the trunk up to revision 45595. This breaks a fair
Thomas Wouters
2006-04-21
13
-57
/
+179
*
Merge part of the trunk changes into the p3yk branch. This merges from 43030
Thomas Wouters
2006-04-21
1
-4
/
+18
*
Get rid of remnants of integer division
Neal Norwitz
2006-03-24
1
-3
/
+0
*
Remove staticforward and statichere
Neal Norwitz
2006-03-22
1
-15
/
+0
*
Remove PyArg_NoArgs() and PyArg_GetInt()
Neal Norwitz
2006-03-17
1
-7
/
+0
*
INPLACE_DIVIDE is no longer necessary (INPLACE_TRUE_DIVIDE is used).
Neal Norwitz
2006-03-17
1
-1
/
+1
*
_Py_QnewFlag and INPLACE_DIVIDE are not necessary any longer
Neal Norwitz
2006-03-17
1
-4
/
+0
*
This gets at least test_cmd_line working again and a few more modules built.
Neal Norwitz
2006-03-17
1
-1
/
+1
*
Remove some old types for int based functions (Py_ssize_t is da thing now.)
Neal Norwitz
2006-03-17
1
-9
/
+0
*
Whitespace changes. Also remove apply from a few comments
Neal Norwitz
2006-03-17
1
-87
/
+21
*
Get rid of last vestiges of BINARY_DIVIDE.
Neal Norwitz
2006-03-16
1
-1
/
+1
*
Checkpoint. 218 tests are okay; 53 are failing. Done so far:
Guido van Rossum
2006-03-15
5
-29
/
+19
*
Avoid forward-declaring the methods array.
Martin v. Löwis
2006-03-10
1
-1
/
+1
*
Update Unicode database to Unicode 4.1.
Martin v. Löwis
2006-03-09
1
-3
/
+5
*
Checking in the code for PEP 357.
Guido van Rossum
2006-03-07
2
-1
/
+16
*
Make PyGC_Collect() use Py_ssize_t.
Neal Norwitz
2006-03-04
1
-1
/
+1
*
Use Py_ssize_t for _Py_RefTotal.
Neal Norwitz
2006-03-04
1
-1
/
+1
*
Change some sequnce APIs to use Py_ssize_t.
Neal Norwitz
2006-03-04
1
-4
/
+4
*
Use Py_ssize_t for PySet_Size() like all the other Py*_Size() functions.
Neal Norwitz
2006-03-04
1
-1
/
+1
*
Added words about what PyArena_Malloc() does.
Tim Peters
2006-03-02
1
-4
/
+16
*
Beefed up description of what this does; new XXX.
Tim Peters
2006-03-02
1
-2
/
+10
[prev]
[next]