summaryrefslogtreecommitdiffstats
path: root/Misc
Commit message (Collapse)AuthorAgeFilesLines
...
| * | | merge 3.3 (#23364, #23363)Benjamin Peterson2015-02-021-0/+4
| |\ \ \ | | |/ /
| | * | check for overflows in permutations() and product() (closes #23363, closes ↵Benjamin Peterson2015-02-021-0/+4
| | | | | | | | | | | | | | | | #23364)
* | | | merge 3.4 (#23365)Benjamin Peterson2015-02-021-0/+2
|\ \ \ \ | |/ / /
| * | | merge 3.3 (#23365)Benjamin Peterson2015-02-021-0/+2
| |\ \ \ | | |/ /
| | * | check for overflow in combinations_with_replacement (closes #23365)Benjamin Peterson2015-02-021-0/+3
| | | |
* | | | merge 3.4 (#23366)Benjamin Peterson2015-02-021-0/+2
|\ \ \ \ | |/ / /
| * | | merge 3.3 (#23366)Benjamin Peterson2015-02-021-0/+2
| |\ \ \ | | |/ /
| | * | detect overflow in combinations (closes #23366)Benjamin Peterson2015-02-021-0/+2
| | | |
* | | | merge 3.4 (#23369)Benjamin Peterson2015-02-011-0/+3
|\ \ \ \ | |/ / /
| * | | merge 3.3 (#23369)Benjamin Peterson2015-02-011-0/+3
| |\ \ \ | | |/ /
| | * | fix possible overflow in encode_basestring_ascii (closes #23369)Benjamin Peterson2015-02-011-0/+6
| | | |
| | * | Issue #23055: Fixed a buffer overflow in PyUnicode_FromFormatV. AnalysisSerhiy Storchaka2015-01-271-0/+12
| | | | | | | | | | | | | | | | and fix by Guido Vranken.
* | | | Issue #22445: PyBuffer_IsContiguous() now implements precise contiguityStefan Krah2015-02-011-0/+4
| | | | | | | | | | | | | | | | | | | | tests, compatible with NumPy's NPY_RELAXED_STRIDES_CHECKING compilation flag. Previously the function reported false negatives for corner cases.
* | | | Merge headsSerhiy Storchaka2015-01-311-0/+6
|\ \ \ \
| * \ \ \ Merge 3.4 (generator)Victor Stinner2015-01-311-0/+6
| |\ \ \ \ | | |/ / /
| | * | | Issue #23353: Fix the exception handling of generators in PyEval_EvalFrameEx().Victor Stinner2015-01-311-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 Storchaka2015-01-311-0/+3
|/ / / / | | | | | | | | | | | | implementation in issue #21408 they are redundant.
* | | | allow changing __class__ between a heaptype and non-heaptype in some cases ↵Benjamin Peterson2015-01-301-0/+3
| | | | | | | | | | | | | | | | | | | | | | | | (closes #22986) Patch by Nathaniel Smith.
* | | | Issue #22079: PyType_Ready() now checks that statically allocated type hasSerhiy Storchaka2015-01-281-0/+3
|\ \ \ \ | |/ / / | | | | | | | | no dynamically allocated bases.
| * | | Issue #22079: PyType_Ready() now checks that statically allocated type hasSerhiy Storchaka2015-01-281-0/+7
| | | | | | | | | | | | | | | | no dynamically allocated bases.
| * | | Issue #14099: Backout changeset e5bb3044402b (except adapted tests).Serhiy Storchaka2015-01-261-5/+0
| | | |
* | | | Issue #15859: PyUnicode_EncodeFSDefault(), PyUnicode_EncodeMBCS() andVictor Stinner2015-01-262-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 butSerhiy Storchaka2015-01-261-0/+3
| | | | | | | | | | | | | | | | non-seekable streams.
* | | | Issue #14099: Writing to ZipFile and reading multiple ZipExtFiles isSerhiy Storchaka2015-01-261-0/+3
| | | | | | | | | | | | | | | | threadsafe now.
* | | | Issue #19361: JSON decoder now raises JSONDecodeError instead of ValueError.Serhiy Storchaka2015-01-261-0/+2
| | | |
* | | | Issue #18518: timeit now rejects statements which can't be compiled outsideSerhiy Storchaka2015-01-261-0/+3
|\ \ \ \ | |/ / / | | | | | | | | a function or a loop (e.g. "return" or "break").
| * | | Issue #18518: timeit now rejects statements which can't be compiled outsideSerhiy Storchaka2015-01-261-0/+3
| | | | | | | | | | | | | | | | a function or a loop (e.g. "return" or "break").
* | | | Issue #23094: Fixed readline with frames in Python implementation of pickle.Serhiy Storchaka2015-01-261-0/+2
|\ \ \ \ | |/ / /
| * | | Issue #23094: Fixed readline with frames in Python implementation of pickle.Serhiy Storchaka2015-01-261-0/+2
| | | |
* | | | Add credits for Martin Panter.Serhiy Storchaka2015-01-261-1/+1
|\ \ \ \ | |/ / /
| * | | Add credits for Martin Panter.Serhiy Storchaka2015-01-261-1/+1
| | | |
* | | | Issue #23268: Fixed bugs in the comparison of ipaddress classes.Serhiy Storchaka2015-01-261-0/+2
|\ \ \ \ | |/ / /
| * | | Issue #23268: Fixed bugs in the comparison of ipaddress classes.Serhiy Storchaka2015-01-261-0/+2
| | | |
* | | | Issue #21408: The default __ne__() now returns NotImplemented if __eq__()Serhiy Storchaka2015-01-261-0/+7
|\ \ \ \ | |/ / / | | | | | | | | returned NotImplemented. Removed incorrect implementations of __ne__().
| * | | Issue #21408: The default __ne__() now returns NotImplemented if __eq__()Serhiy Storchaka2015-01-261-0/+7
| | | | | | | | | | | | | | | | returned NotImplemented. Removed incorrect implementations of __ne__().
* | | | merge 3.4 (#19996)Benjamin Peterson2015-01-261-0/+3
|\ \ \ \ | |/ / /
| * | | handle headers with no key (closes #19996)Benjamin Peterson2015-01-261-0/+3
| | | | | | | | | | | | | | | | Patch by Cory Benfield.
* | | | Issue #23321: Fixed a crash in str.decode() when error handler returnedSerhiy Storchaka2015-01-251-0/+3
|\ \ \ \ | |/ / / | | | | | | | | replacment string longer than mailformed input data.
| * | | Issue #23321: Fixed a crash in str.decode() when error handler returnedSerhiy Storchaka2015-01-251-0/+3
| | | | | | | | | | | | | | | | replacment string longer than mailformed input data.
* | | | Issue #22286: The "backslashreplace" error handlers now works withSerhiy Storchaka2015-01-251-0/+3
| | | | | | | | | | | | | | | | decoding and translating.
* | | | Closes #23253: Delay-load ShellExecuteSteve Dower2015-01-241-0/+3
| | | |
* | | | Issue20284: Implement PEP461Ethan Furman2015-01-241-0/+3
| | | |
* | | | add support for ALPN (closes #20188)Benjamin Peterson2015-01-231-0/+3
| | | |
* | | | http.client: disable Nagle's algorithm (closes #23302)Benjamin Peterson2015-01-231-0/+4
| | | | | | | | | | | | | | | | Patch by Demian Brecht.
* | | | Issue #23133: Pickling of ipaddress objects now produces more compact andSerhiy Storchaka2015-01-181-0/+3
| | | | | | | | | | | | | | | | portable representation.
* | | | Issue #23248: Update ssl error codes from latest OpenSSL git master.Antoine Pitrou2015-01-181-0/+2
|\ \ \ \ | |/ / /
| * | | Issue #23248: Update ssl error codes from latest OpenSSL git master.Antoine Pitrou2015-01-181-0/+2
| | | |
* | | | Issue #23266: Much faster implementation of ipaddress.collapse_addresses() ↵Antoine Pitrou2015-01-181-0/+3
| | | | | | | | | | | | | | | | when there are many non-consecutive addresses.
* | | | Issue #23098: 64-bit dev_t is now supported in the os module.Serhiy Storchaka2015-01-181-0/+2
|\ \ \ \ | |/ / /
| * | | Issue #23098: 64-bit dev_t is now supported in the os module.Serhiy Storchaka2015-01-181-0/+2
| | | |