summaryrefslogtreecommitdiff
path: root/Python
Commit message (Expand)AuthorAgeFilesLines
* Refactor code for translating "power" nodes.Neil Schemenauer2005-10-251-91/+95
* Write a separate ast_for_testlist_gexp() function instead of overloadingNeil Schemenauer2005-10-251-62/+77
* Ensure that compiler_exit_scope() is called as necessary to free memoryNeil Schemenauer2005-10-251-10/+18
* Do not pollute name block_ty, prefix with _Py_Neal Norwitz2005-10-241-3/+3
* Fix problem handling EXTENDED_ARGs from SF bug # 1333982Neal Norwitz2005-10-231-1/+30
* cleanup a bit and reuse instrsize (instruction size). working towards fixing...Neal Norwitz2005-10-231-30/+24
* Use PyErr_NoMemory() instead of rolling our own.Neal Norwitz2005-10-231-61/+54
* Remove unnecessary local variable.Neil Schemenauer2005-10-231-3/+2
* Fix check_unoptimized() function. The only optimized namespaces areNeil Schemenauer2005-10-231-1/+1
* Fix private name mangling. The symtable also must do mangles so thatNeil Schemenauer2005-10-232-18/+46
* Use PyTuple_Pack instead of Py_BuildValue.Neil Schemenauer2005-10-231-2/+1
* Fix arigo's funky LOAD_NAME bug: implicit globals inside classes haveNeil Schemenauer2005-10-231-1/+2
* Don't stop generating code for import statements after the first "import as"Neil Schemenauer2005-10-231-2/+3
* Add an assert.Neil Schemenauer2005-10-231-0/+1
* Use <lamba> as the function name for lambdas (matches old compiler).Neil Schemenauer2005-10-211-1/+1
* Fix a bunch of imports to use code.h instead of compile.h.Jeremy Hylton2005-10-213-3/+0
* ANSI-C-ify the placement of local var declarations.Armin Rigo2005-10-213-9/+14
* the ast-branch changed the stack discipline of MAKE_CLOSURE, so we need toMichael W. Hudson2005-10-211-1/+3
* Fix SF bug #1167751, Argument genexp corner caseNeal Norwitz2005-10-211-7/+15
* Oops, "=" is not a comparison operatorNeal Norwitz2005-10-211-1/+0
* Fix some mods that got dropped from the AST mergeNeal Norwitz2005-10-211-2/+2
* Merge ast-branch to headJeremy Hylton2005-10-2013-6074/+9774
* Fix SF bug #976608, Unhelpful error message when mtime of a module is -1Neal Norwitz2005-10-031-1/+5
* SF bug #887946, segfault if redirecting directoryNeal Norwitz2005-10-031-0/+9
* - Fix segfault with invalid coding.Neal Norwitz2005-10-021-1/+1
* Forward port bugfix:Michael W. Hudson2005-09-301-0/+4
* Convert iterator __len__() methods to a private API.Raymond Hettinger2005-09-241-3/+3
* clean-up tracing of C functions. In particular, don't call the trace funcArmin Rigo2005-09-201-26/+31
* Removed a check "if (args != NULL)" which is always True and makes no sense.Armin Rigo2005-09-201-5/+3
* Don't call memset() before checking that the ptr is not NULL.Armin Rigo2005-09-201-1/+1
* patch [ 1119423 ] python -c readlink()s and stat()s '-c'Georg Brandl2005-09-151-3/+3
* bug [ 868706 ] Calling builtin function 'eval' from C causes seg fault.Georg Brandl2005-09-151-0/+7
* Complete format code support in getargs.c::skipitem(), which is called whenGeorg Brandl2005-09-141-59/+39
* - Changes donated by Elemental Security to make it work on AIX 5.3Guido van Rossum2005-09-141-0/+12
* - Changes donated by Elemental Security to make it work on HP-UX 11 onGuido van Rossum2005-09-141-0/+14
* Patch #1290454: Fix reload() error message when parent module is not inGeorg Brandl2005-09-141-2/+3
* Whitespace normalization.Georg Brandl2005-08-311-7/+7
* Disallow keyword arguments for type constructors that don't use them.Georg Brandl2005-08-261-0/+26
* Forward UnicodeDecodeError into SyntaxError for source encoding errors.Martin v. Löwis2005-08-241-5/+7
* SF bug #1242657: list(obj) can swallow KeyboardInterruptRaymond Hettinger2005-08-211-0/+12
* Add a C API for sets and frozensets.Raymond Hettinger2005-08-161-4/+2
* Port from the Python 2.4 branch, patches for SF bug # 900092,Barry Warsaw2005-08-151-8/+14
* com_yield_expr(): Squash new compiler wng about unreferenced local.Tim Peters2005-08-031-1/+0
* PEP 342 implementation. Per Guido's comments, the generator throw()Phillip J. Eby2005-08-024-126/+212
* * Improve code for the empty frozenset singleton:Raymond Hettinger2005-08-011-0/+1
* Fix cleanup DECREF logic in builtin_filter function.Georg Brandl2005-07-191-6/+6
* bug 1234979 additionGeorg Brandl2005-07-091-2/+2
* bug [ 1234979 ] Lock.acquire treats only 1 as TrueGeorg Brandl2005-07-081-1/+1
* Fix signedness of various char variables to stop causing a warning under gcc 4.Brett Cannon2005-06-253-12/+12
* Add comments about PyThreadState and the usage of its fields.Brett Cannon2005-06-251-0/+4