summaryrefslogtreecommitdiffstats
path: root/Python
Commit message (Expand)AuthorAgeFilesLines
* Fix a crasher where Python code managed to infinitely recurse in C code withoutBrett Cannon2007-09-071-0/+8
* Revert compile.c changes that shouldn't have been included in previous checkinNick Coghlan2007-08-251-7/+2
* Revert misguided attempt at fixing incompatibility between -m and -i switches...Nick Coghlan2007-08-251-2/+7
* Second half of #1752175: #ifdef out references to PyImport_DynLoadFiletab if ...Georg Brandl2007-08-231-1/+5
* Fix compile.c so that it records 0.0 and -0.0 as separate constants in a codeAlex Martelli2007-08-221-1/+14
* Revert accidental checkins from last commit.Georg Brandl2007-08-211-10/+0
* Demand version 2.5.1 since 2.5 has a bug with codecs.open context managers.Georg Brandl2007-08-211-0/+10
* Place #ifdef Py_USING_UNICODE around decode_unicode().Georg Brandl2007-08-061-0/+2
* Handle errors when generating a warning.Neal Norwitz2007-08-051-30/+31
* PEP 3123: Provide forward compatibility with Python 3.0, while keepingMartin v. Löwis2007-07-214-7/+4
* SF patch# 1755885 by Kurt Kaiser: show location of Unicode escape errors.Guido van Rossum2007-07-181-2/+19
* Add T_PYSSIZET in structmember.h: This can be used forWalter Dörwald2007-06-131-0/+10
* Patch #1733960: Allow T_LONGLONG to accept ints.Martin v. Löwis2007-06-091-24/+18
* Use macro version of GET_SIZE to avoid Coverity warning (#150) about a possib...Neal Norwitz2007-06-091-1/+1
* Disallow function calls like foo(None=1).Georg Brandl2007-06-071-0/+4
* Bug #1722484: remove docstrings again when running with -OO.Georg Brandl2007-06-011-1/+2
* Fix indentation (whitespace only).Neal Norwitz2007-05-301-2/+2
* Include <windows.h> after python.h, so that WINNT is properly set before wind...Kristján Valur Jónsson2007-05-261-1/+1
* Add a bunch more deprecation warnings for builtins that are going away in 3.0Neal Norwitz2007-05-231-0/+24
* Add -3 option to the interpreter to warn about features that areNeal Norwitz2007-05-231-0/+5
* Patch #1686487: you can now pass any mapping after '**' in function calls.Georg Brandl2007-05-211-10/+29
* Backport PEP 3110's new 'except' syntax to 2.6.Collin Winter2007-05-182-3/+4
* Last try for tweaking the max stack depth. 5000 was the original value,Neal Norwitz2007-05-171-1/+1
* Set the depth to something very small to try to determine if theNeal Norwitz2007-05-171-1/+1
* Reduce the max stack depth to see if this fixes the segfaults onNeal Norwitz2007-05-171-1/+1
* Fix bug in marshal where bad data would cause a segfault due toNeal Norwitz2007-05-161-69/+156
* Remove an XXX that is unnecessary.Georg Brandl2007-05-111-1/+0
* Fix problems in x64 build that were discovered by the testsuite:Kristján Valur Jónsson2007-05-031-58/+5
* Handle a couple of uncaught errors. This should be backportedNeal Norwitz2007-05-031-0/+4
* Actually raise an exception before calling ast_error_finish.Georg Brandl2007-05-021-0/+2
* Remove obsolete comment. Importing of .dll files has been discontinued, only ...Kristján Valur Jónsson2007-04-251-8/+0
* Make pythoncore compile cleanly with VisualStudio 2005. Used an explicit typ...Kristján Valur Jónsson2007-04-252-0/+2
* Merge change 54909 from release25-maint: Fix several minor issues discovered...Kristján Valur Jónsson2007-04-251-3/+3
* SF #1701207, Fix bogus assertion (and test it!)Neal Norwitz2007-04-161-2/+2
* Fix a bug when using the __lltrace__ opcode tracer, and a problem sith signed...Kristján Valur Jónsson2007-04-131-1/+1
* Patch #1682205: a TypeError while unpacking an iterable is no longerGeorg Brandl2007-03-211-5/+3
* Remove unused file spotted by Paul HankinNeal Norwitz2007-03-211-27/+0
* Clean up formatting of this file.Jeremy Hylton2007-03-161-2029/+2048
* Patch #1642547: Fix an error/crash when encountering syntax errors in complex...Collin Winter2007-03-161-14/+26
* Inline PyImport_GetModulesReloading().Collin Winter2007-03-131-11/+8
* Patch #1444529: the builtin compile() now accepts keyword arguments.Georg Brandl2007-03-131-4/+7
* Typo and grammar fixes.Georg Brandl2007-03-131-1/+1
* Fix some style nits:Neal Norwitz2007-03-131-13/+15
* Bug #742342: make Python stop segfaulting on infinitely-recursive reload()s. ...Collin Winter2007-03-123-2/+41
* Bug #1678647: write a newline after printing an exception in anyGeorg Brandl2007-03-121-2/+2
* Backport from Py3k branch:Georg Brandl2007-03-121-9/+10
* Typos.Georg Brandl2007-03-101-1/+1
* Patch #703779: unset __file__ in __main__ after running a file. ThisGeorg Brandl2007-03-071-3/+11
* Variant of patch #697613: don't exit the interpreter on a SystemExitGeorg Brandl2007-03-071-0/+6
* Bug #1674503: close the file opened by execfile() in an error condition.Georg Brandl2007-03-061-2/+2