| Commit message (Expand) | Author | Age | Files | Lines |
* | Issue #23392: Added tests for marshal C API that works with FILE*. | Serhiy Storchaka | 2015-02-06 | 1 | -0/+166 |
|
|
* | Issue #23099: Closing io.BytesIO with exported buffer is rejected now to | Serhiy Storchaka | 2015-02-03 | 1 | -0/+1 |
|
|
* | Issues #23363, #23364, #23365, #23366: Fixed itertools overflow tests. | Serhiy Storchaka | 2015-02-02 | 1 | -20/+6 |
|\ |
|
| * | Issues #23363, #23364, #23365, #23366: Fixed itertools overflow tests. | Serhiy Storchaka | 2015-02-02 | 1 | -20/+6 |
|
|
* | | Issue #22896: Avoid to use PyObject_AsCharBuffer(), PyObject_AsReadBuffer() | Serhiy Storchaka | 2015-02-02 | 6 | -59/+79 |
|
|
* | | merge 3.3 (#23364, #23363) | Benjamin Peterson | 2015-02-02 | 1 | -2/+16 |
|\ \
| |/ |
|
| * | check for overflows in permutations() and product() (closes #23363, closes #2... | Benjamin Peterson | 2015-02-02 | 1 | -2/+16 |
|
|
* | | merge 3.3 (#23365) | Benjamin Peterson | 2015-02-02 | 1 | -0/+4 |
|\ \
| |/ |
|
| * | check for overflow in combinations_with_replacement (closes #23365) | Benjamin Peterson | 2015-02-02 | 1 | -0/+4 |
|
|
* | | merge 3.3 (#23366) | Benjamin Peterson | 2015-02-02 | 1 | -0/+4 |
|\ \
| |/ |
|
| * | detect overflow in combinations (closes #23366) | Benjamin Peterson | 2015-02-02 | 1 | -0/+4 |
|
|
* | | merge 3.3 (#23369) | Benjamin Peterson | 2015-02-01 | 1 | -4/+11 |
|\ \
| |/ |
|
| * | fix possible overflow in encode_basestring_ascii (closes #23369) | Benjamin Peterson | 2015-02-01 | 1 | -4/+11 |
|
|
* | | Issue #23370: Fix off-by-one error for non-contiguous buffers. | Stefan Krah | 2015-02-01 | 1 | -0/+51 |
|
|
* | | Always #define _PyLong_FromDev as we always need it to compile rather than | Gregory P. Smith | 2015-01-29 | 1 | -8/+8 |
|
|
* | | asyncio, _overlapped.ConnectPipe(): release the GIL | Victor Stinner | 2015-01-26 | 1 | -0/+3 |
|
|
* | | asyncio, Tulip issue 204: Fix IocpProactor.recv() | Victor Stinner | 2015-01-26 | 1 | -2/+2 |
|
|
* | | asyncio, Tulip issue 204: Fix IocpProactor.accept_pipe() | Victor Stinner | 2015-01-22 | 1 | -2/+2 |
|
|
* | | Issue #23293, asyncio: Rewrite IocpProactor.connect_pipe() | Victor Stinner | 2015-01-22 | 1 | -93/+22 |
|
|
* | | Issue #23095, asyncio: Rewrite _WaitHandleFuture.cancel() | Victor Stinner | 2015-01-21 | 1 | -0/+25 |
|
|
* | | Issue #23280: Fix docstrings for binascii.(un)hexlify | Zachary Ware | 2015-01-20 | 2 | -5/+100 |
|
|
* | | Issue #23248: Update ssl error codes from latest OpenSSL git master. | Antoine Pitrou | 2015-01-18 | 1 | -1/+296 |
|
|
* | | Issue #23181: More "codepoint" -> "code point". | Serhiy Storchaka | 2015-01-18 | 5 | -12/+12 |
|
|
* | | Issue #23098: 64-bit dev_t is now supported in the os module. | Serhiy Storchaka | 2015-01-18 | 1 | -12/+32 |
|
|
* | | fix instances of consecutive articles (closes #23221) | Benjamin Peterson | 2015-01-13 | 1 | -1/+1 |
|
|
* | | Issue #21902: Replace incorrect 'hyperbolic arc sine' (etc.) with 'inverse hy... | Mark Dickinson | 2015-01-11 | 2 | -6/+6 |
|
|
* | | Issue 19548: update codecs module documentation | Nick Coghlan | 2015-01-06 | 1 | -3/+3 |
|
|
* | | Issue #21356: Make ssl.RAND_egd() optional to support LibreSSL. The | Victor Stinner | 2015-01-06 | 1 | -0/+4 |
|
|
* | | allow more operations to work on detached streams (closes #23093) | Benjamin Peterson | 2014-12-22 | 2 | -39/+41 |
|
|
* | | Issue #15513: Added a __sizeof__ implementation for pickle classes. | Serhiy Storchaka | 2014-12-16 | 2 | -2/+112 |
|
|
* | | allow ssl module to compile if openssl doesn't support SSL 3 (closes #22935) | Benjamin Peterson | 2014-12-06 | 1 | -0/+4 |
|
|
* | | Issue #22581: Use more "bytes-like object" throughout the docs and comments. | Serhiy Storchaka | 2014-12-05 | 2 | -5/+5 |
|
|
* | | Removed duplicated words in in comments and docs. | Serhiy Storchaka | 2014-12-01 | 2 | -2/+2 |
|
|
* | | don't require OpenSSL SNI to pass hostname to ssl functions (#22921) | Benjamin Peterson | 2014-11-23 | 1 | -6/+0 |
|
|
* | | fix possible double free in TextIOWrapper.__init__ (closes #22849) | Benjamin Peterson | 2014-11-12 | 1 | -1/+1 |
|
|
* | | Issue #22821: Fixed fcntl() with integer argument on 64-bit big-endian | Serhiy Storchaka | 2014-11-10 | 1 | -2/+2 |
|
|
* | | fix test where sizeof(long) != sizeof(int) | Benjamin Peterson | 2014-11-06 | 1 | -4/+4 |
|
|
* | | Issue #20160: broken ctypes calling convention on MSVC / 64-bit Windows (larg... | Steve Dower | 2014-11-05 | 5 | -12/+81 |
|
|
* | | Issue #22773: fix failing test with old readline versions due to issue #19884. | Antoine Pitrou | 2014-11-04 | 1 | -0/+4 |
|
|
* | | Fix typo. | Georg Brandl | 2014-10-28 | 1 | -1/+1 |
|
|
* | | #13096: Fix segfault in CTypes POINTER handling of large values. | R David Murray | 2014-10-12 | 1 | -2/+8 |
|
|
* | | Closes #22568: fix UTIME_TO_* macros in posixmodule for rare cases. | Georg Brandl | 2014-10-12 | 1 | -6/+6 |
|
|
* | | prevent passing NULL to memcpy (closes #22605) | Benjamin Peterson | 2014-10-11 | 1 | -1/+1 |
|
|
* | | Issue #22588: Fix typo in _testcapi.test_incref_decref_API() | Victor Stinner | 2014-10-09 | 1 | -1/+1 |
|
|
* | | Issue #22568: Fix compilation of posixmodule.c with Open Watcom: rename "utime" | Victor Stinner | 2014-10-09 | 1 | -21/+21 |
|
|
* | | Issue #21715: Extracted shared complicated code in the _io module to new | Serhiy Storchaka | 2014-10-08 | 3 | -41/+6 |
|
|
* | | Issue #22462: Fix pyexpat's creation of a dummy frame to make it appear in ex... | Antoine Pitrou | 2014-10-08 | 4 | -160/+9 |
|
|
* | | Issue #22290: Fix error handling in the _posixsubprocess module. | Victor Stinner | 2014-10-05 | 1 | -6/+14 |
|
|
* | | Closes #19342: improve docstrings in grp module. | Georg Brandl | 2014-10-02 | 1 | -6/+6 |
|
|
* | | faulthandler: test_gil_released() now uses _sigsegv() instead of _read_null(), | Victor Stinner | 2014-09-30 | 1 | -15/+23 |
|
|