Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Issue25814: Propagate all errors from custom XML parser handlers | Serhiy Storchaka | 2015-12-06 | 1 | -88/+39 |
| | | | | in ElementTree.iterparse(). | ||||
* | Issue #25764: Preserve subprocess fork exception when preexec_fn used | Martin Panter | 2015-11-30 | 1 | -17/+18 |
| | | | | Also fix handling of failure to release the import lock. | ||||
* | Fixed reference leak when read truncated pickle. | Serhiy Storchaka | 2015-11-30 | 1 | -1/+3 |
| | |||||
* | Issue #19687: Fixed possible integer overflows in ElementTree. | Serhiy Storchaka | 2015-11-25 | 1 | -10/+34 |
| | | | | Based on patch by Christian Heimes. | ||||
* | Issue #25725: Fixed a reference leak in pickle.loads() when unpickling | Serhiy Storchaka | 2015-11-25 | 1 | -19/+8 |
| | | | | invalid data including tuple instructions. | ||||
* | Issue #23914: Fixed SystemError raised by unpickler on broken pickle data. | Serhiy Storchaka | 2015-11-23 | 1 | -3/+16 |
| | |||||
* | Issue #25691: Fixed crash on deleting ElementTree.Element attributes. | Serhiy Storchaka | 2015-11-23 | 1 | -0/+6 |
| | |||||
* | Issue #19687: Fixed memory leak on failed Element slice assignment. | Serhiy Storchaka | 2015-11-22 | 1 | -21/+15 |
| | | | | Added new tests for Element slice assignments. | ||||
* | rm trailing ws | Benjamin Peterson | 2015-11-14 | 1 | -1/+1 |
| | |||||
* | fix possible memory lea k in _get_aia_uri (closes #25578) | Benjamin Peterson | 2015-11-14 | 1 | -1/+4 |
| | |||||
* | fix build with older openssl (#25569) | Benjamin Peterson | 2015-11-14 | 1 | -1/+1 |
| | |||||
* | Issue #25498: Fix GC crash due to ctypes objects wrapping a memoryview | Martin Panter | 2015-11-13 | 1 | -18/+38 |
| | | | | | This was a regression caused by revision 1da9630e9b7f. Based on patch by Eryksun. | ||||
* | always set OP_NO_SSLv3 by default (closes #25530) | Benjamin Peterson | 2015-11-12 | 1 | -0/+2 |
| | |||||
* | fix memory leak in _get_crl_dp (closes #25569) | Benjamin Peterson | 2015-11-12 | 1 | -28/+24 |
| | | | | Patch started by Stéphane Wirtel. | ||||
* | Issue #25523: Further a-to-an corrections. | Serhiy Storchaka | 2015-11-02 | 2 | -2/+2 |
| | |||||
* | Issue #25523: Correct "a" article to "an" article | Martin Panter | 2015-11-02 | 13 | -26/+26 |
| | | | | | | This changes the main documentation, doc strings, source code comments, and a couple error messages in the test suite. In some cases the word was removed or edited some other way to fix the grammar. | ||||
* | add a missing comma (closes #25371) | Benjamin Peterson | 2015-10-11 | 1 | -2/+2 |
| | |||||
* | Issue #22413: Document newline effect on StringIO initializer and getvalue | Martin Panter | 2015-10-10 | 1 | -1/+6 |
| | | | | Also add to comment in the C code. | ||||
* | Various minor typos in documentation and comments | Martin Panter | 2015-10-07 | 1 | -1/+1 |
| | |||||
* | Issue #25290: Fix typo in csv.reader() docstring | Berker Peksag | 2015-10-02 | 1 | -1/+1 |
| | | | | Patch by Johannes Niediek. | ||||
* | Issue #25262. Added support for BINBYTES8 opcode in Python implementation of | Serhiy Storchaka | 2015-09-29 | 1 | -1/+11 |
| | | | | | unpickler. Highest 32 bits of 64-bit size for BINUNICODE8 and BINBYTES8 opcodes no longer silently ignored on 32-bit platforms in C implementation. | ||||
* | Closes issue #23600: Wrong results from tzinfo.fromutc(). | Alexander Belopolsky | 2015-09-28 | 1 | -1/+1 |
| | |||||
* | Issue #25203: Failed readline.set_completer_delims() no longer left the | Serhiy Storchaka | 2015-09-27 | 1 | -4/+5 |
| | | | | module in inconsistent state. | ||||
* | fix spacing | Benjamin Peterson | 2015-09-27 | 1 | -2/+2 |
| | |||||
* | initialize return value to NULL to avoid compiler compliants (closes #25245) | Benjamin Peterson | 2015-09-27 | 1 | -0/+1 |
| | |||||
* | prevent overflow in _Unpickler_Read | Benjamin Peterson | 2015-09-26 | 1 | -0/+6 |
| | |||||
* | Issue #23517: Fix rounding in fromtimestamp() and utcfromtimestamp() methods | Victor Stinner | 2015-09-18 | 1 | -8/+63 |
| | | | | | | | | | | | | | of datetime.datetime: microseconds are now rounded to nearest with ties going to nearest even integer (ROUND_HALF_EVEN), instead of being rounding towards zero (ROUND_DOWN). It's important that these methods use the same rounding mode than datetime.timedelta to keep the property: (datetime(1970,1,1) + timedelta(seconds=t)) == datetime.utcfromtimestamp(t) It also the rounding mode used by round(float) for example. Add more unit tests on the rounding mode in test_datetime. | ||||
* | Issue #25021: Merge from 3.3 to 3.4 | Kristján Valur Jónsson | 2015-09-12 | 1 | -2/+10 |
|\ | |||||
| * | Issue #25021: Correctly make sure that product.__setstate__ does not access | Kristján Valur Jónsson | 2015-09-12 | 1 | -2/+10 |
| | | | | | | | | invalid memory. | ||||
* | | Issue #24684: socket.socket.getaddrinfo() now calls | Victor Stinner | 2015-09-11 | 1 | -3/+1 |
| | | | | | | | | | | | | | | PyUnicode_AsEncodedString() instead of calling the encode() method of the host, to handle correctly custom string with an encode() method which doesn't return a byte string. The encoder of the IDNA codec is now called directly instead of calling the encode() method of the string. | ||||
* | | Issue #25030: Do not document seek() as if it accepts keyword arguments | Martin Panter | 2015-09-11 | 1 | -1/+1 |
| | | | | | | | | Patch from Shiyao Ma. | ||||
* | | os.sendfile(headers=None, trailers=None) arguments are not actually accepted | Martin Panter | 2015-09-09 | 1 | -3/+3 |
| | | | | | | | | Needs to be tested on a BSD. | ||||
* | | Issue #23738: Document and test actual keyword parameter names | Martin Panter | 2015-09-09 | 1 | -8/+9 |
| | | | | | | | | Also fix signature because os.utime(..., ns=None) is not allowed. | ||||
* | | Raise more correct exception on overflow in setting buffer_size attribute of | Serhiy Storchaka | 2015-09-07 | 1 | -6/+7 |
| | | | | | | | | expat parser. | ||||
* | | Issue #25019: Fixed a crash caused by setting non-string key of expat parser. | Serhiy Storchaka | 2015-09-07 | 1 | -1/+6 |
| | | | | | | | | | | Added additional tests for expat parser attributes. Based on patch by John Leitch. | ||||
* | | Issue #24917: time_strftime() buffer over-read. | Steve Dower | 2015-09-07 | 1 | -0/+2 |
| | | |||||
* | | Backed out changeset: a29b49d57769 | Steve Dower | 2015-09-06 | 1 | -6/+0 |
| | | |||||
* | | Issue #24917: time_strftime() Buffer Over-read. Patch by John Leitch. | Steve Dower | 2015-09-06 | 1 | -0/+6 |
| | | |||||
* | | Don't use defined() in C preprocessor macros | Victor Stinner | 2015-09-03 | 1 | -10/+6 |
| | | | | | | | | | | | | | | The ICC compiler doesn't seem to support defined() in macro expansion. Example of warning: warning #3199: "defined" is always false in a macro expansion in Microsoft mode | ||||
* | | include fcntl.h on all *nix platforms (closes #24217) | Benjamin Peterson | 2015-08-02 | 1 | -2/+2 |
| | | | | | | | | Patch by Jeffrey Armstrong. | ||||
* | | Issue #23652: Make the select module compile against LSB headers. | Zachary Ware | 2015-08-02 | 1 | -0/+11 |
| | | | | | | | | Patch by Matt Frank. | ||||
* | | Issue #23319: Fix ctypes.BigEndianStructure, swap correctly bytes. Patch | Victor Stinner | 2015-07-29 | 1 | -0/+1 |
| | | | | | | | | written by Matthieu Gautier. | ||||
* | | Issue #24735: Fix invalid memory access in combinations_with_replacement() | Raymond Hettinger | 2015-07-28 | 1 | -5/+7 |
| | | |||||
* | | Issue #24683: Fixed crashes in _json functions called with arguments of | Serhiy Storchaka | 2015-07-26 | 1 | -2/+10 |
| | | | | | | | | inappropriate type. | ||||
* | | Issue #24620: Random.setstate() now validates the value of state last element. | Serhiy Storchaka | 2015-07-24 | 1 | -0/+4 |
| | | |||||
* | | Issue #19663: Improve error message for defaultdict. | Raymond Hettinger | 2015-07-20 | 1 | -1/+1 |
| | | |||||
* | | improve style of the convert macro (#24655) | Benjamin Peterson | 2015-07-18 | 1 | -7/+7 |
| | | | | | | | | Patch by Brian Cain. | ||||
* | | Closes #23247: Fix a crash in the StreamWriter.reset() of CJK codecs | Victor Stinner | 2015-07-16 | 1 | -0/+3 |
| | | |||||
* | | Issue #18684: Fixed reading out of the buffer in the re module. | Serhiy Storchaka | 2015-07-06 | 2 | -14/+41 |
| | | |||||
* | | fix use after free (closes #24552) | Benjamin Peterson | 2015-07-02 | 1 | -1/+1 |
| | |