| Commit message (Expand) | Author | Age | Files | Lines |
* | Repair bizarre indentation created by VC 7.1. | Tim Peters | 2006-01-08 | 1 | -1/+1 |
|
|
* | alias_for_import_name(): Dueling compiler warnings ;-) | Tim Peters | 2006-01-08 | 1 | -1/+2 |
|
|
* | analyze_cells(): This no longer compiled under VC 7.1. | Tim Peters | 2006-01-08 | 1 | -1/+2 |
|
|
* | Fix icc warnings: conversion from "long" to "int" may lose significant bits | Neal Norwitz | 2006-01-08 | 2 | -15/+15 |
|
|
* | Fix icc warnings: strlen() returns size_t | Neal Norwitz | 2006-01-08 | 1 | -3/+2 |
|
|
* | Fix icc warnings: shadowing local variable (i) and complex is set but not use... | Neal Norwitz | 2006-01-07 | 1 | -3/+2 |
|
|
* | Fix icc warnings: single bit fields should be unsigned, shadowing local varia... | Neal Norwitz | 2006-01-07 | 1 | -16/+16 |
|
|
* | Fix icc warnings: shadowing local variables | Neal Norwitz | 2006-01-07 | 1 | -2/+1 |
|
|
* | svnversion_init(): Use standard layout for function defn. | Tim Peters | 2006-01-06 | 1 | -1/+2 |
|
|
* | Trimmed trailing whitespace. | Tim Peters | 2006-01-06 | 1 | -20/+20 |
|
|
* | Drop sys.build_number. Add sys.subversion. | Martin v. Löwis | 2006-01-05 | 1 | -2/+84 |
|
|
* | Fix a warning from gcc by adding a missed const qualifier. | Hye-Shik Chang | 2006-01-04 | 1 | -1/+1 |
|
|
* | Regenerate. | Martin v. Löwis | 2006-01-02 | 1 | -45/+45 |
|
|
* | Adjust usage of compiler_use_new_block to its return type. | Martin v. Löwis | 2006-01-02 | 1 | -2/+2 |
|
|
* | SF#1391872 | Fredrik Lundh | 2005-12-29 | 1 | -2/+2 |
|
|
* | do_mkvalue(), 'I' and 'k' cases: squash legitimate | Tim Peters | 2005-12-24 | 1 | -2/+2 |
|
|
* | const poisoning, spreading to fix new const warnings | Tim Peters | 2005-12-24 | 1 | -3/+3 |
|
|
* | Remove extra parens | Neal Norwitz | 2005-12-19 | 1 | -1/+1 |
|
|
* | Fix SF bug #1072182, problems with signed characters. | Neal Norwitz | 2005-12-19 | 3 | -6/+6 |
|
|
* | Bug #889500, fix line number on SyntaxWarning for global declarations. | Neal Norwitz | 2005-12-19 | 1 | -7/+10 |
|
|
* | fixed compilation with an ordinary C89 compiler | Fredrik Lundh | 2005-12-18 | 2 | -4/+3 |
|
|
* | Fix Armin's bug 1333982. He found it, he didn't created it :-) | Neal Norwitz | 2005-12-18 | 1 | -9/+1 |
|
|
* | Fix compiler warnings | Neal Norwitz | 2005-12-18 | 1 | -2/+2 |
|
|
* | Handle more error conditions with SystemError | Neal Norwitz | 2005-12-18 | 1 | -8/+22 |
|
|
* | Fix Bug #1378022, UTF-8 files with a leading BOM crashed the interpreter. | Neal Norwitz | 2005-12-18 | 1 | -2/+2 |
|
|
* | Get float() to be more portable across platforms. Disable hex strings. | Neal Norwitz | 2005-12-18 | 1 | -48/+25 |
|
|
* | Set MemoryError when alloc fails | Neal Norwitz | 2005-12-18 | 1 | -3/+11 |
|
|
* | Wrap long lines in the grammar | Neal Norwitz | 2005-12-18 | 1 | -16/+17 |
|
|
* | Cleanup a bit and make things more consistent. | Neal Norwitz | 2005-12-18 | 2 | -142/+87 |
|
|
* | Expose Subversion revision number (calculated via "svnversion .") to Python. | Barry Warsaw | 2005-12-18 | 1 | -0/+3 |
|
|
* | SF patch #1355913, PEP 341 - Unification of try/except and try/finally | Neal Norwitz | 2005-12-17 | 2 | -55/+81 |
|
|
* | Merge from ast-arena. This reduces the code in Python/ast.c by ~300 lines, | Neal Norwitz | 2005-12-17 | 7 | -1164/+576 |
|
|
* | Fix an int/long mismatch identified here: | Neal Norwitz | 2005-12-15 | 1 | -1/+2 |
|
|
* | SF #1373150, diffs in working copy after a build | Neal Norwitz | 2005-12-11 | 1 | -1/+1 |
|
|
* | SF #1377897, Bus error in ast | Neal Norwitz | 2005-12-11 | 1 | -0/+5 |
|
|
* | SF #1370197, memory leak - ast_error_finish (in error conditions). | Neal Norwitz | 2005-12-11 | 1 | -2/+6 |
|
|
* | Add const to several API functions that take char *. | Jeremy Hylton | 2005-12-10 | 5 | -69/+67 |
|
|
* | Simplify logic for handling import * | Neal Norwitz | 2005-12-06 | 1 | -6/+3 |
|
|
* | Reduce scope of feature | Neal Norwitz | 2005-12-06 | 1 | -2/+1 |
|
|
* | Remove unused macro, check is done elsewhere | Neal Norwitz | 2005-12-06 | 1 | -1/+0 |
|
|
* | Remove unnecessary extern variable | Neal Norwitz | 2005-12-05 | 1 | -2/+0 |
|
|
* | Patch #1350409: Port signal handling to VS 2005. | Martin v. Löwis | 2005-11-28 | 1 | -0/+17 |
|
|
* | Fix memory leaks | Neal Norwitz | 2005-11-27 | 1 | -5/+8 |
|
|
* | Fix a few more ref leaks. Backport candidate | Neal Norwitz | 2005-11-24 | 3 | -4/+8 |
|
|
* | bug #1281408: make Py_BuildValue work with unsigned longs and long longs | Georg Brandl | 2005-11-24 | 1 | -3/+20 |
|
|
* | Fix a few more memory leaks | Neal Norwitz | 2005-11-20 | 3 | -2/+14 |
|
|
* | Last batch of ref leaks in new AST code. | Neal Norwitz | 2005-11-19 | 2 | -29/+58 |
|
|
* | Correctly handle identifiers for anonymous scopes and align genexpr name with... | Nick Coghlan | 2005-11-16 | 1 | -11/+17 |
|
|
* | Bring handling of genexpr in line with other anonymous scope names | Nick Coghlan | 2005-11-16 | 1 | -4/+3 |
|
|
* | add more doc | Neal Norwitz | 2005-11-16 | 1 | -1/+22 |
|
|