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
*
Hide list comp variables and support set comprehensions
Nick Coghlan
2007-04-15
4
-44
/
+52
*
Rough and dirty job -- allow concatenation of bytes and arbitrary
Guido van Rossum
2007-04-13
1
-0
/
+1
*
Patch #1680961: remove sys.exitfunc and replace it with a private C API. Also...
Collin Winter
2007-03-21
1
-0
/
+4
*
Make ELLIPSIS a separate token. This makes it a syntax error to write ". . ...
Georg Brandl
2007-03-18
1
-3
/
+4
*
Remove the deprecated and useless "pend" argument from
Georg Brandl
2007-03-18
1
-4
/
+2
*
Implement PEP 3115 -- new metaclass syntax and semantics.
Guido van Rossum
2007-03-18
2
-7
/
+11
*
SF patch #1669633, add methods for bytes from Pete Shinners.
Neal Norwitz
2007-02-27
1
-0
/
+2
*
I assume this was supposed to be Py_ssize_t since there are no uses of plain ...
Neal Norwitz
2007-02-27
1
-1
/
+1
*
Provisional implementation of PEP 3104.
Jeremy Hylton
2007-02-27
3
-61
/
+71
*
Whoops, fix build breakage. There were still a few uses of the bool type.
Neal Norwitz
2007-02-26
1
-4
/
+0
*
Merged revisions 53875-53911 via svnmerge from
Thomas Wouters
2007-02-25
8
-13
/
+31
*
Make bytes_repr return a string containing a b"" literal.
Georg Brandl
2007-02-24
1
-1
/
+0
*
Prevent regeneration.
Thomas Wouters
2007-02-23
1
-0
/
+1
*
Bytes literal.
Thomas Wouters
2007-02-23
2
-4
/
+10
*
Merged revisions 53623-53858 via svnmerge from
Thomas Wouters
2007-02-23
2
-1
/
+4
*
- PEP 3106: dict.iterkeys(), .iteritems(), .itervalues() are now gone;
Guido van Rossum
2007-02-11
1
-22
/
+13
*
Kill off softspace completely (except in formatter.py which seems to have
Guido van Rossum
2007-02-09
2
-4
/
+0
*
* Remove PRINT_ITEM(_TO), PRINT_NEWLINE(_TO) opcodes.
Georg Brandl
2007-02-09
2
-19
/
+6
*
Essential changes for print function changes.
Guido van Rossum
2007-02-09
1
-68
/
+67
*
Merged revisions 53451-53537 via svnmerge from
Thomas Wouters
2007-02-01
2
-90
/
+150
*
Merged the int/long unification branch, by very crude means (sorry Thomas!).
Guido van Rossum
2007-01-14
4
-25
/
+22
*
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
[next]