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
/
Modules
Commit message (
Expand
)
Author
Age
Files
Lines
*
Raise a TypeError instead of a ValueError when too many initializers
Thomas Heller
2008-01-16
1
-1/+1
*
Raise a TypeError if conflicting positional and named arguments are
Thomas Heller
2008-01-16
1
-0/+15
*
Convert the internal ctypes array type cache to a WeakValueDict so
Thomas Heller
2008-01-16
1
-10/+20
*
Issue 1821: configure libffi for amd64 on FreeeBSD.
Thomas Heller
2008-01-14
2
-104/+57
*
?Why did my tests not notice this before?
Amaury Forgeot d'Arc
2008-01-14
1
-1/+1
*
As discussed in issue 1700288:
Amaury Forgeot d'Arc
2008-01-14
2
-2/+2
*
Make Modules/socketobject.c compile for Windows again.
Thomas Heller
2008-01-13
1
-4/+7
*
Fix a potential 'SystemError: NULL result without error'.
Thomas Heller
2008-01-11
1
-1/+1
*
Raise an error instead of crashing with a segfault when a NULL
Thomas Heller
2008-01-11
1
-0/+5
*
Removed unused variable
Christian Heimes
2008-01-11
1
-1/+1
*
Guard definition of TIPC_SUB_CANCEL with an #ifdef.
Georg Brandl
2008-01-11
1
-1/+4
*
Comment-out missing constant (from rev 59819)
Raymond Hettinger
2008-01-11
1
-1/+1
*
Check for fd of -1 to save fsync() and fstat() call
Andrew M. Kuchling
2008-01-10
1
-2/+4
*
Related to patch #1114: fix another place where attr_t is assumed to be a long
Andrew M. Kuchling
2008-01-09
1
-4/+9
*
Issue 846388. Adds a call to PyErr_CheckSignals to
Facundo Batista
2008-01-08
1
-0/+8
*
Use relative instead of absolute filenames in the C-level tracebacks.
Thomas Heller
2008-01-08
2
-2/+2
*
Patch 1114: fix compilation of curses module on 64-bit AIX, and any other LP6...
Andrew M. Kuchling
2008-01-08
1
-25/+79
*
Patch 1137: allow assigning to .buffer_size attribute of PyExpat.parser objects
Andrew M. Kuchling
2008-01-08
1
-0/+44
*
patch #1668: clarify envvar docs; rename THREADDEBUG to PYTHONTHREADDEBUG.
Georg Brandl
2008-01-07
1
-1/+1
*
Patch #602345 by Neal Norwitz and me: add -B option and PYTHONDONTWRITEBYTECO...
Georg Brandl
2008-01-07
1
-6/+14
*
Issue #1646: Make socket support TIPC. The socket module now has support
Christian Heimes
2008-01-07
2
-1/+157
*
Doc patch #1730 from Robin Stocker; minor corrections mostly to os.rst.
Georg Brandl
2008-01-05
1
-1/+1
*
Continue rolling back pep-3141 changes that changed behavior from 2.5. This
Jeffrey Yasskin
2008-01-05
1
-44/+6
*
Added interface to Windows' WSAIoctl and a simple example for a network sniffer.
Christian Heimes
2008-01-04
2
-1/+43
*
Added _struct._clearcache() for regression tests
Christian Heimes
2008-01-04
1
-1/+13
*
Fixed math.copysign() on Windows
Christian Heimes
2008-01-04
1
-6/+8
*
Finish-up the struct module optimizations started at the Iceland NFS sprint.
Raymond Hettinger
2008-01-04
1
-1/+205
*
Bug #1301: fixed a bad assert in _tkinter.
Guido van Rossum
2008-01-03
1
-3/+5
*
Added copysign(x, y) function to the math module
Christian Heimes
2008-01-03
1
-0/+11
*
Modified PyImport_Import and PyImport_ImportModule to always use absolute imp...
Christian Heimes
2008-01-03
10
-15/+15
*
Added math.isinf() and math.isnan()
Christian Heimes
2008-01-03
1
-6/+34
*
Backport PEP 3141 from the py3k branch to the trunk. This includes r50877 (just
Jeffrey Yasskin
2008-01-03
1
-6/+44
*
Return results from Python callbacks to Tcl as Tcl objects.
Martin v. Löwis
2008-01-01
1
-12/+5
*
Fix the docstrings of time.localtime() and gmtime() for the tm_mday field.
Brett Cannon
2007-12-24
1
-2/+3
*
Patch #1583 by Adam Olsen.
Guido van Rossum
2007-12-19
1
-1/+52
*
#1629: Renamed Py_Size, Py_Type and Py_Refcnt to Py_SIZE, Py_TYPE and Py_REFC...
Christian Heimes
2007-12-19
53
-340/+340
*
Issue #1645 by Alberto Bertogli. Fix a comment.
Guido van Rossum
2007-12-18
1
-6/+6
*
Issue #1642: Fix segfault in ctypes when trying to delete attributes.
Thomas Heller
2007-12-18
2
-0/+21
*
Fixed warning in ssl module
Christian Heimes
2007-12-14
1
-1/+1
*
Fixed a warning in _codecs_iso2022.c and some non C89 conform // comments.
Christian Heimes
2007-12-14
3
-4/+4
*
Fix bug 1604. deque.__init__() did not clear existing contents like list.__in...
Raymond Hettinger
2007-12-13
1
-0/+1
*
Fixed a nasty problem in the xxmodule.c
Christian Heimes
2007-12-12
1
-1/+1
*
Forward-port of commit 59184.
Gerhard Häring
2007-12-11
2
-4/+14
*
Patch #1643738 by Ulisses Furquim -- make the is_tripped variable
Guido van Rossum
2007-12-10
1
-5/+26
*
Forward-port r59310:
Martin v. Löwis
2007-12-03
1
-2/+5
*
Issue #1727780: Support loading pickles of random.Random objects created
Martin v. Löwis
2007-12-03
1
-8/+9
*
I followed MA Lemberg's suggestion and added comments to the late initializat...
Christian Heimes
2007-12-03
1
-5/+7
*
Applied my patch #1455 with some extra fixes for VS 2005
Christian Heimes
2007-12-03
1
-3/+7
*
Fix for feature request #1528 Add os.fchmod
Christian Heimes
2007-11-30
1
-0/+83
*
Remove unused global variable, and remove unneeded COMError.__str__
Thomas Heller
2007-11-27
1
-15/+0
[next]