summaryrefslogtreecommitdiffstats
path: root/Python
Commit message (Expand)AuthorAgeFilesLines
...
* SF patch #474500: Make OS/2 locks work like posix locks, from MichaelTim Peters2001-10-311-30/+61
* On the macintosh don't take a quick exit in find_module() for frozen submodul...Jack Jansen2001-10-301-0/+8
* Rename "dictionary" (type and constructor) to "dict".Tim Peters2001-10-291-1/+1
* vgetargskeywords()Tim Peters2001-10-271-16/+17
* vgetargskeywords: Now that it's clear that nkwlist must equal max, andTim Peters2001-10-271-4/+3
* vgetargskeywords: Prevent another potential sprintf buffer overrun.Tim Peters2001-10-271-2/+2
* vgetargskeywords: Verify kwlist has the required length while parsingTim Peters2001-10-271-20/+24
* vgetargskeywords: Removed all PyErr_Clear() calls. It's possible thatTim Peters2001-10-271-4/+8
* vgetargskeywords: The keywords arg is a dict (if non-NULL), so use theTim Peters2001-10-271-5/+5
* vgetargskeywords: Removed one of the mysterious PyErr_Clear() calls.Tim Peters2001-10-271-10/+1
* vgetargskeywords:Tim Peters2001-10-271-16/+9
* vgetargskeywords:Tim Peters2001-10-271-20/+7
* vgetargskeywords:Tim Peters2001-10-271-12/+13
* vgetargskeywords:Tim Peters2001-10-271-15/+10
* PyArg_ParseTupleAndKeywords: return false on internal error, not -1 (ITim Peters2001-10-271-30/+34
* PyArg_ParseTupleAndKeywords: do basic sanity checks on the arguments,Tim Peters2001-10-271-1/+16
* tuple(3,4,5,x=2) dumped core on my box. vgetargskeywords() overindexedTim Peters2001-10-271-3/+13
* vgetargskeywords(): remove test that can't succeed. Not a bugfix, justTim Peters2001-10-271-13/+7
* Use PyDict_Copy() and PyDict_Update() instead of using PyObject_CallMethod()Fred Drake2001-10-251-5/+3
* Convert getrefcount() to METH_O, and sys_excepthook() to useFred Drake2001-10-241-6/+3
* SF patch #474590 -- RISC OS supportGuido van Rossum2001-10-242-7/+46
* PyArg_UnpackTuple(): New argument unpacking function suggested by JimFred Drake2001-10-231-0/+60
* Style conformance: function name begins a new line *consistently*.Fred Drake2001-10-231-7/+11
* Make traceback objects collectable.Jeremy Hylton2001-10-221-2/+46
* Removed two pointless and obfuscating macros.Tim Peters2001-10-221-7/+4
* SF patch #470393 (Jim Ahlstrom): Add missing marshal functionGuido van Rossum2001-10-191-0/+8
* Move dlfcn.h block out of NetBSD block, assuming that NetBSD beforeMartin v. Löwis2001-10-181-3/+4
* SF Patch (but with no patch) 472555 Remove trailing common in enumeration.Tim Peters2001-10-181-1/+1
* Squash compiler wng about signed/unsigned mismatch.Tim Peters2001-10-181-1/+1
* First part of SF patch #416704: More robust freeze, by Toby Dickenson.Guido van Rossum2001-10-181-5/+23
* Fix the frozen bytecode for __hello__ (betcha didn't know that existedGuido van Rossum2001-10-181-5/+12
* Fix for SF bug [ #471928 ] global made w/nested list comprehensionsJeremy Hylton2001-10-181-19/+51
* Patch to bug #472202: Correctly recognize NetBSD before 199712.Martin v. Löwis2001-10-181-2/+5
* For debug build, check that the stack pointer never exceeds the stack size.Jeremy Hylton2001-10-171-1/+3
* Fix computation of stack depth for classdef and closures.Jeremy Hylton2001-10-171-44/+44
* Fix a bug in the previous checkin. The wrong bootstrap function wasGuido van Rossum2001-10-161-1/+1
* SF patch #471852 (anonymous) notes that getattr(obj, name, default)Guido van Rossum2001-10-161-1/+3
* Partial patch from SF #452266, by Jason Petrone.Guido van Rossum2001-10-1612-27/+73
* SF patch #471839: Bug when extensions import extensions (Shane Hathaway)Guido van Rossum2001-10-161-2/+3
* Put descr name in "bad memberdescr type" error message.Jeremy Hylton2001-10-161-1/+2
* make getarray static - it's only called from ceval.c and is not anSkip Montanaro2001-10-151-1/+1
* Very subtle syntax change: in a list comprehension, the testlist inGuido van Rossum2001-10-152-102/+131
* Do not define _POSIX_THREADS if unistd.h defines it.Martin v. Löwis2001-10-151-1/+1
* Suppress a bunch of "value computed is not used" warnings when building inFred Drake2001-10-131-2/+2
* SF patch #467455 : Enhanced environment variables, by Toby Dickenson.Guido van Rossum2001-10-121-3/+14
* Add SF patch #468347 -- mask signals for non-main pthreads, by Jason Lowe:Guido van Rossum2001-10-121-0/+26
* Undo part of 2.59: 't' case of convertsimple() should not use convertbuffer().Jeremy Hylton2001-10-111-5/+11
* One more place where PyString_AsString() was used after aJeremy Hylton2001-10-101-1/+1
* Use AS_STRING() following the check and avoid an extra call.Jeremy Hylton2001-10-101-1/+1
* Implement isinstance(x, (A, B, ...)). Note that we only allow tuples,Guido van Rossum2001-10-071-2/+4