summaryrefslogtreecommitdiffstats
path: root/Python
Commit message (Expand)AuthorAgeFilesLines
* 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
* Fix typo.Georg Brandl2007-12-051-1/+1
* Implement PEP 366Nick Coghlan2007-12-031-26/+86
* Feature #1534Christian Heimes2007-12-011-0/+2
* Issue #1521: on 64bit platforms, str.decode fails on very long strings.Amaury Forgeot d'Arc2007-11-301-3/+4
* Issue #1402: PyInterpreterState_Clear() may still invoke user codeAmaury Forgeot d'Arc2007-11-291-5/+5
* Expose Py_Py3kWarningFlag as sys.py3kwarning as discussed in #1504Christian Heimes2007-11-271-0/+2
* Added filename to compiling struct based on Martin's suggestion.Christian Heimes2007-11-241-1/+3
* And yet another fix for the patch. Paul Moore has send me a note that I've mi...Christian Heimes2007-11-231-8/+9
* How did the comment get there?Christian Heimes2007-11-231-1/+1
* Fixed problems in the last commit. Filenames and line numbers weren't reporte...Christian Heimes2007-11-231-4/+8
* Applied patch #1754273 and #1754271 from Thomas GleeChristian Heimes2007-11-231-0/+4
* Backport of the PCbuild9 directory from the py3k branch.Christian Heimes2007-11-221-1/+1
* Patch #1739468: Directories and zipfiles containing __main__.py are now execu...Nick Coghlan2007-11-181-7/+20
* Merge from py3k branch:Amaury Forgeot d'Arc2007-11-131-7/+12
* Patch #1418: Make the AC_REPLACE_FUNCS object files actually work.Martin v. Löwis2007-11-121-2/+1
* Backport of Guido's review of my patch.Christian Heimes2007-11-071-7/+5
* Backported fix for bug #1392 from py3k branch r58903.Christian Heimes2007-11-071-1/+19
* Add build option for faster loop execution.Raymond Hettinger2007-11-071-0/+11
* Fix marshal's incorrect handling of subclasses of builtin types (backport can...Raymond Hettinger2007-11-071-10/+10
* Missing DECREFsRaymond Hettinger2007-10-251-0/+2
* Fixup error return and add support for intermixed ints and floats/Raymond Hettinger2007-10-241-1/+7
* Optimize sum() for integer and float inputs.Raymond Hettinger2007-10-241-0/+70
* Fix Coverity 185-186: If the passed in FILE is NULL, uninitialized memoryNeal Norwitz2007-10-121-0/+2
* Fix Coverity #158: Check the correct variable.Neal Norwitz2007-10-051-1/+1
* Try harder to stay within the 79-column limit. There's still two places that ...Thomas Wouters2007-09-201-44/+55
* Whitespace cleanup.Thomas Wouters2007-09-191-27/+27
* Fix #1169: remove docstrings in functions for -OO.Georg Brandl2007-09-191-1/+1
* 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