Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Issue #22290: PyObject_Call() now fails with an assertion error when called | Victor Stinner | 2014-09-04 | 1 | -0/+5 |
| | | | | | with an exception set. This new assertion helps to understand if the exception was already set before calling the function or raised by the function. | ||||
* | Issue #20421: Add a .version() method to SSL sockets exposing the actual ↵ | Antoine Pitrou | 2014-09-04 | 5 | -24/+86 |
| | | | | protocol version in use. | ||||
* | Issue #21951: Fix AsObj() of the _tkinter module: raise MemoryError on memory | Victor Stinner | 2014-09-04 | 1 | -2/+4 |
| | | | | allocation failure | ||||
* | Merge fix for #19546: configparser exceptions leak implementation details | Łukasz Langa | 2014-09-04 | 3 | -6/+62 |
|\ | |||||
| * | Fix #19546: onfigparser exceptions expose implementation details. Patch by ↵ | Łukasz Langa | 2014-09-04 | 3 | -6/+62 |
| | | | | | | | | Claudiu Popa. | ||||
* | | Issue #22334: Add debug traces to test_tcl | Victor Stinner | 2014-09-04 | 1 | -2/+6 |
| | | |||||
* | | Issue #22333: Add debug traces to test_threaded_import | Victor Stinner | 2014-09-04 | 1 | -2/+4 |
| | | |||||
* | | Issue #22258: Fix typo in Misc/NEWS | Victor Stinner | 2014-09-04 | 1 | -1/+1 |
|/ | |||||
* | NEWS items for Idle. | Terry Jan Reedy | 2014-09-03 | 1 | -1/+7 |
|\ | |||||
| * | NEWS items for Idle. | Terry Jan Reedy | 2014-09-03 | 1 | -2/+8 |
| | | |||||
* | | merge with 3.4 | Terry Jan Reedy | 2014-09-03 | 1 | -0/+16 |
|\ \ | |/ | |||||
| * | NEWS items for turtledemo. | Terry Jan Reedy | 2014-09-03 | 1 | -0/+16 |
| | | |||||
* | | Merge with 3.4 | Terry Jan Reedy | 2014-09-03 | 1 | -2/+0 |
|\ \ | |/ | |||||
| * | Issue #22051: remove unneeded reload that allowed bad code. | Terry Jan Reedy | 2014-09-03 | 1 | -2/+0 |
| | | |||||
* | | Fix timeout in test.fork_wait | Victor Stinner | 2014-09-03 | 1 | -1/+1 |
| | | |||||
* | | (Merge 3.4) Issue #21440: test_zipfile: replace last direct calls to | Victor Stinner | 2014-09-03 | 1 | -5/+5 |
|\ \ | |/ | | | | | os.remove() with support.unlink() | ||||
| * | Issue #21440: test_zipfile: replace last direct calls to os.remove() with | Victor Stinner | 2014-09-03 | 1 | -5/+5 |
| | | | | | | | | support.unlink() | ||||
| * | Issue #21440: Backport changeset 4ebf97299b18 to branch 3.4, use | Victor Stinner | 2014-09-03 | 2 | -32/+30 |
| | | | | | | | | support.rmtree() and support.unlink() in test_zipfile & test_tarfile | ||||
* | | (Merge 3.4) Issue #20957: test_smtpnet now uses support.transient_internet() to | Victor Stinner | 2014-09-03 | 1 | -2/+5 |
|\ \ | |/ | | | | | | | call check_ssl_verifiy(), so only test_connect_using_sslcontext_verified() is skipped if smtp.gmail.com cannot be joined, not the whole file. | ||||
| * | Issue #20957: test_smtpnet now uses support.transient_internet() to call | Victor Stinner | 2014-09-03 | 1 | -2/+5 |
| | | | | | | | | | | check_ssl_verifiy(), so only test_connect_using_sslcontext_verified() is skipped if smtp.gmail.com cannot be joined, not the whole file. | ||||
* | | (Merge 3.4) Issue #22332: test_multiprocessing_main_handling is now skipped if | Victor Stinner | 2014-09-03 | 1 | -0/+3 |
|\ \ | |/ | | | | | sem_open implementation is broken (ex: skipped on FreeBSD 6.4). | ||||
| * | Issue #22332: test_multiprocessing_main_handling is now skipped if sem_open | Victor Stinner | 2014-09-03 | 1 | -0/+3 |
| | | | | | | | | implementation is broken (ex: skipped on FreeBSD 6.4). | ||||
* | | (Merge 3.4) Issue #22331: Skip test_interrupted_write_text() on FreeBSD older | Victor Stinner | 2014-09-03 | 1 | -0/+2 |
|\ \ | |/ | | | | | than 8.0 | ||||
| * | Issue #22331: Skip test_interrupted_write_text() on FreeBSD older than 8.0 | Victor Stinner | 2014-09-03 | 1 | -0/+2 |
| | | |||||
* | | Issue #21933: Merge with 3.4 | Terry Jan Reedy | 2014-09-03 | 1 | -22/+71 |
|\ \ | |/ | |||||
| * | Issue #21933: Users can now change the font size for example code. | Terry Jan Reedy | 2014-09-03 | 1 | -22/+71 |
| | | | | | | | | Original patch by Lita Cho. | ||||
* | | Issue #22043: Fix pymonotonic(), use tv_usec=-1 as a marker to skip | Victor Stinner | 2014-09-03 | 1 | -2/+3 |
| | | | | | | | | the monotonic test | ||||
* | | Issue #22043: time.monotonic() is now always available | Victor Stinner | 2014-09-02 | 17 | -176/+226 |
| | | | | | | | | | | threading.Lock.acquire(), threading.RLock.acquire() and socket operations now use a monotonic clock, instead of the system clock, when a timeout is used. | ||||
* | | Issue #22043: Fix _PyTime_gettimeofday() if HAVE_GETTIMEOFDAY | Victor Stinner | 2014-09-02 | 1 | -5/+2 |
| | | | | | | | | Ensure also that the tv_usec field is consistent: in range [0; 999999]. | ||||
* | | pytime.h: remove duplicated "#ifndef Py_LIMITED_API" | Victor Stinner | 2014-08-31 | 1 | -3/+0 |
| | | |||||
* | | Closes #21527: Add default number of workers to ThreadPoolExecutor. (Claudiu ↵ | Guido van Rossum | 2014-09-02 | 4 | -2/+24 |
| | | | | | | | | Popa.) | ||||
* | | (Merge 3.4) Closes #22258: Fix the the internal function set_inheritable() on | Victor Stinner | 2014-09-02 | 2 | -14/+39 |
|\ \ | |/ | | | | | | | | | Illumos. This platform exposes the function ioctl(FIOCLEX), but calling it fails with errno is ENOTTY: "Inappropriate ioctl for device". set_inheritable() now falls back to the slower fcntl() (F_GETFD and then F_SETFD). | ||||
| * | Closes #22258: Fix the the internal function set_inheritable() on Illumos. | Victor Stinner | 2014-09-02 | 2 | -14/+39 |
| | | | | | | | | | | | | This platform exposes the function ioctl(FIOCLEX), but calling it fails with errno is ENOTTY: "Inappropriate ioctl for device". set_inheritable() now falls back to the slower fcntl() (F_GETFD and then F_SETFD). | ||||
* | | sigma actually works in latex... | Benjamin Peterson | 2014-09-01 | 1 | -3/+3 |
| | | |||||
* | | try to pick a unicode char that latex understands | Benjamin Peterson | 2014-09-01 | 1 | -1/+1 |
| | | |||||
* | | a more universal unicode char example | Benjamin Peterson | 2014-09-01 | 1 | -2/+1 |
| | | |||||
* | | Remove unused imports. | Berker Peksag | 2014-09-01 | 1 | -2/+2 |
|\ \ | |/ | |||||
| * | Remove unused imports. | Berker Peksag | 2014-09-01 | 1 | -2/+2 |
| | | |||||
* | | Issue #19447: Suppress output of py_compile.compile(). | Berker Peksag | 2014-09-01 | 1 | -1/+2 |
|\ \ | |/ | |||||
| * | Issue #19447: Suppress output of py_compile.compile(). | Berker Peksag | 2014-09-01 | 1 | -1/+2 |
| | | |||||
* | | Issue #22320: merge from 3.4 | Ned Deily | 2014-09-01 | 1 | -1/+2 |
|\ \ | |/ | |||||
| * | Issue #22320: Fix broken link in the General Python FAQ. | Ned Deily | 2014-09-01 | 1 | -1/+2 |
| | | | | | | | | Original patch by Josh Lynn. | ||||
* | | Merge with 3.4; Closes #22315 | Jason R. Coombs | 2014-08-31 | 2 | -2/+14 |
|\ \ | |/ | |||||
| * | #22315: Use advertised API for OSError | Jason R. Coombs | 2014-08-31 | 1 | -2/+1 |
| | | |||||
| * | #22315: Use an existent directory for 'src' to trigger appropriate behavior. | Jason R. Coombs | 2014-08-31 | 1 | -1/+2 |
| | | |||||
| * | #22315: Provide an actual directory during test invocation. | Jason R. Coombs | 2014-08-31 | 1 | -1/+1 |
| | | |||||
| * | #22315: Use technique outlined in test_file_util | Jason R. Coombs | 2014-08-31 | 1 | -22/+5 |
| | | |||||
| * | #22315: Add test to capture the failure. | Jason R. Coombs | 2014-08-31 | 1 | -0/+29 |
| | | |||||
* | | merge 3.4 | Benjamin Peterson | 2014-08-31 | 1 | -2/+1 |
|\ \ | |/ | |||||
| * | Correct indent | Jason R. Coombs | 2014-08-31 | 1 | -1/+1 |
| | |