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
*
Trim leading zeros from a floating point exponent, per C99. See issue 1600. ...
Eric Smith
2008-02-20
1
-27/+127
*
Perform correct handling of stack overflow for windows: Catch the correct exc...
Kristján Valur Jónsson
2008-02-18
1
-2/+8
*
Backport of PEP 3101, Advanced String Formatting, from py3k.
Eric Smith
2008-02-17
3
-0/+47
*
Deallocate content of the dict free list on interpreter shutdown
Christian Heimes
2008-02-08
1
-0/+1
*
Remove unnecessary curly braces around an int literal.
Brett Cannon
2008-02-07
1
-2/+2
*
Cast a struct to a void pointer so as to do a type-safe pointer comparison
Brett Cannon
2008-02-07
1
-3/+3
*
Change r60575 broke test_compile:
Amaury Forgeot d'Arc
2008-02-05
1
-0/+3
*
#1750076: Debugger did not step on every iteration of a while statement.
Amaury Forgeot d'Arc
2008-02-04
1
-14/+15
*
Patch #1953
Christian Heimes
2008-02-04
1
-13/+34
*
Fix refleak
Neal Norwitz
2008-02-01
1
-0/+1
*
Move __builtins__.trunc() to math.trunc() per
Jeffrey Yasskin
2008-02-01
1
-15/+0
*
Issue #1678380. Fix a bug that identifies 0j and -0j when they appear
Mark Dickinson
2008-01-31
1
-12/+47
*
The previous change was causing a segfault after multiple calls to Py_Initial...
Christian Heimes
2008-01-30
1
-3/+3
*
Fixed some references leaks in sys.
Christian Heimes
2008-01-30
2
-21/+19
*
Removed unused var
Christian Heimes
2008-01-30
1
-1/+1
*
CallMethod is faster with a NULL third-argument than with an empty format str...
Raymond Hettinger
2008-01-29
1
-1/+1
*
Removed unnecessary conditional (spotted by Neal Norwitz).
Raymond Hettinger
2008-01-28
1
-1/+1
*
Let marshal built-up sets and frozensets one element at a time (without creat...
Raymond Hettinger
2008-01-28
1
-12/+8
*
static PyObject* variables should use PyString_InternFromString() instead of ...
Christian Heimes
2008-01-28
1
-2/+2
*
Added clear cache methods to clear the internal type lookup cache for ref lea...
Christian Heimes
2008-01-27
2
-0/+16
*
Reduce buffer size since we do not need 1k
Neal Norwitz
2008-01-27
1
-1/+1
*
Revert PySet_Add() changes.
Raymond Hettinger
2008-01-26
1
-8/+12
*
Let marshal build-up sets and frozensets one element at a time.
Raymond Hettinger
2008-01-26
1
-12/+8
*
#1920: when considering a block starting by "while 0", the compiler optimized...
Amaury Forgeot d'Arc
2008-01-24
1
-1/+4
*
Fix two crashers.
Guido van Rossum
2008-01-23
2
-2/+11
*
Applied #1069410
Christian Heimes
2008-01-23
1
-0/+9
*
Patch #1720595: add T_BOOL to the range of structmember types.
Georg Brandl
2008-01-21
1
-0/+15
*
Provide a sanity check during PyThreadState_DeleteCurrent() and
Gregory P. Smith
2008-01-21
1
-0/+10
*
Fixed a wrong assumption in configure.in and Include/pyport.h. The is finite ...
Christian Heimes
2008-01-20
1
-0/+3
*
#1648: add sys.gettrace() and sys.getprofile().
Georg Brandl
2008-01-20
1
-0/+42
*
Fix #1679: "0x" was taken as a valid integer literal.
Georg Brandl
2008-01-19
1
-15/+28
*
#1782: don't leak in error case in PyModule_AddXxxConstant. Patch by Hrvoje N...
Georg Brandl
2008-01-19
1
-2/+14
*
Added bytes and b'' as aliases for str and ''
Christian Heimes
2008-01-18
2
-0/+4
*
Coverity issue CID #169
Christian Heimes
2008-01-18
1
-1/+2
*
Typo fixes
Andrew M. Kuchling
2008-01-15
1
-2/+2
*
Applied patch #1816: sys.flags patch
Christian Heimes
2008-01-14
1
-3/+94
*
Fixed #1776. __import__() no longer imports modules by file name
Christian Heimes
2008-01-09
1
-0/+10
*
Make Python compile with --disable-unicode.
Georg Brandl
2008-01-07
1
-0/+2
*
patch #1668: clarify envvar docs; rename THREADDEBUG to PYTHONTHREADDEBUG.
Georg Brandl
2008-01-07
2
-2/+2
*
Patch #602345 by Neal Norwitz and me: add -B option and PYTHONDONTWRITEBYTECO...
Georg Brandl
2008-01-07
3
-2/+11
*
#1755: typo.
Georg Brandl
2008-01-07
1
-1/+1
*
Fix C++-style comment.
Georg Brandl
2008-01-05
1
-3/+3
*
Continue rolling back pep-3141 changes that changed behavior from 2.5. This
Jeffrey Yasskin
2008-01-05
1
-17/+25
*
Patch #1725 by Mark Dickinson, fixes incorrect conversion of -1e1000
Guido van Rossum
2008-01-05
1
-22/+52
*
Moved include "Python.h" in front of other imports to silence a warning.
Christian Heimes
2008-01-04
1
-1/+2
*
Partial port of r59682 from py3k.
Amaury Forgeot d'Arc
2008-01-04
1
-1/+2
*
Modified PyImport_Import and PyImport_ImportModule to always use absolute imp...
Christian Heimes
2008-01-03
3
-25/+53
*
Backport PEP 3141 from the py3k branch to the trunk. This includes r50877 (just
Jeffrey Yasskin
2008-01-03
1
-23/+30
*
Improve performance of built-in any()/all() by avoiding PyIter_Next() --
Guido van Rossum
2007-12-20
1
-8/+28
*
Add comments
Raymond Hettinger
2007-12-20
1
-3/+3
[next]