summaryrefslogtreecommitdiffstats
path: root/Modules
Commit message (Expand)AuthorAgeFilesLines
...
* Issue #25421: __sizeof__ methods of builtin types now use dynamic basic size.Serhiy Storchaka2015-12-197-7/+7
* Fixed possible leaks in ElementTree parser.Serhiy Storchaka2015-12-091-2/+8
* Issue25814: Propagate all errors from custom XML parser handlersSerhiy Storchaka2015-12-061-73/+45
* Fixed reference leak when read truncated pickle.Serhiy Storchaka2015-11-301-1/+4
* Fixed compilation error introduced in 745fd5550bc0.Serhiy Storchaka2015-11-261-1/+1
* Issue #19687: Fixed possible integer overflows in ElementTree.Serhiy Storchaka2015-11-251-6/+23
* Issue #25725: Fixed a reference leak in cPickle.loads() when unpicklingSerhiy Storchaka2015-11-251-19/+10
* Issue #23914: Fixed SystemError raised by unpickler on broken pickle data.Serhiy Storchaka2015-11-231-2/+22
* Issue #19687: Fixed memory leak on failed Element slice assignment.Serhiy Storchaka2015-11-221-10/+6
* rm trailing wsBenjamin Peterson2015-11-141-1/+1
* fix possible memory lea k in _get_aia_uri (closes #25578)Benjamin Peterson2015-11-141-1/+4
* fix build with older openssl (#25569)Benjamin Peterson2015-11-141-1/+1
* Second instance of deque needing "len" instead of "Py_SIZE" in Py2.7Raymond Hettinger2015-11-131-1/+1
* Deque uses "len" instead of varhead in Py2.7Raymond Hettinger2015-11-121-1/+1
* always set OP_NO_SSLv3 by default (closes #25530)Benjamin Peterson2015-11-121-0/+2
* fix memory leak in _get_crl_dp (closes #25569)Benjamin Peterson2015-11-121-28/+24
* Issue #892902: Fixed pickling recursive objects.Serhiy Storchaka2015-11-071-0/+21
* Issue #25523: Backported a-to-an corrections.Serhiy Storchaka2015-11-022-2/+2
* Issue #22413: Document newline effect on StringIO initializer and getvalueMartin Panter2015-10-101-1/+6
* Backport early-out 91259f061cfb to reduce the cost of bb1a2944bcb6Raymond Hettinger2015-10-071-1/+5
* Issue #25290: Fix typo in csv.reader() docstringBerker Peksag2015-10-021-1/+1
* Issue #25203: Failed readline.set_completer_delims() no longer left theSerhiy Storchaka2015-09-271-4/+5
* fix spacingBenjamin Peterson2015-09-271-2/+2
* Issue #25135: Avoid possible reentrancy issues in deque_clear.Raymond Hettinger2015-09-261-3/+57
* Issue #24684: socket.socket.getaddrinfo() now callsVictor Stinner2015-09-111-1/+1
* Issue #25030: Do not document seek() as if it accepts keyword argumentsMartin Panter2015-09-111-1/+1
* Don't left shift negative values. Use an unsigned value instead to avoidGregory P. Smith2015-08-041-1/+1
* include fcntl.h on all *nix platforms (closes #24217)Benjamin Peterson2015-08-021-2/+2
* Issue #23652: Make the select module compile against LSB headers.Zachary Ware2015-08-021-0/+10
* Issue #23319: Fix ctypes.BigEndianStructure, swap correctly bytes. PatchVictor Stinner2015-07-291-0/+1
* Issue #24683: Fixed a crash in _json.make_encoder() called with non-dict 1st ...Serhiy Storchaka2015-07-261-0/+7
* Issue #24613: Calling array.fromstring() with self is no longer allowedSerhiy Storchaka2015-07-261-0/+5
* possible memory leak in error case (closes #24719)Benjamin Peterson2015-07-251-1/+1
* proper overflow checks for mymemreplace (closes #24708)Benjamin Peterson2015-07-251-2/+9
* Issue #24704: Fixed possible NULL pointer dereferencing in the _json moduleSerhiy Storchaka2015-07-241-0/+2
* Issue #24620: Random.setstate() now validates the value of state last element.Serhiy Storchaka2015-07-241-0/+4
* Issue #24703: Fixed resource leak on error in bsddb.verify().Serhiy Storchaka2015-07-241-2/+4
* Initialize buf.outobj in multibyte encoder (closes issue #24702).Serhiy Storchaka2015-07-241-0/+1
* Issue #19663: Improve error message for defaultdict.Raymond Hettinger2015-07-201-1/+1
* improve style of the convert macro (#24655)Benjamin Peterson2015-07-181-7/+7
* Issue #24611: Fixed compiling the posix module on non-Windows platformsSerhiy Storchaka2015-07-121-2/+2
* Issue #18684: Fixed reading out of the buffer in the re module.Serhiy Storchaka2015-07-061-14/+41
* Issue #24456: Fixed possible buffer over-read in adpcm2lin() and lin2adpcm()Serhiy Storchaka2015-06-281-8/+30
* ensure internal buffer is large enough for string after flushing (closes #24481)Benjamin Peterson2015-06-271-0/+4
* Issue #24489: ensure a previously set C errno doesn't disturb cmath.polar().Antoine Pitrou2015-06-232-1/+14
* Fixed indentation of Python examples in C comments.Serhiy Storchaka2015-06-101-11/+11
* Issue #19543: Emit deprecation warning for known non-text encodings.Serhiy Storchaka2015-05-311-12/+22
* Fixed the array module in unicode disabled build (regression of issue20014).Serhiy Storchaka2015-05-311-0/+2
* Issue #24264: Fixed buffer overflow in the imageop module.Serhiy Storchaka2015-05-311-2/+5
* Issue #24115: Update uses of PyObject_IsTrue(), PyObject_Not(),Serhiy Storchaka2015-05-302-15/+38