summaryrefslogtreecommitdiffstats
path: root/Include
Commit message (Expand)AuthorAgeFilesLines
* Backport r57105 and r57145 from the py3k branch: UTF-32 codecs.Walter Dörwald2007-08-171-0/+82
* Py_ssize_t is defined regardless of HAVE_LONG_LONG. Will backportNeal Norwitz2007-08-031-1/+3
* PEP 3123: Provide forward compatibility with Python 3.0, while keepingMartin v. Löwis2007-07-2132-74/+80
* Fix #1752132: wrong comment in opcode description.Georg Brandl2007-07-111-1/+1
* Add T_PYSSIZET in structmember.h: This can be used forWalter Dörwald2007-06-132-2/+3
* Provide PY_LLONG_MAX on all systems having long long.Martin v. Löwis2007-06-131-4/+10
* Provide LLONG_MAX for S390.Martin v. Löwis2007-06-091-0/+7
* Patch #1733960: Allow T_LONGLONG to accept ints.Martin v. Löwis2007-06-091-0/+3
* Add -3 option to the interpreter to warn about features that areNeal Norwitz2007-05-231-0/+2
* Stop using PyMem_FREE while the GIL is not held. For details see:Neal Norwitz2007-05-021-0/+2
* Export function sanitize_the_mode from fileobject.c as _PyFile_SanitizeMode()...Kristján Valur Jónsson2007-04-261-0/+5
* Extend work on rev 52962 and 53829 eliminating redundant PyObject_Hash() call...Raymond Hettinger2007-03-201-1/+2
* Bug #742342: make Python stop segfaulting on infinitely-recursive reload()s. ...Collin Winter2007-03-121-0/+1
* Variant of patch #697613: don't exit the interpreter on a SystemExitGeorg Brandl2007-03-071-0/+1
* Variation of patch # 1624059 to speed up checking if an object is a subclassNeal Norwitz2007-02-259-13/+31
* Extend work on revision 52962: Eliminate redundant calls to PyObject_Hash().Raymond Hettinger2007-02-191-0/+3
* Modify Parser/asdl_c.py so that the __version__ number for Python/Python-ast.cBrett Cannon2007-02-121-1/+1
* Prefix AST symbols with _Py_. Fixes #1637022.Martin v. Löwis2007-01-191-87/+145
* Patch #1580872: Remove duplicate declaration of PyCallable_Check.Martin v. Löwis2006-10-221-1/+2
* Add check for the PyArg_ParseTuple format, and declareMartin v. Löwis2006-10-192-1/+10
* Guard uintptr_t test with HAVE_STDINT_H, test forMartin v. Löwis2006-10-021-0/+4
* Mostly revert this file to the same version as before. Only force settingNeal Norwitz2006-09-221-3/+3
* Fix %zd string formatting on Mac OS X so it prints negative numbers.Neal Norwitz2006-09-221-3/+3
* with and as are now keywords. There are some generated files I can't recreate.Neal Norwitz2006-09-062-0/+4
* Move peephole optimizer to separate file. (Forgot .h in previous checkin.)Jeremy Hylton2006-08-211-0/+3
* SF #1542693: Remove semi-colon at end of PyImport_ImportModuleEx macroNeal Norwitz2006-08-191-1/+1
* Set version to 2.6a0, seems more consistent.Neal Norwitz2006-08-181-1/+1
* More post-release wibbleNeal Norwitz2006-08-181-4/+4
* preparing for 2.5c1 - no, really this timeAnthony Baxter2006-08-161-1/+1
* preparing for 2.5c1Anthony Baxter2006-08-161-2/+2
* Slightly revised version of patch #1538956:Marc-André Lemburg2006-08-142-0/+25
* Patch #1538606, Patch to fix __index__() clipping.Neal Norwitz2006-08-122-4/+18
* pre-release machinationsAnthony Baxter2006-08-021-2/+2
* _PyWeakref_GetWeakrefCount() now returns a Py_ssize_t instead of long.Neal Norwitz2006-08-021-1/+1
* Add PyErr_WarnEx() so C code can pass the stacklevel to warnings.warn().Neal Norwitz2006-07-301-1/+5
* After approval from Anthony, merge the tim-current_framesTim Peters2006-07-101-0/+5
* preparing for 2.5b2Anthony Baxter2006-07-101-2/+2
* Upgrade pyexpat to expat 2.0.0 (http://python.org/sf/1462338).Trent Mick2006-06-191-2/+2
* Preparing for 2.5b1.Anthony Baxter2006-06-191-3/+3
* Use Py_ssize_tNeal Norwitz2006-06-191-3/+3
* Patch #1455898: Incremental mode for "mbcs" codec.Martin v. Löwis2006-06-141-0/+7
* Patch #1454481: Make thread stack size runtime tunable.Andrew MacIntyre2006-06-131-0/+3
* Get rid of f_restricted too. Doc the other 4 ints that were already removedNeal Norwitz2006-06-121-2/+2
* Patch #1495999: Part two of Windows CE changes.Martin v. Löwis2006-06-102-5/+5
* Revert revisions:Tim Peters2006-06-041-3/+0
* Patch #1346214: correctly optimize away "if 0"-style stmtsGeorg Brandl2006-06-041-0/+2
* Patch #1359618: Speed-up charmap encoder.Martin v. Löwis2006-06-041-0/+5
* Patch #1454481: Make thread stack size runtime tunable.Andrew MacIntyre2006-06-041-0/+3
* Convert relevant dict internals to Py_ssize_t.Tim Peters2006-05-301-5/+9
* needforspeed: added Py_MEMCPY macro (currently tuned for Visual C only),Fredrik Lundh2006-05-282-9/+23