| Commit message (Expand) | Author | Age | Files | Lines |
* | SF patch #470393 (Jim Ahlstrom): Add missing marshal function | Guido van Rossum | 2001-10-19 | 1 | -0/+8 |
|
|
* | Move dlfcn.h block out of NetBSD block, assuming that NetBSD before | Martin v. Löwis | 2001-10-18 | 1 | -3/+4 |
|
|
* | SF Patch (but with no patch) 472555 Remove trailing common in enumeration. | Tim Peters | 2001-10-18 | 1 | -1/+1 |
|
|
* | Squash compiler wng about signed/unsigned mismatch. | Tim Peters | 2001-10-18 | 1 | -1/+1 |
|
|
* | First part of SF patch #416704: More robust freeze, by Toby Dickenson. | Guido van Rossum | 2001-10-18 | 1 | -5/+23 |
|
|
* | Fix the frozen bytecode for __hello__ (betcha didn't know that existed | Guido van Rossum | 2001-10-18 | 1 | -5/+12 |
|
|
* | Fix for SF bug [ #471928 ] global made w/nested list comprehensions | Jeremy Hylton | 2001-10-18 | 1 | -19/+51 |
|
|
* | Patch to bug #472202: Correctly recognize NetBSD before 199712. | Martin v. Löwis | 2001-10-18 | 1 | -2/+5 |
|
|
* | For debug build, check that the stack pointer never exceeds the stack size. | Jeremy Hylton | 2001-10-17 | 1 | -1/+3 |
|
|
* | Fix computation of stack depth for classdef and closures. | Jeremy Hylton | 2001-10-17 | 1 | -44/+44 |
|
|
* | Fix a bug in the previous checkin. The wrong bootstrap function was | Guido van Rossum | 2001-10-16 | 1 | -1/+1 |
|
|
* | SF patch #471852 (anonymous) notes that getattr(obj, name, default) | Guido van Rossum | 2001-10-16 | 1 | -1/+3 |
|
|
* | Partial patch from SF #452266, by Jason Petrone. | Guido van Rossum | 2001-10-16 | 12 | -27/+73 |
|
|
* | SF patch #471839: Bug when extensions import extensions (Shane Hathaway) | Guido van Rossum | 2001-10-16 | 1 | -2/+3 |
|
|
* | Put descr name in "bad memberdescr type" error message. | Jeremy Hylton | 2001-10-16 | 1 | -1/+2 |
|
|
* | make getarray static - it's only called from ceval.c and is not an | Skip Montanaro | 2001-10-15 | 1 | -1/+1 |
|
|
* | Very subtle syntax change: in a list comprehension, the testlist in | Guido van Rossum | 2001-10-15 | 2 | -102/+131 |
|
|
* | Do not define _POSIX_THREADS if unistd.h defines it. | Martin v. Löwis | 2001-10-15 | 1 | -1/+1 |
|
|
* | Suppress a bunch of "value computed is not used" warnings when building in | Fred Drake | 2001-10-13 | 1 | -2/+2 |
|
|
* | SF patch #467455 : Enhanced environment variables, by Toby Dickenson. | Guido van Rossum | 2001-10-12 | 1 | -3/+14 |
|
|
* | Add SF patch #468347 -- mask signals for non-main pthreads, by Jason Lowe: | Guido van Rossum | 2001-10-12 | 1 | -0/+26 |
|
|
* | Undo part of 2.59: 't' case of convertsimple() should not use convertbuffer(). | Jeremy Hylton | 2001-10-11 | 1 | -5/+11 |
|
|
* | One more place where PyString_AsString() was used after a | Jeremy Hylton | 2001-10-10 | 1 | -1/+1 |
|
|
* | Use AS_STRING() following the check and avoid an extra call. | Jeremy Hylton | 2001-10-10 | 1 | -1/+1 |
|
|
* | Implement isinstance(x, (A, B, ...)). Note that we only allow tuples, | Guido van Rossum | 2001-10-07 | 1 | -2/+4 |
|
|
* | weakref.ReferenceError becomes a built-in exception now that weak ref objects | Fred Drake | 2001-10-05 | 1 | -0/+6 |
|
|
* | Introduced the oddly-missing PyList_CheckExact(), and used it to replace | Tim Peters | 2001-10-05 | 1 | -1/+1 |
|
|
* | Get rid of unique local ISSTRICTINT macro in favor of std PyInt_CheckExact. | Tim Peters | 2001-10-05 | 1 | -9/+6 |
|
|
* | Fix bug in profiler modifications detected only in debug builds. | Fred Drake | 2001-10-04 | 1 | -3/+26 |
|
|
* | Remove a couple of unused local variables (bug #445960, compiler warnings | Greg Ward | 2001-10-04 | 1 | -4/+2 |
|
|
* | Rationalize the events passed to the profiler (no changes for the tracer). | Fred Drake | 2001-10-04 | 2 | -10/+6 |
|
|
* | SF bug [#467265] Compile errors on SuSe Linux on IBM/s390. | Tim Peters | 2001-10-02 | 1 | -1/+1 |
|
|
* | SF bug [#466173] unpack TypeError unclear | Tim Peters | 2001-09-30 | 1 | -1/+5 |
|
|
* | PyErr_NormalizeException() | Jeremy Hylton | 2001-09-26 | 1 | -1/+12 |
|
|
* | Prevent a NULL pointer from being pushed onto the stack. | Jeremy Hylton | 2001-09-26 | 1 | -1/+5 |
|
|
* | Don't swap the arguments to PyFrame_BlockSetup when recreating the recently | Thomas Wouters | 2001-09-24 | 1 | -2/+2 |
|
|
* | Add optional docstrings to member descriptors. For backwards | Guido van Rossum | 2001-09-20 | 4 | -213/+235 |
|
|
* | Add support for restricting access based on restricted execution mode. | Guido van Rossum | 2001-09-17 | 1 | -5/+16 |
|
|
* | Supply code objects a new-style tp_members slot and tp_getattr impl. | Jeremy Hylton | 2001-09-14 | 1 | -16/+34 |
|
|
* | Get rid of builtin_open() entirely (the C code and docstring, not the | Tim Peters | 2001-09-13 | 1 | -20/+3 |
|
|
* | _PyBuiltin_Init(): For clarity, macroize this purely repetitive code. | Tim Peters | 2001-09-13 | 1 | -49/+25 |
|
|
* | Admit that we'll never add the args for a "call" event to the profile | Fred Drake | 2001-09-13 | 1 | -3/+0 |
|
|
* | SF bug [#460467] file objects should be subclassable. | Tim Peters | 2001-09-13 | 1 | -22/+13 |
|
|
* | build_class(): one more (hopefully the last) step on the way to | Guido van Rossum | 2001-09-12 | 1 | -14/+21 |
|
|
* | Replaced PyMac_FullPath by PyMac_FullPathname, which has an extra 'length' | Jack Jansen | 2001-09-10 | 1 | -1/+41 |
|
|
* | Improve threading on Solaris, according to SF patch #460269, submitted | Guido van Rossum | 2001-09-10 | 1 | -3/+8 |
|
|
* | Fix core dump in PyArg_ParseTuple() with Unicode arguments. | Jeremy Hylton | 2001-09-10 | 1 | -15/+17 |
|
|
* | SF bug [#458941] Looks like a unary minus bug. | Tim Peters | 2001-09-07 | 1 | -16/+49 |
|
|
* | Rename 'getset' to 'property'. | Guido van Rossum | 2001-09-06 | 1 | -2/+2 |
|
|
* | Patch #455231: Support ELF properly on OpenBSD. | Martin v. Löwis | 2001-09-05 | 1 | -1/+1 |
|
|