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
*
The Py_REF_DEBUG/COUNT_ALLOCS/Py_TRACE_REFS macro minefield: added
Tim Peters
2002-07-09
2
-28/+36
*
Rearranged and added comments to object.h, to clarify many things
Tim Peters
2002-07-07
1
-74/+120
*
Trashcan cleanup: Now that cyclic gc is always there, the trashcan
Tim Peters
2002-07-07
1
-50/+53
*
Removed WITH_CYCLE_GC #ifdef-ery. Holes:
Tim Peters
2002-07-07
3
-23/+8
*
Stop trying to cater to platforms with a broken HUGE_VAL definition. It
Tim Peters
2002-07-03
1
-12/+7
*
Finished transitioning to using gc_refs to track gc objects' states.
Tim Peters
2002-07-02
1
-3/+5
*
Reserved another gc_refs value for untracked objects. Every live gc
Tim Peters
2002-07-02
1
-2/+10
*
SF 569257 -- Name mangle double underscored variable names in __slots__.
Raymond Hettinger
2002-06-20
1
-0/+4
*
The opcode FOR_LOOP no longer exists.
Guido van Rossum
2002-06-13
1
-1/+0
*
This is my nearly two year old patch
Michael W. Hudson
2002-06-11
1
-0/+3
*
Patch #505375: Make doc strings optional.
Martin v. Löwis
2002-06-09
1
-0/+10
*
Patch #555929: Cygwin AH_BOTTOM cleanup patch (*** version 2 ***)
Jason Tishler
2002-06-04
2
-8/+18
*
As discussed on python-dev, add a mechanism to indicate features
Neal Norwitz
2002-05-29
1
-0/+1
*
Fix for bug [ 561796 ] string.find causes lazy error
Marc-André Lemburg
2002-05-29
1
-1/+2
*
Silly typo.
Michael W. Hudson
2002-05-27
1
-1/+1
*
- A new type object, 'string', is added. This is a common base type
Guido van Rossum
2002-05-24
1
-0/+1
*
Disambiguate the grammar for backtick.
Guido van Rossum
2002-05-24
1
-0/+1
*
Add missing \ to macro definition only used when universal newlines
Guido van Rossum
2002-05-24
1
-1/+1
*
Back out #555929
Martin v. Löwis
2002-05-15
2
-12/+3
*
Patch #555929: Cygwin AH_BOTTOM cleanup patch
Jason Tishler
2002-05-15
2
-3/+12
*
Patch #552433: Special-case tuples. Avoid sub-type checking for lists.
Martin v. Löwis
2002-05-08
1
-0/+6
*
_PyGC_generation0 is now a pointer
Neil Schemenauer
2002-05-04
1
-4/+4
*
Patch #551008: DL_IMPORT PyBool_FromLong.
Martin v. Löwis
2002-05-02
1
-1/+1
*
Moving pymalloc along.
Tim Peters
2002-04-28
2
-112/+131
*
- New builtin function enumerate(x), from PEP 279. Example:
Guido van Rossum
2002-04-26
2
-0/+17
*
Apply patch diff.txt from SF feature request
Walter Dörwald
2002-04-22
1
-0/+7
*
Moving pymalloc along.
Tim Peters
2002-04-22
2
-30/+10
*
Py_UniversalNewlineFread(): Many changes.
Tim Peters
2002-04-21
1
-5/+5
*
Mass checkin of universal newline support.
Jack Jansen
2002-04-14
1
-1/+19
*
_PyObject_DebugDumpStats: renamed to _PyObject_DebugMallocStats.
Tim Peters
2002-04-13
1
-1/+1
*
First stab at rationalizing the PyMem_ API. Mixing PyObject_xyz with
Tim Peters
2002-04-12
2
-62/+55
*
First cut at repairing out-of-date comments; make alignment of macro defs
Tim Peters
2002-04-12
1
-15/+24
*
Remove PyMalloc_* symbols. PyObject_Malloc now uses pymalloc if
Neil Schemenauer
2002-04-12
1
-30/+0
*
Remove PyMalloc_* symbols. PyObject_Malloc now uses pymalloc if
Neil Schemenauer
2002-04-12
1
-38/+44
*
Change the type of the tp_free from 'destructor' to 'freefunc'.
Neil Schemenauer
2002-04-12
1
-1/+2
*
Removed more hair in support of future-generator stmts.
Tim Peters
2002-04-12
2
-3/+3
*
Got rid of ifdefs for long-obsolete GUSI versions.
Jack Jansen
2002-04-11
1
-7/+0
*
Get rid of USE_CACHE_ALIGNED. It has no function anymore.
Jack Jansen
2002-04-11
1
-3/+0
*
Add standard header preamble and footer, a-la intobject.h. Main purpose is e...
Mark Hammond
2002-04-06
1
-0/+12
*
Removed old Digital Creations copyright/license notices (with
Guido van Rossum
2002-04-04
1
-55/+0
*
Oops. Here are the new files. My apologies.
Guido van Rossum
2002-04-03
1
-0/+20
*
Add the 'bool' type and its values 'False' and 'True', as described in
Guido van Rossum
2002-04-03
3
-17/+3
*
New PYMALLOC_DEBUG function void _PyMalloc_DebugDumpStats(void).
Tim Peters
2002-04-01
1
-0/+1
*
Patch #536908: Add missing #include guards/extern "C".
Martin v. Löwis
2002-03-30
3
-0/+26
*
Remove the CACHE_HASH and INTERN_STRINGS preprocessor symbols.
Tim Peters
2002-03-29
1
-23/+7
*
Add _Py_AS_GC macro. It will be used by the trashcan code on object.c.
Neil Schemenauer
2002-03-28
1
-2/+4
*
PYMALLOC_DEBUG routines: The "check API family" gimmick was going nowhere
Tim Peters
2002-03-28
1
-6/+6
*
Introduce two new flag bits that can be set in a PyMethodDef method
Fred Drake
2002-03-28
1
-1/+7
*
Add a comment that PyArg_GetInt is deprecated and should not be used
Neal Norwitz
2002-03-25
1
-0/+1
*
Remove many uses of PyArg_NoArgs macro, change METH_OLDARGS to METH_NOARGS.
Neal Norwitz
2002-03-25
1
-0/+3
[next]