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
*
Implemented Martin's suggestion to clear the free lists during the garbage co...
Christian Heimes
2008-02-14
5
-0/+11
*
Forgot to modify header file in r60707.
Eric Smith
2008-02-10
1
-0/+9
*
Added PyNumber_ToBase and supporting routines _PyInt_Format and
Eric Smith
2008-02-10
2
-0/+13
*
Deallocate content of the dict free list on interpreter shutdown
Christian Heimes
2008-02-08
1
-0/+1
*
Patch #1953
Christian Heimes
2008-02-04
2
-0/+5
*
Make int() and long() fall back to __trunc__(). See issue 2002.
Jeffrey Yasskin
2008-02-04
1
-0/+13
*
Nasty typo in setobject.h
Amaury Forgeot d'Arc
2008-02-03
1
-1/+1
*
Ensure that PySet_Add() operates on a newly created frozenset, like PyTuple_S...
Amaury Forgeot d'Arc
2008-02-03
1
-1/+5
*
Fixed bug #1983: Return from fork() is pid_t, not int
Christian Heimes
2008-01-31
1
-1/+5
*
Patch #1970 by Antoine Pitrou: Speedup unicode whitespace and linebreak detec...
Christian Heimes
2008-01-30
1
-1/+8
*
Factor-out common code with a new macro
Raymond Hettinger
2008-01-28
1
-0/+2
*
Added clear cache methods to clear the internal type lookup cache for ref lea...
Christian Heimes
2008-01-27
1
-0/+1
*
Add stdarg include for va_list to get this to compile on cygwin
Neal Norwitz
2008-01-27
1
-0/+2
*
#1473257: add generator.gi_code attribute that refers to
Georg Brandl
2008-01-26
1
-0/+3
*
Backport of several functions from Python 3.0 to 2.6 including PyUnicode_From...
Christian Heimes
2008-01-25
3
-7/+33
*
Don't repeat yourself
Christian Heimes
2008-01-22
1
-1/+2
*
Fixed a missing (X) in define
Christian Heimes
2008-01-22
1
-1/+1
*
Patch #1720595: add T_BOOL to the range of structmember types.
Georg Brandl
2008-01-21
1
-0/+3
*
Fixed a wrong assumption in configure.in and Include/pyport.h. The is finite ...
Christian Heimes
2008-01-20
1
-2/+2
*
Re-apply patch #1700288 (first applied in r59931, rolled back in r59940)
Amaury Forgeot d'Arc
2008-01-14
1
-0/+8
*
Back out r59931 - test_ctypes fails with it.
Georg Brandl
2008-01-13
1
-8/+0
*
Patch #1700288: Method cache optimization, by Armin Rigo, ported to
Georg Brandl
2008-01-12
1
-0/+8
*
Patch #602345 by Neal Norwitz and me: add -B option and PYTHONDONTWRITEBYTECO...
Georg Brandl
2008-01-07
1
-0/+1
*
Modified PyImport_Import and PyImport_ImportModule to always use absolute imp...
Christian Heimes
2008-01-03
2
-5/+2
*
Some build bots don't compile mathmodule. There is an issue with the long def...
Christian Heimes
2008-01-03
1
-2/+9
*
Patch #1583 by Adam Olsen.
Guido van Rossum
2007-12-19
1
-0/+3
*
#1629: Renamed Py_Size, Py_Type and Py_Refcnt to Py_SIZE, Py_TYPE and Py_REFC...
Christian Heimes
2007-12-19
32
-74/+79
*
Applied patch #1635: Float patch for inf and nan on Windows (and other platfo...
Christian Heimes
2007-12-18
3
-0/+56
*
Give meaning to the oparg for BUILD_MAP: estimated size of the dictionary.
Raymond Hettinger
2007-12-18
1
-0/+1
*
Speed-up dictionary constructor by about 10%.
Raymond Hettinger
2007-12-18
1
-0/+1
*
Backport of r59456:59458 from py3k to trunk
Christian Heimes
2007-12-10
1
-0/+4
*
Fix Issue 1045.
Raymond Hettinger
2007-12-06
1
-17/+4
*
Feature #1534
Christian Heimes
2007-12-01
1
-0/+4
*
Backport of the PCbuild9 directory from the py3k branch.
Christian Heimes
2007-11-22
1
-2/+2
*
The incremental decoder for utf-7 must preserve its state between calls.
Amaury Forgeot d'Arc
2007-11-20
1
-0/+7
*
Patch #1739468: Directories and zipfiles containing __main__.py are now execu...
Nick Coghlan
2007-11-18
1
-0/+2
*
Fix a crasher where Python code managed to infinitely recurse in C code without
Brett Cannon
2007-09-07
1
-0/+1
*
Backport r57105 and r57145 from the py3k branch: UTF-32 codecs.
Walter Dörwald
2007-08-17
1
-0/+82
*
Py_ssize_t is defined regardless of HAVE_LONG_LONG. Will backport
Neal Norwitz
2007-08-03
1
-1/+3
*
PEP 3123: Provide forward compatibility with Python 3.0, while keeping
Martin v. Löwis
2007-07-21
32
-74/+80
*
Fix #1752132: wrong comment in opcode description.
Georg Brandl
2007-07-11
1
-1/+1
*
Add T_PYSSIZET in structmember.h: This can be used for
Walter Dörwald
2007-06-13
2
-2/+3
*
Provide PY_LLONG_MAX on all systems having long long.
Martin v. Löwis
2007-06-13
1
-4/+10
*
Provide LLONG_MAX for S390.
Martin v. Löwis
2007-06-09
1
-0/+7
*
Patch #1733960: Allow T_LONGLONG to accept ints.
Martin v. Löwis
2007-06-09
1
-0/+3
*
Add -3 option to the interpreter to warn about features that are
Neal Norwitz
2007-05-23
1
-0/+2
*
Stop using PyMem_FREE while the GIL is not held. For details see:
Neal Norwitz
2007-05-02
1
-0/+2
*
Export function sanitize_the_mode from fileobject.c as _PyFile_SanitizeMode()...
Kristján Valur Jónsson
2007-04-26
1
-0/+5
*
Extend work on rev 52962 and 53829 eliminating redundant PyObject_Hash() call...
Raymond Hettinger
2007-03-20
1
-1/+2
*
Bug #742342: make Python stop segfaulting on infinitely-recursive reload()s. ...
Collin Winter
2007-03-12
1
-0/+1
[next]