summaryrefslogtreecommitdiffstats
path: root/Python
Commit message (Expand)AuthorAgeFilesLines
* 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
* PySymtableEntry_New(): I'm not sure what this routine is doing, but itTim Peters2001-12-081-0/+1
* Missing DECREFs when exception is raised in sys.excepthook.Jeremy Hylton2001-12-071-0/+3
* Don't fail on importing things with undefined references. Unfortunately weJack Jansen2001-12-061-1/+2
* Fix for SF bug #489671 (Neil Norwitz): memory leak in test_richcmp.Guido van Rossum2001-12-061-0/+8
* Fix a typo (probably caused by autocompletion <blush>) that caused aGuido van Rossum2001-12-061-1/+1
* SF bug #488514: -Qnew needs workTim Peters2001-12-062-11/+18
* Fix SF bug #486144: Uninitialized __slot__ vrbl is None.Guido van Rossum2001-12-041-1/+8
* SF bug #488687 reported by Neal NorwitzJeremy Hylton2001-12-042-1/+2
* More sprintf -> PyOS_snprintf.Tim Peters2001-12-041-1/+1
* Fix the final two issues in Armin Rigo's SF bug #488477: apply_slice()Guido van Rossum2001-12-031-4/+10
* unpack_iterable(): Add a missing DECREF in an error case. Reported byGuido van Rossum2001-12-031-0/+1
* mysnprintf.c: Massive rewrite of PyOS_snprintf and PyOS_vsnprintf, toTim Peters2001-12-033-89/+78
* mywrite(): The test for trouble in PyOS_vsnprintf was wrong on bothTim Peters2001-12-021-3/+10
* When the number of bytes written to the malloc'ed buffer is largerGuido van Rossum2001-12-011-5/+5
* SF bug 486278 SystemError: Python/getargs.c:1086: bad.Tim Peters2001-11-291-7/+10
* Two screwups fixed for sizeof(char *) instead of sizeof(char []).Jeremy Hylton2001-11-281-77/+82
* More sprintf -> PyOS_snprintf.Tim Peters2001-11-281-2/+3
* Use PyOS_snprintf() at some cost even though it was correct before.Jeremy Hylton2001-11-281-6/+7
* Use PyOS_vsnprintf() and check its return value.Jeremy Hylton2001-11-281-2/+9
* ste_repr(): Conversion of sprintf() to PyOS_snprintf() for bufferBarry Warsaw2001-11-281-4/+5
* aix_loaderror(): Conversion of sprintf() to PyOS_snprintf() for bufferBarry Warsaw2001-11-281-1/+1
* code_repr(), com_addop_varname(), com_list_comprehension(),Barry Warsaw2001-11-281-32/+42
* Use PyOS_snprintf instead of sprintf.Jeremy Hylton2001-11-2812-35/+42
* Use PyOS_snprintf instead of sprintf.Jeremy Hylton2001-11-281-15/+18
* Use PyOS_snprintf when possible.Jeremy Hylton2001-11-281-34/+41
* Use PyOS_snprintf instead of sprintf.Jeremy Hylton2001-11-281-11/+11
* Fixes for possible buffer overflows in sprintf() usages.Marc-André Lemburg2001-11-284-17/+12
* SF bug #483469: crash on unbounded recursion in __del__.Tim Peters2001-11-271-0/+8
* SF bug 485175: buffer overflow in traceback.c.Tim Peters2001-11-271-3/+3
* Fix for bug #480188: printing unicode objectsMarc-André Lemburg2001-11-201-3/+13
* Since the MAGIC number scheme is going to break on January 1st, documentTim Peters2001-11-181-4/+16