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
/
compile.c
Commit message (
Expand
)
Author
Age
Files
Lines
*
- Removed FutureWarnings related to hex/oct literals and conversions
Guido van Rossum
2003-11-29
1
-13/+1
*
Patch #792869: Clarify error message for parameters declared global,
Martin v. Löwis
2003-10-18
1
-4/+3
*
Simplify and speedup uses of Py_BuildValue():
Raymond Hettinger
2003-10-12
1
-2/+2
*
Fix SF bug [ 808594 ] leak on lambda with duplicate arguments error.
Jeremy Hylton
2003-09-22
1
-15/+16
*
Improve the leak fix so that PyTuple_New is only called when needed.
Raymond Hettinger
2003-09-16
1
-9/+11
*
Fix leak discovered in test_new by Michael Hudson.
Raymond Hettinger
2003-09-15
1
-17/+14
*
Fix for SF bug [ 784075 ] Fatal Python error: unknown scope
Jeremy Hylton
2003-08-28
1
-4/+12
*
SF patch 763201: handling of SyntaxErrors in symbol table build
Jeremy Hylton
2003-07-15
1
-33/+47
*
Removed bytecode transformation for sequence packing/unpacking.
Raymond Hettinger
2003-06-20
1
-28/+0
*
SF bug #644345, Poor error message for augmented assign
Neal Norwitz
2003-05-22
1
-2/+2
*
Use macro to get length of list.
Jeremy Hylton
2003-05-22
1
-8/+2
*
Remove comment with very long lines that explained what the code used
Jeremy Hylton
2003-05-22
1
-3/+3
*
Fix for SF [ 734869 ] Lambda functions in list comprehensions
Jeremy Hylton
2003-05-21
1
-14/+23
*
cmp_type(): The grammar stopped allowing '=' as a comparison operator
Tim Peters
2003-05-12
1
-3/+2
*
Patch #734231: Update RiscOS support. In particular, correct
Martin v. Löwis
2003-05-10
1
-1/+1
*
Patch #708604: Check more function results. Will backport to 2.2.
Martin v. Löwis
2003-05-03
1
-7/+37
*
Use Tim's suggestion to fix
Michael W. Hudson
2003-04-29
1
-1/+1
*
Revert the previous enhancement to the bytecode optimizer.
Raymond Hettinger
2003-04-24
1
-83/+9
*
Improved the bytecode optimizer.
Raymond Hettinger
2003-04-22
1
-9/+83
*
Extend SF patch #707257: Improve code generation
Raymond Hettinger
2003-04-15
1
-8/+20
*
Factored out test for absolute jumps.
Raymond Hettinger
2003-03-28
1
-2/+3
*
SF patch #707257: Improve code generation
Raymond Hettinger
2003-03-26
1
-2/+94
*
symtable_cellvar_offsets(): This leaked references to little integers
Tim Peters
2003-03-24
1
-1/+5
*
SF #660455 : patch by NNorwitz.
Guido van Rossum
2003-02-12
1
-1/+2
*
patch #683515: "Add unicode support to compile(), eval() and exec"
Just van Rossum
2003-02-10
1
-1/+3
*
Small function call optimization and special build option for call stats.
Jeremy Hylton
2003-02-05
1
-0/+3
*
A. Lloyd Flanagan pointed out a spelling error on c.l.py.
Michael W. Hudson
2003-01-16
1
-1/+1
*
SF patch [ 597919 ] compiler package and SET_LINENO
Jeremy Hylton
2002-12-31
1
-0/+3
*
Oops. Roll back that last change. It wasn't ready for release. :-(
Guido van Rossum
2002-12-23
1
-96/+30
*
Add warning for assignment to None, True and False. This is patch
Guido van Rossum
2002-12-23
1
-30/+96
*
SF # 654960, remove unnecessary static variable
Neal Norwitz
2002-12-18
1
-9/+3
*
Fixing bug
Gustavo Niemeyer
2002-12-16
1
-2/+2
*
Constify filenames and scripts. Fixes #651362.
Martin v. Löwis
2002-12-11
1
-11/+13
*
Move three variables that are only used inside an if block into the block,
Walter Dörwald
2002-11-21
1
-3/+3
*
Clamp code objects' tp_compare result to [-1, 1].
Michael W. Hudson
2002-10-03
1
-3/+3
*
Further SET_LINENO reomval fixes. See comments in patch #587933.
Michael W. Hudson
2002-08-30
1
-3/+12
*
Add warnings for arguments named None. All set. (I could add a
Guido van Rossum
2002-08-16
1
-1/+9
*
Add warning for None used as keyword argument name in function call.
Guido van Rossum
2002-08-16
1
-0/+1
*
Add warnings for assignment or deletion of variables and attributes
Guido van Rossum
2002-08-16
1
-0/+27
*
Minor cleanup of parsename() and parsestr(): the 'struct compiling *'
Guido van Rossum
2002-08-16
1
-13/+13
*
This is my patch
Michael W. Hudson
2002-08-15
1
-29/+16
*
Added a FutureWarning for constructs that will change semantically in
Barry Warsaw
2002-08-14
1
-1/+1
*
Patch #505705: Remove eval in pickle and cPickle.
Martin v. Löwis
2002-08-14
1
-98/+5
*
Use PyErr_WarnExplicit() to warn about hex/oct constants, so the
Guido van Rossum
2002-08-12
1
-4/+9
*
Reset errno to zero after calling PyErr_Warn(). It can potentially do
Guido van Rossum
2002-08-11
1
-0/+1
*
Implement stage B0 of PEP 237: add warnings for operations that
Guido van Rossum
2002-08-11
1
-1/+9
*
Use Py_FatalError instead of abort.
Martin v. Löwis
2002-08-07
1
-2/+3
*
Fix PEP 263 code --without-unicode. Fixes #591943.
Martin v. Löwis
2002-08-07
1
-0/+10
*
Patch #534304: Implement phase 1 of PEP 263.
Martin v. Löwis
2002-08-04
1
-10/+113
*
SF patch #578297:
Andrew MacIntyre
2002-08-04
1
-7/+7
[next]