| Commit message (Expand) | Author | Age | Files | Lines |
* | Merge from ast-arena. This reduces the code in Python/ast.c by ~300 lines, | Neal Norwitz | 2005-12-17 | 1 | -0/+1 |
|
|
* | Merge ast-branch to head | Jeremy Hylton | 2005-10-20 | 1 | -2/+1 |
|
|
* | Use intptr_t/uintptr_t on Windows | Martin v. Löwis | 2004-07-27 | 1 | -0/+5 |
|
|
* | Patch #966493: Cleanup generator/eval_frame exposure. | Martin v. Löwis | 2004-06-27 | 1 | -0/+1 |
|
|
* | Patch #774665: Make Python LC_NUMERIC agnostic. | Martin v. Löwis | 2004-06-08 | 1 | -0/+2 |
|
|
* | compile.h and eval.h weren't being included which kept a fair bit of the | Skip Montanaro | 2004-03-13 | 1 | -0/+3 |
|
|
* | remove support for missing ANSI C header files (limits.h, stddef.h, etc). | Skip Montanaro | 2004-02-10 | 1 | -6/+0 |
|
|
* | Changed the UCHAR_MAX error msg a bit: we don't really assume anything | Tim Peters | 2003-12-22 | 1 | -1/+1 |
|
|
* | There are places in Python which assume bytes have 8-bits. Formalize that a | Skip Montanaro | 2003-12-22 | 1 | -0/+8 |
|
|
* | * Migrate set() and frozenset() from the sandbox. | Raymond Hettinger | 2003-11-16 | 1 | -0/+1 |
|
|
* | Excise DL_EXPORT from Include. | Mark Hammond | 2002-08-12 | 1 | -1/+1 |
|
|
* | Define _XOPEN_SOURCE and _GNU_SOURCE in pyconfig.h, to have them | Martin v. Löwis | 2002-07-20 | 1 | -11/+0 |
|
|
* | Define _XOPEN_SOURCE in configure and Python.h. | Jeremy Hylton | 2002-07-18 | 1 | -6/+1 |
|
|
* | HAVE_LIMITS_H -- raise #error if not defined; limits.h is std C | Tim Peters | 2002-07-12 | 1 | -0/+2 |
|
|
* | Removed WITH_CYCLE_GC #ifdef-ery. Holes: | Tim Peters | 2002-07-07 | 1 | -0/+8 |
|
|
* | SF 569257 -- Name mangle double underscored variable names in __slots__. | Raymond Hettinger | 2002-06-20 | 1 | -0/+4 |
|
|
* | Patch #505375: Make doc strings optional. | Martin v. Löwis | 2002-06-09 | 1 | -0/+10 |
|
|
* | Patch #555929: Cygwin AH_BOTTOM cleanup patch (*** version 2 ***) | Jason Tishler | 2002-06-04 | 1 | -8/+8 |
|
|
* | Silly typo. | Michael W. Hudson | 2002-05-27 | 1 | -1/+1 |
|
|
* | Back out #555929 | Martin v. Löwis | 2002-05-15 | 1 | -2/+3 |
|
|
* | Patch #555929: Cygwin AH_BOTTOM cleanup patch | Jason Tishler | 2002-05-15 | 1 | -3/+2 |
|
|
* | - New builtin function enumerate(x), from PEP 279. Example: | Guido van Rossum | 2002-04-26 | 1 | -0/+1 |
|
|
* | Add the 'bool' type and its values 'False' and 'True', as described in | Guido van Rossum | 2002-04-03 | 1 | -0/+1 |
|
|
* | Add a comment that PyArg_GetInt is deprecated and should not be used | Neal Norwitz | 2002-03-25 | 1 | -0/+1 |
|
|
* | Remove many uses of PyArg_NoArgs macro, change METH_OLDARGS to METH_NOARGS. | Neal Norwitz | 2002-03-25 | 1 | -0/+3 |
|
|
* | Give Python a debug-mode pymalloc, much as sketched on Python-Dev. | Tim Peters | 2002-03-23 | 1 | -0/+9 |
|
|
* | Include <unistd.h> in Python.h. Fixes #500924. | Martin v. Löwis | 2002-01-12 | 1 | -0/+3 |
|
|
* | Stop defining NDEBUG in Python.h, because it can interfere with | Tim Peters | 2001-12-04 | 1 | -5/+4 |
|
|
* | Include the weakref object interface. | Fred Drake | 2001-10-05 | 1 | -0/+1 |
|
|
* | Merge of descr-branch back into trunk. | Tim Peters | 2001-08-02 | 1 | -0/+1 |
|
|
* | Repair more now-obsolete references to config.h. | Tim Peters | 2001-07-26 | 1 | -1/+1 |
|
|
* | Patch #411138: Rename config.h to pyconfig.h. Closes bug #231774. | Martin v. Löwis | 2001-07-26 | 1 | -1/+1 |
|
|
* | Part way to allowing "from __future__ import generators" to communicate | Tim Peters | 2001-07-16 | 1 | -1/+1 |
|
|
* | Python.h: Don't attempt to redefine NDEBUG if it's already defined. | Tim Peters | 2001-07-15 | 1 | -0/+2 |
|
|
* | Define NDEBUG when Py_DEBUG undefined, to disable the assert macro. | Guido van Rossum | 2001-07-15 | 1 | -0/+4 |
|
|
* | Iterators phase 1. This comprises: | Guido van Rossum | 2001-04-20 | 1 | -0/+1 |
|
|
* | PEP 227 implementation | Jeremy Hylton | 2001-01-25 | 1 | -0/+1 |
|
|
* | Rationalize use of limits.h, moving the inclusion to Python.h. | Fred Drake | 2000-09-26 | 1 | -0/+4 |
|
|
* | Make better use of GNU Pth -- patch by Andy Dustman. | Guido van Rossum | 2000-09-19 | 1 | -1/+1 |
|
|
* | Close SF bug 110826: a complaint about the way Python #define'd NULL. | Tim Peters | 2000-09-10 | 1 | -0/+4 |
|
|
* | REMOVED all CWI, CNRI and BeOpen copyright markings. | Guido van Rossum | 2000-09-01 | 1 | -9/+0 |
|
|
* | patch from Vladimir (move Py_Mem* interface to Include/pymem.h) | Peter Schneider-Kamp | 2000-07-31 | 1 | -0/+2 |
|
|
* | merge Include/my*.h into Include/pyport.h | Peter Schneider-Kamp | 2000-07-31 | 1 | -3/+0 |
|
|
* | Included assert.h in Python.h -- it's absurd that this basic tool of | Tim Peters | 2000-07-23 | 1 | -1/+3 |
|
|
* | deleted obsolete SYMANTEC__CFM68K__ tests | Skip Montanaro | 2000-07-12 | 1 | -8/+0 |
|
|
* | Cray J90 fixes for long ints. | Tim Peters | 2000-07-08 | 1 | -0/+1 |
|
|
* | Defunct the _XOPEN_SOURCE define for now. Suggested by Fredrik | Marc-André Lemburg | 2000-07-07 | 1 | -3/+8 |
|
|
* | Added #defines to enable SUSv2 compatibility where available and | Marc-André Lemburg | 2000-07-05 | 1 | -0/+10 |
|
|
* | Change copyright notice - 2nd try. | Guido van Rossum | 2000-06-30 | 1 | -6/+0 |
|
|
* | Change copyright notice. | Guido van Rossum | 2000-06-30 | 1 | -22/+7 |
|
|