Commit message (Collapse) | Author | Age | Files | Lines | ||
---|---|---|---|---|---|---|
... | ||||||
| * | | | merge 3.3 (#23364, #23363) | Benjamin Peterson | 2015-02-02 | 1 | -0/+4 | |
| |\ \ \ | | |/ / | ||||||
| | * | | check for overflows in permutations() and product() (closes #23363, closes ↵ | Benjamin Peterson | 2015-02-02 | 1 | -0/+4 | |
| | | | | | | | | | | | | | | | | #23364) | |||||
* | | | | merge 3.4 (#23365) | Benjamin Peterson | 2015-02-02 | 1 | -0/+2 | |
|\ \ \ \ | |/ / / | ||||||
| * | | | merge 3.3 (#23365) | Benjamin Peterson | 2015-02-02 | 1 | -0/+2 | |
| |\ \ \ | | |/ / | ||||||
| | * | | check for overflow in combinations_with_replacement (closes #23365) | Benjamin Peterson | 2015-02-02 | 1 | -0/+3 | |
| | | | | ||||||
* | | | | merge 3.4 (#23366) | Benjamin Peterson | 2015-02-02 | 1 | -0/+2 | |
|\ \ \ \ | |/ / / | ||||||
| * | | | merge 3.3 (#23366) | Benjamin Peterson | 2015-02-02 | 1 | -0/+2 | |
| |\ \ \ | | |/ / | ||||||
| | * | | detect overflow in combinations (closes #23366) | Benjamin Peterson | 2015-02-02 | 1 | -0/+2 | |
| | | | | ||||||
* | | | | merge 3.4 (#23369) | Benjamin Peterson | 2015-02-01 | 1 | -0/+3 | |
|\ \ \ \ | |/ / / | ||||||
| * | | | merge 3.3 (#23369) | Benjamin Peterson | 2015-02-01 | 1 | -0/+3 | |
| |\ \ \ | | |/ / | ||||||
| | * | | fix possible overflow in encode_basestring_ascii (closes #23369) | Benjamin Peterson | 2015-02-01 | 1 | -0/+6 | |
| | | | | ||||||
| | * | | Issue #23055: Fixed a buffer overflow in PyUnicode_FromFormatV. Analysis | Serhiy Storchaka | 2015-01-27 | 1 | -0/+12 | |
| | | | | | | | | | | | | | | | | and fix by Guido Vranken. | |||||
* | | | | Issue #22445: PyBuffer_IsContiguous() now implements precise contiguity | Stefan Krah | 2015-02-01 | 1 | -0/+4 | |
| | | | | | | | | | | | | | | | | | | | | tests, compatible with NumPy's NPY_RELAXED_STRIDES_CHECKING compilation flag. Previously the function reported false negatives for corner cases. | |||||
* | | | | Merge heads | Serhiy Storchaka | 2015-01-31 | 1 | -0/+6 | |
|\ \ \ \ | ||||||
| * \ \ \ | Merge 3.4 (generator) | Victor Stinner | 2015-01-31 | 1 | -0/+6 | |
| |\ \ \ \ | | |/ / / | ||||||
| | * | | | Issue #23353: Fix the exception handling of generators in PyEval_EvalFrameEx(). | Victor Stinner | 2015-01-31 | 1 | -0/+6 | |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | At entry, save or swap the exception state even if PyEval_EvalFrameEx() is called with throwflag=0. At exit, the exception state is now always restored or swapped, not only if why is WHY_YIELD or WHY_RETURN. Patch co-written with Antoine Pitrou. | |||||
* | | | | | Issue #23326: Removed __ne__ implementations. Since fixing default __ne__ | Serhiy Storchaka | 2015-01-31 | 1 | -0/+3 | |
|/ / / / | | | | | | | | | | | | | implementation in issue #21408 they are redundant. | |||||
* | | | | allow changing __class__ between a heaptype and non-heaptype in some cases ↵ | Benjamin Peterson | 2015-01-30 | 1 | -0/+3 | |
| | | | | | | | | | | | | | | | | | | | | | | | | (closes #22986) Patch by Nathaniel Smith. | |||||
* | | | | Issue #22079: PyType_Ready() now checks that statically allocated type has | Serhiy Storchaka | 2015-01-28 | 1 | -0/+3 | |
|\ \ \ \ | |/ / / | | | | | | | | | no dynamically allocated bases. | |||||
| * | | | Issue #22079: PyType_Ready() now checks that statically allocated type has | Serhiy Storchaka | 2015-01-28 | 1 | -0/+7 | |
| | | | | | | | | | | | | | | | | no dynamically allocated bases. | |||||
| * | | | Issue #14099: Backout changeset e5bb3044402b (except adapted tests). | Serhiy Storchaka | 2015-01-26 | 1 | -5/+0 | |
| | | | | ||||||
* | | | | Issue #15859: PyUnicode_EncodeFSDefault(), PyUnicode_EncodeMBCS() and | Victor Stinner | 2015-01-26 | 2 | -0/+6 | |
| | | | | | | | | | | | | | | | | | | | | | | | | PyUnicode_EncodeCodePage() now raise an exception if the object is not an Unicode object. For PyUnicode_EncodeFSDefault(), it was already the case on platforms other than Windows. Patch written by Campbell Barton. | |||||
* | | | | Issue #14099: Restored support of writing ZIP files to tellable but | Serhiy Storchaka | 2015-01-26 | 1 | -0/+3 | |
| | | | | | | | | | | | | | | | | non-seekable streams. | |||||
* | | | | Issue #14099: Writing to ZipFile and reading multiple ZipExtFiles is | Serhiy Storchaka | 2015-01-26 | 1 | -0/+3 | |
| | | | | | | | | | | | | | | | | threadsafe now. | |||||
* | | | | Issue #19361: JSON decoder now raises JSONDecodeError instead of ValueError. | Serhiy Storchaka | 2015-01-26 | 1 | -0/+2 | |
| | | | | ||||||
* | | | | Issue #18518: timeit now rejects statements which can't be compiled outside | Serhiy Storchaka | 2015-01-26 | 1 | -0/+3 | |
|\ \ \ \ | |/ / / | | | | | | | | | a function or a loop (e.g. "return" or "break"). | |||||
| * | | | Issue #18518: timeit now rejects statements which can't be compiled outside | Serhiy Storchaka | 2015-01-26 | 1 | -0/+3 | |
| | | | | | | | | | | | | | | | | a function or a loop (e.g. "return" or "break"). | |||||
* | | | | Issue #23094: Fixed readline with frames in Python implementation of pickle. | Serhiy Storchaka | 2015-01-26 | 1 | -0/+2 | |
|\ \ \ \ | |/ / / | ||||||
| * | | | Issue #23094: Fixed readline with frames in Python implementation of pickle. | Serhiy Storchaka | 2015-01-26 | 1 | -0/+2 | |
| | | | | ||||||
* | | | | Add credits for Martin Panter. | Serhiy Storchaka | 2015-01-26 | 1 | -1/+1 | |
|\ \ \ \ | |/ / / | ||||||
| * | | | Add credits for Martin Panter. | Serhiy Storchaka | 2015-01-26 | 1 | -1/+1 | |
| | | | | ||||||
* | | | | Issue #23268: Fixed bugs in the comparison of ipaddress classes. | Serhiy Storchaka | 2015-01-26 | 1 | -0/+2 | |
|\ \ \ \ | |/ / / | ||||||
| * | | | Issue #23268: Fixed bugs in the comparison of ipaddress classes. | Serhiy Storchaka | 2015-01-26 | 1 | -0/+2 | |
| | | | | ||||||
* | | | | Issue #21408: The default __ne__() now returns NotImplemented if __eq__() | Serhiy Storchaka | 2015-01-26 | 1 | -0/+7 | |
|\ \ \ \ | |/ / / | | | | | | | | | returned NotImplemented. Removed incorrect implementations of __ne__(). | |||||
| * | | | Issue #21408: The default __ne__() now returns NotImplemented if __eq__() | Serhiy Storchaka | 2015-01-26 | 1 | -0/+7 | |
| | | | | | | | | | | | | | | | | returned NotImplemented. Removed incorrect implementations of __ne__(). | |||||
* | | | | merge 3.4 (#19996) | Benjamin Peterson | 2015-01-26 | 1 | -0/+3 | |
|\ \ \ \ | |/ / / | ||||||
| * | | | handle headers with no key (closes #19996) | Benjamin Peterson | 2015-01-26 | 1 | -0/+3 | |
| | | | | | | | | | | | | | | | | Patch by Cory Benfield. | |||||
* | | | | Issue #23321: Fixed a crash in str.decode() when error handler returned | Serhiy Storchaka | 2015-01-25 | 1 | -0/+3 | |
|\ \ \ \ | |/ / / | | | | | | | | | replacment string longer than mailformed input data. | |||||
| * | | | Issue #23321: Fixed a crash in str.decode() when error handler returned | Serhiy Storchaka | 2015-01-25 | 1 | -0/+3 | |
| | | | | | | | | | | | | | | | | replacment string longer than mailformed input data. | |||||
* | | | | Issue #22286: The "backslashreplace" error handlers now works with | Serhiy Storchaka | 2015-01-25 | 1 | -0/+3 | |
| | | | | | | | | | | | | | | | | decoding and translating. | |||||
* | | | | Closes #23253: Delay-load ShellExecute | Steve Dower | 2015-01-24 | 1 | -0/+3 | |
| | | | | ||||||
* | | | | Issue20284: Implement PEP461 | Ethan Furman | 2015-01-24 | 1 | -0/+3 | |
| | | | | ||||||
* | | | | add support for ALPN (closes #20188) | Benjamin Peterson | 2015-01-23 | 1 | -0/+3 | |
| | | | | ||||||
* | | | | http.client: disable Nagle's algorithm (closes #23302) | Benjamin Peterson | 2015-01-23 | 1 | -0/+4 | |
| | | | | | | | | | | | | | | | | Patch by Demian Brecht. | |||||
* | | | | Issue #23133: Pickling of ipaddress objects now produces more compact and | Serhiy Storchaka | 2015-01-18 | 1 | -0/+3 | |
| | | | | | | | | | | | | | | | | portable representation. | |||||
* | | | | Issue #23248: Update ssl error codes from latest OpenSSL git master. | Antoine Pitrou | 2015-01-18 | 1 | -0/+2 | |
|\ \ \ \ | |/ / / | ||||||
| * | | | Issue #23248: Update ssl error codes from latest OpenSSL git master. | Antoine Pitrou | 2015-01-18 | 1 | -0/+2 | |
| | | | | ||||||
* | | | | Issue #23266: Much faster implementation of ipaddress.collapse_addresses() ↵ | Antoine Pitrou | 2015-01-18 | 1 | -0/+3 | |
| | | | | | | | | | | | | | | | | when there are many non-consecutive addresses. | |||||
* | | | | Issue #23098: 64-bit dev_t is now supported in the os module. | Serhiy Storchaka | 2015-01-18 | 1 | -0/+2 | |
|\ \ \ \ | |/ / / | ||||||
| * | | | Issue #23098: 64-bit dev_t is now supported in the os module. | Serhiy Storchaka | 2015-01-18 | 1 | -0/+2 | |
| | | | |