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
/
ceval.c
Commit message (
Expand
)
Author
Age
Files
Lines
*
#1629: Renamed Py_Size, Py_Type and Py_Refcnt to Py_SIZE, Py_TYPE and Py_REFCNT.
Christian Heimes
2007-12-19
1
-2/+2
*
Merged revisions 59541-59561 via svnmerge from
Christian Heimes
2007-12-19
1
-1/+13
*
Merged revisions 59488-59511 via svnmerge from
Christian Heimes
2007-12-15
1
-2/+3
*
Merged revisions 59333-59370 via svnmerge from
Christian Heimes
2007-12-05
1
-1/+1
*
Remove PyInt_CheckExact. Add PyLong_AsLongAndOverflow.
Martin v. Löwis
2007-12-04
1
-8/+1
*
Remove special-casing of integer operations, to stop
Martin v. Löwis
2007-12-04
1
-91/+6
*
Cleanup: Replaced most PyInt_ aliases with PyLong_ and disabled the aliases i...
Christian Heimes
2007-12-02
1
-25/+25
*
fix #1409: cell variables were not initialized,
Amaury Forgeot d'Arc
2007-11-24
1
-1/+1
*
Correction for issue1265 (pdb bug with "with" statement).
Amaury Forgeot d'Arc
2007-11-13
1
-7/+12
*
Merged revisions 58886-58929 via svnmerge from
Guido van Rossum
2007-11-10
1
-0/+11
*
Merging the py3k-pep3137 branch back into the py3k branch.
Guido van Rossum
2007-11-06
1
-40/+25
*
Patch #1272, by Christian Heimes and Alexandre Vassalotti.
Guido van Rossum
2007-10-15
1
-8/+8
*
Merged revisions 58211-58220 via svnmerge from
Thomas Wouters
2007-09-20
1
-37/+49
*
Whitespace cleanup.
Thomas Wouters
2007-09-19
1
-38/+39
*
Merged revisions 58203-58210 via svnmerge from
Thomas Wouters
2007-09-19
1
-23/+23
*
Fix refleaks exposed by test_raise.
Collin Winter
2007-09-01
1
-2/+2
*
Issue #1066: implement PEP 3109, 2/3 of PEP 3134.
Collin Winter
2007-08-31
1
-77/+57
*
Remove the simple slicing API. All slicing is now done with slice objects.
Thomas Wouters
2007-08-30
1
-131/+0
*
Use unicode
Neal Norwitz
2007-08-26
1
-8/+8
*
Merged revisions 56467-56482 via svnmerge from
Martin v. Löwis
2007-07-21
1
-2/+2
*
Merged revisions 56020-56124 via svnmerge from
Guido van Rossum
2007-06-30
1
-1/+1
*
Make identifiers str (not str8) objects throughout.
Martin v. Löwis
2007-06-10
1
-7/+18
*
Merged revisions 55631-55794 via svnmerge from
Guido van Rossum
2007-06-06
1
-9/+0
*
Change PyErr_Format() to generate a unicode string (by using
Walter Dörwald
2007-05-25
1
-23/+19
*
Merged revisions 55407-55513 via svnmerge from
Guido van Rossum
2007-05-22
1
-10/+29
*
Merged revisions 55325-55327 via svnmerge from
Guido van Rossum
2007-05-14
1
-1/+0
*
Merged revisions 55270-55324 via svnmerge from
Guido van Rossum
2007-05-14
1
-7/+0
*
Merged revisions 55225-55227,55229-55269 via svnmerge from
Guido van Rossum
2007-05-11
1
-15/+61
*
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
-7/+5
*
Hide list comp variables and support set comprehensions
Nick Coghlan
2007-04-15
1
-0/+12
*
Implement PEP 3115 -- new metaclass syntax and semantics.
Guido van Rossum
2007-03-18
1
-73/+16
*
Make it so TypeError is raised if an instance of an object is put in an
Brett Cannon
2007-02-26
1
-19/+8
*
Two more patches by Tony Lownds (SF# 1607548).
Guido van Rossum
2007-02-26
1
-28/+7
*
You can no longer catch non-BaseException objects; TypeError is raised if such
Brett Cannon
2007-02-26
1
-19/+23
*
Merged revisions 53912-53951 via svnmerge from
Thomas Wouters
2007-02-26
1
-2/+4
*
Fix a refleak in the MAKE_FUNCTION opcode in ceval.c.
Georg Brandl
2007-02-26
1
-0/+2
*
Bytes literal.
Thomas Wouters
2007-02-23
1
-0/+13
*
Kill off softspace completely (except in formatter.py which seems to have
Guido van Rossum
2007-02-09
1
-11/+0
*
* Remove PRINT_ITEM(_TO), PRINT_NEWLINE(_TO) opcodes.
Georg Brandl
2007-02-09
1
-76/+0
*
Merged revisions 53538-53622 via svnmerge from
Thomas Wouters
2007-02-05
1
-2/+32
*
Fix minor grammar typo.
Brett Cannon
2007-01-29
1
-1/+1
*
Merged the int/long unification branch, by very crude means (sorry Thomas!).
Guido van Rossum
2007-01-14
1
-1/+1
*
Merged revisions 53005-53303 via svnmerge from
Thomas Wouters
2007-01-09
1
-1/+10
*
PEP 3107 - Function Annotations thanks to Tony Lownds
Neal Norwitz
2006-12-28
1
-0/+28
*
Four months of trunk changes (including a few releases...)
Thomas Wouters
2006-12-13
1
-3/+5
*
Make it compile with older compilers.
Guido van Rossum
2006-11-22
1
-3/+3
*
Jiwon Seo's PEP 3102 implementation.
Guido van Rossum
2006-10-27
1
-14/+64
*
Patch #1550800: make exec a function.
Georg Brandl
2006-09-06
1
-117/+0
*
SF patch 1547796 by Georg Brandl -- set literals.
Guido van Rossum
2006-08-28
1
-0/+18
[next]