index
:
cpython.git
2.7
3.3
3.4
3.5
3.6
benjamin-clang
benjamin-iteration-torture
buildbot-custom
master
https://github.com/python/cpython.git
summary
refs
log
tree
commit
diff
stats
log msg
author
committer
range
path:
root
/
Python
Commit message (
Expand
)
Author
Age
Files
Lines
*
Patch #504224: add plan9 threads include to thread.c.
Martin v. Löwis
2002-03-09
1
-0/+4
*
Patch #494045: patches errno and stat to cope on plan9.
Martin v. Löwis
2002-03-09
2
-16/+36
*
Docstring for filter(): Someone on the Tutor list reasonably complained
Tim Peters
2002-03-09
1
-5/+5
*
Patch #50002: Display line information for bad \x escapes:
Martin v. Löwis
2002-03-03
4
-17/+52
*
SF #506611, fix sys.setprofile(), sys.settrace() core dumps
Neal Norwitz
2002-03-03
1
-2/+2
*
SF patch 522961: Leak in Python/thread_nt.h, from Gerald S. Williams.
Tim Peters
2002-02-28
1
-14/+1
*
Add 2002 to PSF copyrights.
Michael W. Hudson
2002-02-27
1
-1/+1
*
OS/2 EMX port changes (Python part of patch #450267):
Andrew MacIntyre
2002-02-26
4
-3/+140
*
Move some opcodes to top of big eval_frame switch statement. Skip
Neil Schemenauer
2002-02-17
1
-44/+45
*
LOAD_FAST: rearrange branches to favor the expected case, and get
Tim Peters
2002-02-12
1
-10/+7
*
Removed a spurious }. (How did it get there in the first place??)
Jack Jansen
2002-02-11
1
-2/+0
*
Fix to the UTF-8 encoder: it failed on 0-length input strings.
Marc-André Lemburg
2002-02-07
1
-1/+20
*
Got rid of an extra level of {} and funny formatting that was still
Jack Jansen
2002-02-01
1
-58/+56
*
A new dynload_next, which actually only works on OSX but isn't renamed yet.
Jack Jansen
2002-02-01
1
-112/+56
*
Fix missing space between words. Bugfix candidate.
Neal Norwitz
2002-01-29
1
-1/+1
*
Fix spelling mistakes. Bugfix candidates.
Neal Norwitz
2002-01-29
2
-4/+4
*
Test for error status of shl_findsym. Fixes #505417. 2.2.1 candiate.
Martin v. Löwis
2002-01-26
1
-1/+4
*
Fix for
Michael W. Hudson
2002-01-23
1
-2/+2
*
Remove the unused & broken PyThread_*_sema() functions and related constants.
Fred Drake
2002-01-19
10
-550/+0
*
A tentative fix for SF bug #503837 (Roeland Rengelink):
Guido van Rossum
2002-01-15
1
-0/+3
*
Workaround for what is probably a problem in Apple's gcc: <pthread.h> fails
Jack Jansen
2002-01-15
1
-0/+6
*
Include <unistd.h> in Python.h. Fixes #500924.
Martin v. Löwis
2002-01-12
8
-32/+1
*
Fixed "u#" parser marker to pass through Unicode objects as-is without
Marc-André Lemburg
2002-01-09
1
-2/+6
*
Patch #494783: Rename cmp_op enumerators.
Martin v. Löwis
2002-01-01
2
-29/+33
*
Patch #497098: build support for GNU/Hurd.
Martin v. Löwis
2002-01-01
1
-3/+15
*
SF bug #496549 -Qnew and in-place division "/=".
Tim Peters
2001-12-25
1
-11/+14
*
PyOS_vsnprintf(): Change PyMem_Malloc() call to PyMem_MALLOC() macro,
Barry Warsaw
2001-12-21
1
-2/+2
*
SF bug #494668: PUSH() should assert-fail on overflow.
Tim Peters
2001-12-19
1
-2/+4
*
Patch #494384: Disable more Unicode API if Unicode is not used.
Martin v. Löwis
2001-12-18
1
-0/+2
*
_PyEval_SliceIndex(): explain why a NULL argument is allowed (thanks
Tim Peters
2001-12-16
1
-4/+4
*
_PyEval_SliceIndex(): Repaired the comments, and added XXX comments
Tim Peters
2001-12-16
1
-6/+11
*
Fix for SF bug [ #492403 ] exec() segfaults on closure's func_code
Jeremy Hylton
2001-12-13
3
-5/+10
*
Add a comment explaining the st_symbols cache.
Jeremy Hylton
2001-12-10
1
-1/+15
*
PySymtableEntry_New(): I'm not sure what this routine is doing, but it
Tim Peters
2001-12-08
1
-0/+1
*
Missing DECREFs when exception is raised in sys.excepthook.
Jeremy Hylton
2001-12-07
1
-0/+3
*
Don't fail on importing things with undefined references. Unfortunately we
Jack Jansen
2001-12-06
1
-1/+2
*
Fix for SF bug #489671 (Neil Norwitz): memory leak in test_richcmp.
Guido van Rossum
2001-12-06
1
-0/+8
*
Fix a typo (probably caused by autocompletion <blush>) that caused a
Guido van Rossum
2001-12-06
1
-1/+1
*
SF bug #488514: -Qnew needs work
Tim Peters
2001-12-06
2
-11/+18
*
Fix SF bug #486144: Uninitialized __slot__ vrbl is None.
Guido van Rossum
2001-12-04
1
-1/+8
*
SF bug #488687 reported by Neal Norwitz
Jeremy Hylton
2001-12-04
2
-1/+2
*
More sprintf -> PyOS_snprintf.
Tim Peters
2001-12-04
1
-1/+1
*
Fix the final two issues in Armin Rigo's SF bug #488477: apply_slice()
Guido van Rossum
2001-12-03
1
-4/+10
*
unpack_iterable(): Add a missing DECREF in an error case. Reported by
Guido van Rossum
2001-12-03
1
-0/+1
*
mysnprintf.c: Massive rewrite of PyOS_snprintf and PyOS_vsnprintf, to
Tim Peters
2001-12-03
3
-89/+78
*
mywrite(): The test for trouble in PyOS_vsnprintf was wrong on both
Tim Peters
2001-12-02
1
-3/+10
*
When the number of bytes written to the malloc'ed buffer is larger
Guido van Rossum
2001-12-01
1
-5/+5
*
SF bug 486278 SystemError: Python/getargs.c:1086: bad.
Tim Peters
2001-11-29
1
-7/+10
*
Two screwups fixed for sizeof(char *) instead of sizeof(char []).
Jeremy Hylton
2001-11-28
1
-77/+82
*
More sprintf -> PyOS_snprintf.
Tim Peters
2001-11-28
1
-2/+3
[next]