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
*
Invert the checks in get_[u]long and get_[u]longlong. The intent was
Thomas Heller
2008-01-24
1
-19/+15
*
Replace Py_BuildValue with PyTuple_Pack because it is faster.
Thomas Heller
2008-01-24
1
-7/+10
*
Use a PyDictObject again for the array type cache; retrieving items
Thomas Heller
2008-01-24
1
-16/+137
*
Fix misleading comment reported in issue #1917.
Guido van Rossum
2008-01-23
1
-1/+1
*
patch 1754489 by vlahan:
Armin Rigo
2008-01-23
1
-2/+2
*
Use Py_TYPE() instead of ->ob_type
Christian Heimes
2008-01-23
1
-1/+1
*
Fix for #1087741 patch.
Georg Brandl
2008-01-22
1
-1/+1
*
Reformat some ugly code.
Georg Brandl
2008-01-21
1
-26/+39
*
Patch #1720595: add T_BOOL to the range of structmember types.
Georg Brandl
2008-01-21
1
-2/+5
*
#1087741: make mmap.mmap the type of mmap objects, not a
Georg Brandl
2008-01-21
1
-20/+27
*
Switch mmap from old Py_FindMethod to new PyObject_GenericGetAttr attribute a...
Georg Brandl
2008-01-20
1
-10/+36
*
#1509: fix sqlite3 docstrings and docs w.r.t. cursor.fetchXXX methods.
Georg Brandl
2008-01-19
1
-3/+3
*
Patch #1019808 from Federico Schwindt: Return correct socket error when
Andrew M. Kuchling
2008-01-19
1
-9/+16
*
#1663329: add os.closerange() to close a range of fds,
Georg Brandl
2008-01-19
1
-0/+19
*
Patch #976880: add mmap .rfind() method, and 'end' paramter to .find().
Andrew M. Kuchling
2008-01-19
1
-5/+34
*
Silence Coverity false alerts with CIDs #172, #183, #184
Christian Heimes
2008-01-18
1
-1/+2
*
Coverity CID #168
Christian Heimes
2008-01-18
1
-0/+1
*
Coverity issue CID #182
Christian Heimes
2008-01-18
1
-0/+10
*
Coverity issue CID #197
Christian Heimes
2008-01-18
1
-0/+2
*
clearcache() needs to remove the dict as well as clear it.
Raymond Hettinger
2008-01-18
1
-2/+1
*
Fix a function pointer declaration to silence the compiler.
Brett Cannon
2008-01-17
1
-1/+1
*
Make starmap() match its pure python definition and accept any itertable inpu...
Raymond Hettinger
2008-01-17
1
-3/+4
*
Use 'g' instead of 'D' as the ctypes typecode for c_longdouble, for
Thomas Heller
2008-01-16
2
-4/+4
*
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
[next]