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
/
Include
Commit message (
Expand
)
Author
Age
Files
Lines
*
Constify filenames and scripts. Fixes #651362.
Martin v. Löwis
2002-12-11
5
-48/+49
*
Constify char* API. Fixes #651363. 2.2 candidate.
Martin v. Löwis
2002-12-11
1
-3/+3
*
SF 548651: Fix the METH_CLASS implementation.
Tim Peters
2002-12-09
1
-0/+1
*
Patch #614055: Support OpenVMS.
Martin v. Löwis
2002-12-06
1
-0/+3
*
James Henstridge pointed out a misleading comment.
Michael W. Hudson
2002-11-25
1
-10/+6
*
Remove MALLOC_ZERO_RETURNS_NULL.
Martin v. Löwis
2002-11-23
1
-9/+4
*
Fix for #641455: curses module doesn't build on MacOSX. It turns out the
Jack Jansen
2002-11-22
1
-0/+9
*
Fix PEP 293 related problems with --disable-unicode builds
Walter Dörwald
2002-11-21
1
-0/+3
*
Remove _Py_ResetReferences. Fixes bug #529750 "Circular reference makes
Neil Schemenauer
2002-11-17
1
-1/+0
*
Assorted patches from Armin Rigo:
Michael W. Hudson
2002-11-08
1
-0/+5
*
Patch #512981: Update readline input stream on sys.stdin/out change.
Martin v. Löwis
2002-10-26
1
-2/+2
*
Clean up some whitespace to be consistent with Python's C style.
Fred Drake
2002-10-17
1
-4/+4
*
Add PyStructSequence_UnnamedField. Add stat_float_times.
Martin v. Löwis
2002-10-16
1
-0/+2
*
SF # 607253, header file problems by Ralf W. Grosse-Kunstleve
Neal Norwitz
2002-10-04
2
-6/+6
*
Patch 594001: PEP 277 - Unicode file name support for Windows NT.
Mark Hammond
2002-10-03
1
-2/+23
*
Back out the previous change. It doesn't save any space on 64-bit
Guido van Rossum
2002-09-17
1
-2/+2
*
Rearrange the members of struct _node to put shorter fields towards
Guido van Rossum
2002-09-17
1
-2/+2
*
Use Py_GCC_ATTRIBUTE instead of __attribute__. Compilers other than GCC
Neil Schemenauer
2002-09-15
5
-10/+12
*
A slight change to SET_LINENO-less tracing.
Michael W. Hudson
2002-09-11
1
-0/+2
*
Added include guards and C++ extern "C" {} constructs. Partial fix for #607253.
Jack Jansen
2002-09-10
1
-1/+3
*
replace thread state objects' ticker and checkinterval fields with two
Skip Montanaro
2002-09-03
2
-2/+4
*
Removed bogus PyUnicodeTranslateError_GetEncoding, as
Walter Dörwald
2002-09-02
1
-1/+0
*
PEP 293 implemention (from SF patch http://www.python.org/sf/432401)
Walter Dörwald
2002-09-02
2
-0/+96
*
Further SET_LINENO reomval fixes. See comments in patch #587933.
Michael W. Hudson
2002-08-30
1
-3/+0
*
SF patch 576101, by Oren Tirosh: alternative implementation of
Guido van Rossum
2002-08-19
2
-4/+15
*
Make PyDescr_IsData() a macro. It's too simple to be a function.
Guido van Rossum
2002-08-19
1
-1/+1
*
This is my patch
Michael W. Hudson
2002-08-15
1
-2/+3
*
provide less mysterious error messages when seeing end-of-line in
Skip Montanaro
2002-08-15
1
-0/+2
*
Added a FutureWarning for constructs that will change semantically in
Barry Warsaw
2002-08-14
1
-0/+1
*
Patch #505705: Remove eval in pickle and cPickle.
Martin v. Löwis
2002-08-14
1
-0/+4
*
Correct PyAPI_FUNC to PyAPI_DATA - sorry Jack.
Mark Hammond
2002-08-12
1
-2/+2
*
Add name mangling for new PyUnicode_FromOrdinal() and fix declaration
Marc-André Lemburg
2002-08-12
1
-1/+3
*
Excise DL_EXPORT from Include.
Mark Hammond
2002-08-12
51
-673/+669
*
Add C API PyUnicode_FromOrdinal() which exposes unichr() at C level.
Marc-André Lemburg
2002-08-11
1
-0/+12
*
A modest speedup of object deallocation. call_finalizer() did rather
Guido van Rossum
2002-08-08
1
-0/+1
*
Added info about the right way to leave the body of a trashcan-protected
Tim Peters
2002-08-07
1
-0/+5
*
SF patch 580331 by Oren Tirosh: make file objects their own iterator.
Guido van Rossum
2002-08-06
1
-3/+6
*
Remove function definition from cStringIO.h.
Jeremy Hylton
2002-08-05
1
-23/+4
*
Patch #534304: Implement phase 1 of PEP 263.
Martin v. Löwis
2002-08-04
2
-0/+2
*
Added one call to Py_Main(), for OSX framework builds only, that will get the
Jack Jansen
2002-08-02
1
-1/+3
*
Excise DL_EXPORT/DL_IMPORT from Modules/*. Required adding a prototype
Mark Hammond
2002-08-02
1
-0/+3
*
New functions for extension writers on Windows:
Thomas Heller
2002-07-29
1
-0/+3
*
Excise DL_IMPORT/EXPORT from object.h, and related files. This patch
Mark Hammond
2002-07-29
5
-93/+93
*
Define _XOPEN_SOURCE and _GNU_SOURCE in pyconfig.h, to have them
Martin v. Löwis
2002-07-20
1
-11/+0
*
Land Patch [ 566100 ] Rationalize DL_IMPORT and DL_EXPORT.
Mark Hammond
2002-07-19
2
-39/+93
*
Define _XOPEN_SOURCE in configure and Python.h.
Jeremy Hylton
2002-07-18
1
-6/+1
*
staticforward bites the dust.
Jeremy Hylton
2002-07-17
1
-18/+9
*
SF patch # 580411, move frame macros from frameobject.h into ceval.c
Neal Norwitz
2002-07-14
1
-20/+0
*
HAVE_LIMITS_H -- raise #error if not defined; limits.h is std C
Tim Peters
2002-07-12
2
-12/+2
*
object.h special-build macro minefield: renamed all the new lexical
Tim Peters
2002-07-11
1
-60/+40
[next]