| Commit message (Expand) | Author | Age | Files | Lines |
* | 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 |
|
|
* | Remove unnecessary branches from count() and reverse(). | Raymond Hettinger | 2013-07-06 | 1 | -6/+3 |
|
|
* | Speed-up deque indexing by changing the deque block length to a power of two. | Raymond Hettinger | 2013-07-06 | 1 | -1/+1 |
|
|
* | (Merge 3.3) Issue #18343: faulthandler.register() now keeps the previous signal | Victor Stinner | 2013-07-01 | 1 | -1/+2 |
|\ |
|
| * | Issue #18343: faulthandler.register() now keeps the previous signal handler | Victor Stinner | 2013-07-01 | 1 | -1/+2 |
|
|
* | | Singular form just like the other error message. | Christian Heimes | 2013-07-01 | 1 | -1/+1 |
|\ \
| |/ |
|
| * | Singular form just like the other error message. | Christian Heimes | 2013-07-01 | 1 | -1/+1 |
|
|
* | | Issue #18339: Negative ints keys in unpickler.memo dict no longer cause a | Christian Heimes | 2013-07-01 | 1 | -0/+5 |
|\ \
| |/ |
|
| * | Issue #18339: Negative ints keys in unpickler.memo dict no longer cause a | Christian Heimes | 2013-07-01 | 1 | -0/+5 |
|
|
* | | Fix segfault in pyexpat.c caused by 84375 | Christian Heimes | 2013-06-29 | 1 | -1/+1 |
|
|
* | | Fix resource leak in pickle module | Christian Heimes | 2013-06-29 | 1 | -1/+3 |
|
|
* | | Fix NULL ptr dereferencing in local_timezone(). nameo can be NULL | Christian Heimes | 2013-06-29 | 1 | -1/+1 |
|
|
* | | Fix memory leak in pyexpat PyUnknownEncodingHandler | Christian Heimes | 2013-06-29 | 1 | -1/+3 |
|
|
* | | Fix os.confstr(): the result type of the C function is size_t, not int | Victor Stinner | 2013-06-25 | 1 | -2/+2 |
|
|
* | | Fix time.mktime() and datetime.datetime.timestamp() on AIX | Victor Stinner | 2013-06-25 | 2 | -4/+20 |
|
|
* | | (Merge 3.3) Fix time.strftime("%Y") on AIX: raise a ValueError for year > 9999 | Victor Stinner | 2013-06-25 | 1 | -1/+1 |
|\ \
| |/ |
|
| * | Fix time.strftime("%Y") on AIX: raise a ValueError for year > 9999 | Victor Stinner | 2013-06-25 | 1 | -1/+1 |
|
|
* | | _ssl.c: strip trailing spaces | Victor Stinner | 2013-06-24 | 1 | -3/+3 |
|
|
* | | (Merge 3.3) Issue #18135: ssl.SSLSocket.write() now raises an OverflowError if | Victor Stinner | 2013-06-24 | 1 | -2/+7 |
|\ \
| |/ |
|
| * | Issue #18135: ssl.SSLSocket.write() now raises an OverflowError if the input | Victor Stinner | 2013-06-24 | 1 | -2/+7 |
|
|
* | | If MS_WIN64 is defined, MS_WINDOWS is also defined: #ifdef can be simplified. | Victor Stinner | 2013-06-24 | 4 | -16/+16 |
|
|
* | | Issue #9566: recv(), recvfrom(), send(), sendall() and sendto() methods | Victor Stinner | 2013-06-24 | 1 | -5/+32 |
|
|
* | | Issue #9566: _winapi.WriteFile() now truncates length to DWORD_MAX (4294967295) | Victor Stinner | 2013-06-24 | 1 | -2/+5 |
|
|
* | | Issue #9566: zlib: Explicit cast to unsigned int to fix a compiler warning on... | Victor Stinner | 2013-06-24 | 1 | -4/+4 |
|
|
* | | Issue #9566: _io: Use Py_SAFE_DOWNCAST for fix a compiler warning on Windows x64 | Victor Stinner | 2013-06-24 | 1 | -1/+1 |
|
|
* | | merge | Raymond Hettinger | 2013-06-23 | 3 | -34/+8 |
|\ \ |
|
| * | | Issue #11016: Don't define macros and constants that are already set by pyport.h | Christian Heimes | 2013-06-23 | 1 | -31/+5 |
|
|
| * | | Define S_IFMT and S_IFLNK in pyport.h so posixmodule.c can use named constant... | Christian Heimes | 2013-06-23 | 1 | -2/+2 |
|
|
| * | | Check for correct macro, code uses S_ISDIR(). | Christian Heimes | 2013-06-23 | 1 | -1/+1 |
| |\ \
| | |/ |
|
| | * | Check for correct macro, code uses S_ISDIR(). | Christian Heimes | 2013-06-23 | 1 | -1/+1 |
|
|
* | | | Misc improvements to collections.deque() | Raymond Hettinger | 2013-06-23 | 1 | -72/+93 |
|/ / |
|
* | | Issue #11016: Detect integer conversion on conversion from Python int to C mo... | Victor Stinner | 2013-06-23 | 1 | -13/+27 |
|
|
* | | Fix a typo in S_ISDIR, S_ISCHR, S_ISBLK and S_ISREG. | Christian Heimes | 2013-06-23 | 1 | -7/+7 |
|
|
* | | (Merge 3.3) Issue #18135: Fix a possible integer overflow in | Victor Stinner | 2013-06-23 | 1 | -10/+16 |
|\ \
| |/ |
|
| * | Issue #18135: Fix a possible integer overflow in ssl.SSLSocket.write() | Victor Stinner | 2013-06-23 | 1 | -5/+11 |
|
|
| * | _ssl.c: strip trailing spaces | Victor Stinner | 2013-06-23 | 1 | -5/+5 |
|
|