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
*
Issue #18408: Fix cjkcodecs decoders, add a new MBERR_EXCEPTION constant to
Victor Stinner
2013-07-16
3
-2/+5
*
Issue #18408: Fix fileio_read() on _PyBytes_Resize() failure
Victor Stinner
2013-07-16
1
-1/+1
*
Issue #18408: random_seed() now raises a MemoryError on memory allocation
Victor Stinner
2013-07-15
1
-1/+4
*
Issue #18408: Fix CJK decoders, raise MemoryError on memory allocation failure
Victor Stinner
2013-07-15
1
-1/+3
*
Issue #18408: Fix pyexpat.ParserCreate()
Victor Stinner
2013-07-15
1
-9/+10
*
Issue #18393: Remove use of deprecated API on OSX
Ronald Oussoren
2013-07-15
1
-84/+0
*
Issue #18344: Fix potential ref-leaks in _bufferedreader_read_all().
Richard Oudkerk
2013-07-15
1
-48/+45
|
\
|
*
Issue #18344: Fix potential ref-leaks in _bufferedreader_read_all().
Richard Oudkerk
2013-07-15
1
-48/+45
*
|
Tweak the deque struct by moving the least used fields (maxlen and weakref) t...
Raymond Hettinger
2013-07-14
1
-1/+1
*
|
Use a do-while loop in the inner loop for rotate (m is always greater than ze...
Raymond Hettinger
2013-07-14
1
-2/+6
*
|
Move the freeblock() call outside the main loop to speed-up and simplify the ...
Raymond Hettinger
2013-07-13
1
-9/+15
*
|
Issue #18408: Fix constructors of _elementtree.c
Victor Stinner
2013-07-12
1
-12/+15
*
|
Issue #18408: Fix create_extra() of _elementtree.c, raise MemoryError on memory
Victor Stinner
2013-07-12
1
-1/+3
*
|
Issue #18408: parser module: fix error handling in node2tuple()
Victor Stinner
2013-07-11
1
-28/+52
*
|
Issue #18408: Fix parser.sequence2st() and parser.tuple2st(): raise MemoryError
Victor Stinner
2013-07-11
1
-4/+15
*
|
Issue #18408: _pickle.c: Add missing PyErr_NoMemory() on memory allocation fa...
Victor Stinner
2013-07-11
1
-2/+7
*
|
Issue #18408: _PyMemoTable_ResizeTable() now restores the old table if
Victor Stinner
2013-07-11
1
-1/+1
*
|
Issue #18408: Oh, I was wrong: Pickler_New() must call Py_DECREF() to destroy
Victor Stinner
2013-07-11
1
-1/+1
*
|
Issue #18408: Different fixes in _elementtree.c to handle correctly MemoryError
Victor Stinner
2013-07-11
1
-8/+14
*
|
Cleanup _elementtree.c
Victor Stinner
2013-07-11
1
-7/+6
*
|
Issue #18408: _elementtree.c now handles create_extra() failure
Victor Stinner
2013-07-11
1
-12/+24
*
|
Issue #18408: Fix _Pickler_New() and _Unpickler_New(): initialize all
Victor Stinner
2013-07-11
1
-22/+14
*
|
Issue #18101: Tcl.split() now process strings nested in a tuple as it
Serhiy Storchaka
2013-07-11
1
-0/+15
|
\
\
|
|
/
|
*
Issue #18101: Tcl.split() now process strings nested in a tuple as it
Serhiy Storchaka
2013-07-11
1
-0/+15
*
|
Issue #18338: `python --version` now prints version string to stdout, and
Serhiy Storchaka
2013-07-11
1
-1/+1
*
|
Merge: #18399: fix comment typo.
R David Murray
2013-07-10
1
-1/+1
|
\
\
|
|
/
|
*
#18399: fix comment typo.
R David Murray
2013-07-10
1
-1/+1
*
|
Add a spacing saving heuristic to deque's extend methods
Raymond Hettinger
2013-07-09
1
-0/+16
*
|
Issue #18408: Fix select.select() to handle PyList_New() failure (MemoryError)
Victor Stinner
2013-07-08
1
-3/+3
*
|
Issue #18408: Fix usage of _PyBytes_Resize()
Victor Stinner
2013-07-08
2
-31/+16
*
|
Issue #18408: Fix zlib.compressobj() to handle PyThread_allocate_lock() failure
Victor Stinner
2013-07-08
1
-0/+4
*
|
Issue #18408: Fix ConvParam() of the ctypes module to handle paramfunc failure
Victor Stinner
2013-07-08
1
-0/+2
*
|
fix indentation
Victor Stinner
2013-07-08
1
-13/+13
*
|
Issue #18408: PyObject_GC_NewVar() now raises SystemError exception if nitems
Victor Stinner
2013-07-08
1
-2/+9
*
|
gcmodule.c: strip trailing spaces
Victor Stinner
2013-07-08
1
-7/+7
*
|
Issue #18203: Add _PyMem_RawStrdup() and _PyMem_Strdup()
Victor Stinner
2013-07-07
5
-20/+21
*
|
Issue #18227: pyexpat now uses a static XML_Memory_Handling_Suite. cElementTr...
Christian Heimes
2013-07-07
1
-6/+6
*
|
Issue #18227: "Free" function of bz2, lzma and zlib modules has no return val...
Victor Stinner
2013-07-07
3
-3/+3
*
|
Issue #18203: Replace malloc() with PyMem_Malloc() in _ssl for the password
Victor Stinner
2013-07-07
1
-4/+4
*
|
Issue #18227: Use PyMem_RawAlloc() in bz2, lzma and zlib modules
Victor Stinner
2013-07-07
3
-8/+77
*
|
Fix a compiler warning in posix_sendfile() on FreeBSD:
Victor Stinner
2013-07-07
1
-2/+3
*
|
Issue #18203: Replace malloc() with PyMem_Malloc() in Python modules
Victor Stinner
2013-07-07
9
-53/+50
*
|
Issue #18203: Replace malloc() with PyMem_RawMalloc() at Python initialization
Victor Stinner
2013-07-07
3
-27/+30
*
|
Fix #ifdef
Raymond Hettinger
2013-07-07
1
-1/+1
*
|
Use macros for marking and checking endpoints in the doubly-linked list of bl...
Raymond Hettinger
2013-07-07
1
-47/+81
*
|
merge
Raymond Hettinger
2013-07-07
1
-0/+163
|
\
\
|
*
|
Issue #3329: Implement the PEP 445
Victor Stinner
2013-07-07
1
-0/+163
*
|
|
Improve variable names in deque_count()
Raymond Hettinger
2013-07-07
1
-8/+8
|
/
/
*
|
Apply the PyObject_VAR_HEAD and Py_SIZE macros
Raymond Hettinger
2013-07-06
1
-40/+39
*
|
Refactor deque_traverse().
Raymond Hettinger
2013-07-06
1
-6/+6
[next]