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
*
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
*
remove spurious SET_LINENO from com_list_for and com_list_if. All they do
Skip Montanaro
2002-07-25
1
-2/+0
*
SF 569257 -- Name mangle double underscored variable names in __slots__.
Raymond Hettinger
2002-06-20
1
-6/+6
*
SF patch 568629 by Oren Tirosh: types made callable.
Guido van Rossum
2002-06-14
1
-2/+65
*
Fix SF bug [ 561825 ] Confusing error for "del f()"
Jeremy Hylton
2002-05-31
1
-2/+6
*
Accept u"..." literals even when Unicode is disabled. But these
Guido van Rossum
2002-05-28
1
-8/+13
*
Disambiguate the grammar for backtick.
Guido van Rossum
2002-05-24
1
-0/+5
*
If Py_OptimizeFlag is false then always evaluate assert conditions, don't
Neil Schemenauer
2002-04-26
1
-15/+7
*
Moving pymalloc along.
Tim Peters
2002-04-22
1
-2/+2
*
Patch #542659: Eliminate duplicate check for NULL of freevars/cellvars.
Martin v. Löwis
2002-04-14
1
-4/+0
*
Patch #50002: Display line information for bad \x escapes:
Martin v. Löwis
2002-03-03
1
-14/+26
*
Fix missing space between words. Bugfix candidate.
Neal Norwitz
2002-01-29
1
-1/+1
*
Fix spelling mistakes. Bugfix candidates.
Neal Norwitz
2002-01-29
1
-1/+1
*
A tentative fix for SF bug #503837 (Roeland Rengelink):
Guido van Rossum
2002-01-15
1
-0/+3
*
Patch #494783: Rename cmp_op enumerators.
Martin v. Löwis
2002-01-01
1
-14/+14
*
Fix for SF bug [ #492403 ] exec() segfaults on closure's func_code
Jeremy Hylton
2001-12-13
1
-3/+3
*
SF bug #488687 reported by Neal Norwitz
Jeremy Hylton
2001-12-04
1
-1/+1
*
code_repr(), com_addop_varname(), com_list_comprehension(),
Barry Warsaw
2001-11-28
1
-32/+42
*
Fixes for possible buffer overflows in sprintf() usages.
Marc-André Lemburg
2001-11-28
1
-1/+1
*
Use PyObject_CheckReadBuffer().
Jeremy Hylton
2001-11-09
1
-11/+2
*
Fix SF buf #480096: Assign to __debug__ still allowed
Jeremy Hylton
2001-11-09
1
-2/+7
*
Part of SF bug #478003 possible memory leaks in err handling.
Tim Peters
2001-11-04
1
-1/+4
*
Fix for SF bug [ #471928 ] global made w/nested list comprehensions
Jeremy Hylton
2001-10-18
1
-19/+51
*
Fix computation of stack depth for classdef and closures.
Jeremy Hylton
2001-10-17
1
-44/+44
*
Very subtle syntax change: in a list comprehension, the testlist in
Guido van Rossum
2001-10-15
1
-0/+1
*
Add optional docstrings to member descriptors. For backwards
Guido van Rossum
2001-09-20
1
-1/+1
*
Supply code objects a new-style tp_members slot and tp_getattr impl.
Jeremy Hylton
2001-09-14
1
-16/+34
*
SF bug [#458941] Looks like a unary minus bug.
Tim Peters
2001-09-07
1
-16/+49
*
When re-writing a factor containing a unary negation of a literal, only
Fred Drake
2001-08-30
1
-0/+3
*
Removed unreachable goto statement to silence SGI compiler.
Sjoerd Mullender
2001-08-30
1
-1/+0
*
If an integer constant can't be generated from an integer literal
Jeremy Hylton
2001-08-27
1
-5/+2
*
Patch #445762: Support --disable-unicode
Martin v. Löwis
2001-08-17
1
-13/+25
*
Fix SF bug [ #450909 ] __future__.division fails at prompt
Jeremy Hylton
2001-08-14
1
-2/+6
*
SF Patch [ 429024 ] deal with some unary ops at compile time
Jeremy Hylton
2001-08-12
1
-3/+66
[next]