summaryrefslogtreecommitdiffstats
path: root/Python
Commit message (Expand)AuthorAgeFilesLines
* 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
* Make Python compile with --disable-unicode.Georg Brandl2008-01-071-0/+2
* patch #1668: clarify envvar docs; rename THREADDEBUG to PYTHONTHREADDEBUG.Georg Brandl2008-01-072-2/+2
* Patch #602345 by Neal Norwitz and me: add -B option and PYTHONDONTWRITEBYTECO...Georg Brandl2008-01-073-2/+11
* #1755: typo.Georg Brandl2008-01-071-1/+1
* Fix C++-style comment.Georg Brandl2008-01-051-3/+3
* Continue rolling back pep-3141 changes that changed behavior from 2.5. ThisJeffrey Yasskin2008-01-051-17/+25
* Patch #1725 by Mark Dickinson, fixes incorrect conversion of -1e1000Guido van Rossum2008-01-051-22/+52
* Moved include "Python.h" in front of other imports to silence a warning.Christian Heimes2008-01-041-1/+2
* Partial port of r59682 from py3k.Amaury Forgeot d'Arc2008-01-041-1/+2
* Modified PyImport_Import and PyImport_ImportModule to always use absolute imp...Christian Heimes2008-01-033-25/+53
* Backport PEP 3141 from the py3k branch to the trunk. This includes r50877 (justJeffrey Yasskin2008-01-031-23/+30
* Improve performance of built-in any()/all() by avoiding PyIter_Next() --Guido van Rossum2007-12-201-8/+28
* Add commentsRaymond Hettinger2007-12-201-3/+3
* Bigger range for non-extended opargs.Raymond Hettinger2007-12-191-1/+1
* #1629: Renamed Py_Size, Py_Type and Py_Refcnt to Py_SIZE, Py_TYPE and Py_REFC...Christian Heimes2007-12-191-1/+1
* Zap a duplicate lineRaymond Hettinger2007-12-191-1/+0
* Applied patch #1635: Float patch for inf and nan on Windows (and other platfo...Christian Heimes2007-12-181-0/+25
* Give meaning to the oparg for BUILD_MAP: estimated size of the dictionary.Raymond Hettinger2007-12-182-5/+3
* Speed-up dictionary constructor by about 10%.Raymond Hettinger2007-12-183-5/+17
* Silence a warning about an unsed variable in debug buildsChristian Heimes2007-12-141-2/+3
* Note that open() is the preferred way to open files (issue 1510).Skip Montanaro2007-12-081-1/+2
* Fix Issue 1045.Raymond Hettinger2007-12-061-24/+3