summaryrefslogtreecommitdiffstats
path: root/Include
Commit message (Expand)AuthorAgeFilesLines
* Issue #6347: Add inttypes.h to the pyport.h #includes; fixes a buildMark Dickinson2009-06-301-0/+6
* Remove unused stdint.h includesMark Dickinson2009-06-282-8/+0
* remove some unused symtable constantsBenjamin Peterson2009-06-231-7/+3
* remove tmpname support since it's no longer usedBenjamin Peterson2009-06-211-2/+0
* Add const qualifier to PyErr_SetFromErrnoWithFilename and toAlexandre Vassalotti2009-06-121-2/+3
* Allow multiple context managers in one with statement, as proposedGeorg Brandl2009-05-251-1/+1
* add a SETUP_WITH opcodeBenjamin Peterson2009-05-251-1/+3
* Issue #6042:Jeffrey Yasskin2009-05-231-9/+6
* Issue #3527: Removed Py_WIN_WIDE_FILENAMES which is not used any more.Hirokazu Yamamoto2009-05-171-7/+3
* Issue 5954, PyFrame_GetLineNumber:Jeffrey Yasskin2009-05-082-2/+11
* PyCode_NewEmpty:Jeffrey Yasskin2009-05-081-0/+5
* add _PyObject_LookupSpecial to handle fetching special method lookupBenjamin Peterson2009-05-081-0/+1
* Issue #5920: Changed format.__float__ and complex.__float__ to use a precisio...Eric Smith2009-05-051-0/+6
* Issue #4426: The UTF-7 decoder was too strict and didn't accept some legal se...Antoine Pitrou2009-05-041-4/+2
* Issue #1588: Add complex.__format__.Eric Smith2009-04-301-0/+6
* Issue #5793: rationalize isdigit / isalpha / tolower, etc. Will port to py3k....Eric Smith2009-04-273-22/+42
* Issue #5835, deprecate PyOS_ascii_formatd.Eric Smith2009-04-251-1/+11
* Backport of some of the work in r71665 to trunk. This reworks much ofEric Smith2009-04-222-6/+35
* Fix for issue5657.Ronald Oussoren2009-04-191-0/+12
* many more types to initialize (I had to expose some of them)Benjamin Peterson2009-04-182-0/+4
* Backport r71704 (add configure check for C99 round function) to trunk.Mark Dickinson2009-04-181-0/+4
* Issue #1113244: Py_XINCREF, Py_DECREF, Py_XDECREF: Add `do { ... } while (0)'Matthias Klose2009-04-051-2/+2
* - Py_DECREF: Add `do { ... } while (0)' to avoid compiler warnings.Matthias Klose2009-04-051-5/+7
* revert r71159 since it broke the buildBenjamin Peterson2009-04-041-7/+5
* - Py_DECREF: Add `do { ... } while (0)' to avoid compiler warnings.Matthias Klose2009-04-041-5/+7
* Issue #2396: backport the memoryview object.Antoine Pitrou2009-04-023-14/+90
* Fix two issues introduced by issue #71031 by changing the signature ofBrett Cannon2009-04-021-1/+1
* Issue #4688: Add a heuristic so that tuples and dicts containing onlyAntoine Pitrou2009-03-233-0/+13
* Rewrite Py_ARITHMETIC_RIGHT_SHIFT so that it's valid for all signedMark Dickinson2009-03-201-7/+11
* Issue #4258: Use 30-bit digits for Python longs, on 64-bit platforms.Mark Dickinson2009-03-204-18/+106
* Backport r69961 to trunk, replacing JUMP_IF_{TRUE,FALSE} withJeffrey Yasskin2009-02-281-3/+6
* remove some PyBytes_* aliases that are not in 3.xBenjamin Peterson2009-02-161-6/+0
* A few more minor fixes in longobject.cMark Dickinson2009-02-151-0/+1
* Issue #5260: Various portability and standards compliance fixes, optimizationsMark Dickinson2009-02-151-2/+1
* Issue #5204: Define _PyVerify_fd on VC6 to makeHirokazu Yamamoto2009-02-111-0/+3
* Issue 4804. Add a function to test the validity of file descriptors on Windo...Kristján Valur Jónsson2009-02-101-0/+11
* Issue #4575: fix Py_IS_INFINITY macro to work correctly on x87 FPUs.Mark Dickinson2009-02-091-5/+24
* Issue 1242657: list(obj) can swallow KeyboardInterrupt.Raymond Hettinger2009-02-021-1/+1
* #3720: Interpreter crashes when an evil iterator removes its own next function.Amaury Forgeot d'Arc2009-01-122-1/+3
* Fix issue 4884, preventing a crash in the socket code when python is compiledJeffrey Yasskin2009-01-091-0/+9
* Fix #4846 (Py_UNICODE_ISSPACE causes linker error) by moving the declarationMarc-André Lemburg2009-01-051-10/+28
* Use C99 'isfinite' macro in preference to BSD-derived 'finite' function.Mark Dickinson2009-01-041-1/+3
* Fix HAVE_DECL_ISINF/ISNAN test (again).Mark Dickinson2009-01-041-2/+2
* Oops. Need to check not only that HAVE_DECL_ISINF is defined, but alsoMark Dickinson2009-01-041-2/+2
* isinf and isnan are macros, not functions; fix configure scriptMark Dickinson2009-01-041-2/+2
* fix WORD_BIGEDIAN declaration in Universal builds; fixes #4060 and #4728Benjamin Peterson2008-12-281-0/+14
* Sort UCS-2/UCS-4 name mangling list.Alexandre Vassalotti2008-12-281-8/+8
* Fix name mangling of PyUnicode_ClearFreeList.Alexandre Vassalotti2008-12-281-1/+1
* Issue #2183: Simplify and optimize bytecode for list comprehensions.Antoine Pitrou2008-12-171-1/+1
* move unprefixed error into .c fileBenjamin Peterson2008-10-301-2/+0