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
*
Update to newer version of ffi. Fixes crashes and test failures of longdouble
Neal Norwitz
2008-01-27
2
-16/+48
*
Initialize variable to prevent warning on some platform/config.
Neal Norwitz
2008-01-27
1
-2/+2
*
Use int for the sign rather than a char. char can be signed or unsigned.
Neal Norwitz
2008-01-27
1
-1/+1
*
Mostly reformat. Also set an error and return NULL if neither MS_WINDOWS
Neal Norwitz
2008-01-27
1
-15/+13
*
Cleanup the code a bit. test_rfind is failing on PPC and PPC64 buildbots,
Neal Norwitz
2008-01-26
1
-7/+7
*
#1940: make it possible to use curses.filter() before curses.initscr()
Georg Brandl
2008-01-26
1
-1/+10
*
setup.py doesn't pick up changes to a header file
Christian Heimes
2008-01-25
1
-4/+4
*
Backport of several functions from Python 3.0 to 2.6 including PyUnicode_From...
Christian Heimes
2008-01-25
1
-0/+927
*
Add prototypes to get the mathmodule.c to compile on OSF1 5.1 (Tru64)
Neal Norwitz
2008-01-25
1
-0/+5
*
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
[next]