summaryrefslogtreecommitdiffstats
path: root/Python
Commit message (Expand)AuthorAgeFilesLines
* Issue#2238: some syntax errors from *args or **kwargs expressionsAmaury Forgeot d'Arc2008-03-051-0/+4
* compile.c always emits END_FINALLY after WITH_CLEANUP, so predict that inJeffrey Yasskin2008-03-031-0/+2
* More copyright year and version number bumpsv2.6a1Barry Warsaw2008-03-011-1/+1
* Patch #1691070 from Roger Upole: Speed up PyArg_ParseTupleAndKeywords() and i...Christian Heimes2008-02-261-154/+109
* Whitespace normalizationNeal Norwitz2008-02-261-6/+6
* Fix indentationNeal Norwitz2008-02-252-2/+2
* Add a little info to the 3k deprecation warnings about what to use instead.Neal Norwitz2008-02-241-4/+4
* map(None, ...) is not supported in 3.0.Neal Norwitz2008-02-241-3/+9
* MS Windows doesn't have mode_t but stat.st_mode is defined as unsigned short.Christian Heimes2008-02-231-0/+5
* Issue #2051 and patch from Alexander Belopolsky:Christian Heimes2008-02-232-15/+16
* Removed duplicate Py_CHARMASK define. It's already defined in Python.h.Eric Smith2008-02-231-8/+0
* Patch #1759: Backport of PEP 3129 class decoratorsChristian Heimes2008-02-235-1202/+1260
* Added bin() builtin. I'm going to check in the tests in a seperate checkin, ...Eric Smith2008-02-221-0/+13
* Trim leading zeros from a floating point exponent, per C99. See issue 1600. ...Eric Smith2008-02-201-27/+127
* Perform correct handling of stack overflow for windows: Catch the correct exc...Kristján Valur Jónsson2008-02-181-2/+8
* Backport of PEP 3101, Advanced String Formatting, from py3k.Eric Smith2008-02-173-0/+47
* Deallocate content of the dict free list on interpreter shutdownChristian Heimes2008-02-081-0/+1
* Remove unnecessary curly braces around an int literal.Brett Cannon2008-02-071-2/+2
* Cast a struct to a void pointer so as to do a type-safe pointer comparisonBrett Cannon2008-02-071-3/+3
* Change r60575 broke test_compile:Amaury Forgeot d'Arc2008-02-051-0/+3
* #1750076: Debugger did not step on every iteration of a while statement.Amaury Forgeot d'Arc2008-02-041-14/+15
* Patch #1953Christian Heimes2008-02-041-13/+34
* Fix refleakNeal Norwitz2008-02-011-0/+1
* Move __builtins__.trunc() to math.trunc() perJeffrey Yasskin2008-02-011-15/+0
* Issue #1678380. Fix a bug that identifies 0j and -0j when they appearMark Dickinson2008-01-311-12/+47
* The previous change was causing a segfault after multiple calls to Py_Initial...Christian Heimes2008-01-301-3/+3
* Fixed some references leaks in sys.Christian Heimes2008-01-302-21/+19
* Removed unused varChristian Heimes2008-01-301-1/+1
* CallMethod is faster with a NULL third-argument than with an empty format str...Raymond Hettinger2008-01-291-1/+1
* Removed unnecessary conditional (spotted by Neal Norwitz).Raymond Hettinger2008-01-281-1/+1
* Let marshal built-up sets and frozensets one element at a time (without creat...Raymond Hettinger2008-01-281-12/+8
* static PyObject* variables should use PyString_InternFromString() instead of ...Christian Heimes2008-01-281-2/+2
* Added clear cache methods to clear the internal type lookup cache for ref lea...Christian Heimes2008-01-272-0/+16
* Reduce buffer size since we do not need 1kNeal Norwitz2008-01-271-1/+1
* Revert PySet_Add() changes.Raymond Hettinger2008-01-261-8/+12
* Let marshal build-up sets and frozensets one element at a time.Raymond Hettinger2008-01-261-12/+8
* #1920: when considering a block starting by "while 0", the compiler optimized...Amaury Forgeot d'Arc2008-01-241-1/+4
* Fix two crashers.Guido van Rossum2008-01-232-2/+11
* Applied #1069410Christian Heimes2008-01-231-0/+9
* Patch #1720595: add T_BOOL to the range of structmember types.Georg Brandl2008-01-211-0/+15
* Provide a sanity check during PyThreadState_DeleteCurrent() andGregory P. Smith2008-01-211-0/+10
* Fixed a wrong assumption in configure.in and Include/pyport.h. The is finite ...Christian Heimes2008-01-201-0/+3
* #1648: add sys.gettrace() and sys.getprofile().Georg Brandl2008-01-201-0/+42
* Fix #1679: "0x" was taken as a valid integer literal.Georg Brandl2008-01-191-15/+28
* #1782: don't leak in error case in PyModule_AddXxxConstant. Patch by Hrvoje N...Georg Brandl2008-01-191-2/+14
* Added bytes and b'' as aliases for str and ''Christian Heimes2008-01-182-0/+4
* Coverity issue CID #169Christian Heimes2008-01-181-1/+2
* Typo fixesAndrew M. Kuchling2008-01-151-2/+2
* Applied patch #1816: sys.flags patchChristian Heimes2008-01-141-3/+94
* Fixed #1776. __import__() no longer imports modules by file nameChristian Heimes2008-01-091-0/+10