summaryrefslogtreecommitdiffstats
path: root/Python
Commit message (Expand)AuthorAgeFilesLines
* Fix by Greg Chapman from SF bug 534347: Potential AV in vgetargskeywords.Guido van Rossum2002-04-041-1/+7
* Add the 'bool' type and its values 'False' and 'True', as described inGuido van Rossum2002-04-032-8/+27
* Get rid of another use of PyArg_Parse()Neal Norwitz2002-04-011-2/+2
* Use symbolic METH_VARARGS instead of 1 for ml_flagsNeal Norwitz2002-03-312-20/+20
* Remove the CACHE_HASH and INTERN_STRINGS preprocessor symbols.Tim Peters2002-03-291-2/+0
* Call PyObject_GC_UnTrack before putting an object on the list of trash.Neil Schemenauer2002-03-291-2/+2
* add comment reminding people about class hierarchy in Doc/lib/libexcs.texSkip Montanaro2002-03-281-0/+5
* Fix an issue that was reported in but unrelated to the main problem ofGuido van Rossum2002-03-281-2/+10
* Introduce two new flag bits that can be set in a PyMethodDef methodFred Drake2002-03-281-0/+7
* Change sys_exit to use METH_VARARGS.Neal Norwitz2002-03-271-2/+5
* I've been waiting 8 years for KSR to re-emerge from bankruptcy. If theyTim Peters2002-03-251-4/+0
* SF bug 480215: softspace confused in nested printTim Peters2002-03-241-10/+12
* Fix wording of sys.exit docstring. Close SF bug 534113.Neil Schemenauer2002-03-231-1/+1
* Disable the parser hacks that enabled the "yield" keyword using a futureNeil Schemenauer2002-03-222-11/+15
* Re-enable GC of generator objects.Neil Schemenauer2002-03-181-6/+6
* Document that _POSIX_SEMAPHORES is predefined.Martin v. Löwis2002-03-171-0/+4
* Patch #525532: Add support for POSIX semaphores.Martin v. Löwis2002-03-171-0/+119
* Patch #504224: add plan9 threads include to thread.c.Martin v. Löwis2002-03-091-0/+4
* Patch #494045: patches errno and stat to cope on plan9.Martin v. Löwis2002-03-092-16/+36
* Docstring for filter(): Someone on the Tutor list reasonably complainedTim Peters2002-03-091-5/+5
* Patch #50002: Display line information for bad \x escapes:Martin v. Löwis2002-03-034-17/+52
* SF #506611, fix sys.setprofile(), sys.settrace() core dumpsNeal Norwitz2002-03-031-2/+2
* SF patch 522961: Leak in Python/thread_nt.h, from Gerald S. Williams.Tim Peters2002-02-281-14/+1
* Add 2002 to PSF copyrights.Michael W. Hudson2002-02-271-1/+1
* OS/2 EMX port changes (Python part of patch #450267):Andrew MacIntyre2002-02-264-3/+140
* Move some opcodes to top of big eval_frame switch statement. SkipNeil Schemenauer2002-02-171-44/+45
* LOAD_FAST: rearrange branches to favor the expected case, and getTim Peters2002-02-121-10/+7
* Removed a spurious }. (How did it get there in the first place??)Jack Jansen2002-02-111-2/+0
* Fix to the UTF-8 encoder: it failed on 0-length input strings.Marc-André Lemburg2002-02-071-1/+20
* Got rid of an extra level of {} and funny formatting that was stillJack Jansen2002-02-011-58/+56
* A new dynload_next, which actually only works on OSX but isn't renamed yet.Jack Jansen2002-02-011-112/+56
* Fix missing space between words. Bugfix candidate.Neal Norwitz2002-01-291-1/+1
* Fix spelling mistakes. Bugfix candidates.Neal Norwitz2002-01-292-4/+4
* Test for error status of shl_findsym. Fixes #505417. 2.2.1 candiate.Martin v. Löwis2002-01-261-1/+4
* Fix forMichael W. Hudson2002-01-231-2/+2
* Remove the unused & broken PyThread_*_sema() functions and related constants.Fred Drake2002-01-1910-550/+0
* A tentative fix for SF bug #503837 (Roeland Rengelink):Guido van Rossum2002-01-151-0/+3
* Workaround for what is probably a problem in Apple's gcc: <pthread.h> failsJack Jansen2002-01-151-0/+6
* Include <unistd.h> in Python.h. Fixes #500924.Martin v. Löwis2002-01-128-32/+1
* Fixed "u#" parser marker to pass through Unicode objects as-is withoutMarc-André Lemburg2002-01-091-2/+6
* Patch #494783: Rename cmp_op enumerators.Martin v. Löwis2002-01-012-29/+33
* Patch #497098: build support for GNU/Hurd.Martin v. Löwis2002-01-011-3/+15
* SF bug #496549 -Qnew and in-place division "/=".Tim Peters2001-12-251-11/+14
* PyOS_vsnprintf(): Change PyMem_Malloc() call to PyMem_MALLOC() macro,Barry Warsaw2001-12-211-2/+2
* SF bug #494668: PUSH() should assert-fail on overflow.Tim Peters2001-12-191-2/+4
* Patch #494384: Disable more Unicode API if Unicode is not used.Martin v. Löwis2001-12-181-0/+2
* _PyEval_SliceIndex(): explain why a NULL argument is allowed (thanksTim Peters2001-12-161-4/+4
* _PyEval_SliceIndex(): Repaired the comments, and added XXX commentsTim Peters2001-12-161-6/+11
* Fix for SF bug [ #492403 ] exec() segfaults on closure's func_codeJeremy Hylton2001-12-133-5/+10
* Add a comment explaining the st_symbols cache.Jeremy Hylton2001-12-101-1/+15