Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | asyncio doc: add some notes on the ping example | Victor Stinner | 2013-12-04 | 1 | -18/+26 |
| | |||||
* | silence unused-value warnings in libffi's dlmalloc.c | Christian Heimes | 2013-12-04 | 2 | -4/+40 |
| | |||||
* | Silence more PyObject_INIT() unused value warnings. | Christian Heimes | 2013-12-04 | 1 | -2/+2 |
| | |||||
* | make char* const | Christian Heimes | 2013-12-04 | 1 | -1/+1 |
| | | | | | readline() takes a const char* and the other readline_until_enter_or_signal() implementation already has const char*. | ||||
* | Silence expression result unused warnings with clang. | Christian Heimes | 2013-12-04 | 7 | -9/+9 |
| | | | | | | | | | | | | The PyObject_INIT() macros returns obj: ../cpython/Objects/methodobject.c:32:23: warning: expression result unused [-Wunused-value] PyObject_INIT(op, &PyCFunction_Type); ^~ ../cpython/Include/objimpl.h:139:69: note: expanded from macro 'PyObject_INIT' ( Py_TYPE(op) = (typeobj), _Py_NewReference((PyObject *)(op)), (op) ) ^ 1 warning generated. | ||||
* | ncurses' winch and mvwinch return an unsigned long | Christian Heimes | 2013-12-04 | 1 | -2/+3 |
|\ | |||||
| * | ncurses' winch and mvwinch return an unsigned long | Christian Heimes | 2013-12-04 | 1 | -2/+3 |
| | | |||||
* | | upcast int to size_t to silence two ↵ | Christian Heimes | 2013-12-04 | 2 | -2/+2 |
| | | | | | | | | autological-constant-out-of-range-compare warnings with clang. | ||||
* | | Null merge from 3.3 branch. | Tim Peters | 2013-12-04 | 0 | -0/+0 |
|\ \ | |/ | |||||
| * | Issue #19138: doctest's IGNORE_EXCEPTION_DETAIL now allows no detail at all. | Tim Peters | 2013-12-04 | 3 | -4/+60 |
| | | | | | | | | (grafted from c80083ad142db2939507800c755082293a87f2de) | ||||
* | | Issue #19138: doctest's IGNORE_EXCEPTION_DETAIL now allows no detail at all. | Tim Peters | 2013-12-04 | 3 | -4/+60 |
| | | |||||
* | | Close #19741: tracemalloc_realloc() does not release the table lock anymore | Victor Stinner | 2013-12-04 | 1 | -10/+26 |
| | | | | | | | | | | | | | | | | between tracemalloc_remove_trace() and tracemalloc_add_trace() to reduce the risk of race condition. tracemalloc_add_trace() cannot fail anymore in tracemalloc_realloc() when tracemalloc_realloc() resizes a memory block. | ||||
* | | Close #19757: Cleanup tracemalloc, move | Victor Stinner | 2013-12-04 | 1 | -98/+129 |
| | | | | | | | | | | | | | | | | PyGILState_Ensure()/PyGILState_Release() calls to the raw wrappers to simplify the code. Rename also tracemalloc_log_alloc/log_free() to tracemalloc_add_trace/remove_trace(). | ||||
* | | Close #19827: On UNIX, setblocking() and settimeout() methods of socket.socket | Victor Stinner | 2013-12-03 | 2 | -8/+14 |
| | | | | | | | | | | can now avoid a second syscall if the ioctl() function can be used, or if the non-blocking flag of the socket is unchanged. | ||||
* | | asyncio doc: oh, asyncio module has its own Future class | Victor Stinner | 2013-12-03 | 4 | -18/+110 |
| | | | | | | | | | | Improve also wait() documentation: mention that the first parameter is a sequence | ||||
* | | Fix typo in asyncio.AbstractServer documentation | Victor Stinner | 2013-12-03 | 2 | -2/+2 |
| | | |||||
* | | asyncio doc: add one more example of coroutines | Victor Stinner | 2013-12-03 | 1 | -1/+65 |
| | | |||||
* | | Issue #19877: fix regression in test_pathlib when Windows has symlink ↵ | Antoine Pitrou | 2013-12-03 | 1 | -2/+2 |
| | | | | | | | | | | | | support available (i.e. in administrator mode). Patch by Vajrasky Kok. | ||||
* | | ayncio: replace the disclamer with a seealso section | Victor Stinner | 2013-12-03 | 1 | -9/+6 |
| | | |||||
* | | asyncio doc: simplify ping example, remove the useless timeout | Victor Stinner | 2013-12-03 | 1 | -7/+3 |
| | | |||||
* | | Null merge. | Stefan Krah | 2013-12-03 | 0 | -0/+0 |
|\ \ | |/ | |||||
| * | Make a couple of parameters constant. | Stefan Krah | 2013-12-03 | 2 | -14/+14 |
| | | |||||
* | | Make a couple of parameters constant. | Stefan Krah | 2013-12-03 | 2 | -14/+14 |
| | | |||||
* | | Issue #9709: Stop adding PyInit_" + module_name' to export_symbols. This is | Stefan Krah | 2013-12-03 | 1 | -1/+1 |
| | | | | | | | | already done by PyMODINIT_FUNC. | ||||
* | | Added some diagnostics to help with #19690. | Vinay Sajip | 2013-12-03 | 1 | -1/+12 |
| | | |||||
* | | Closes #19665: Merged fi from 3.3. | Vinay Sajip | 2013-12-03 | 1 | -2/+4 |
|\ \ | |/ | |||||
| * | Issue #19665: Increased timeout for SMTPHandler test. | Vinay Sajip | 2013-12-03 | 1 | -2/+4 |
| | | |||||
* | | Add a test for complex symlinks. | Antoine Pitrou | 2013-12-03 | 1 | -10/+21 |
| | | |||||
* | | Issue #19800: make the pickle framing tests more precise. | Antoine Pitrou | 2013-12-03 | 1 | -0/+22 |
| | | |||||
* | | Issue #19872: remove unused imports in pathlib. Patch by Vajrasky Kok. | Antoine Pitrou | 2013-12-03 | 1 | -9/+2 |
| | | |||||
* | | asyncio: Improve default writelines(). | Guido van Rossum | 2013-12-03 | 2 | -6/+20 |
| | | |||||
* | | asyncio doc: fix definition of stop() method | Victor Stinner | 2013-12-03 | 1 | -1/+1 |
| | | |||||
* | | asyncio doc: reorder methods; typo | Victor Stinner | 2013-12-03 | 2 | -14/+14 |
| | | |||||
* | | asyncio io: group transports and protocols in a new title | Victor Stinner | 2013-12-03 | 1 | -0/+4 |
| | | |||||
* | | asyncio doc: write a complete TCP echo example, client and server | Victor Stinner | 2013-12-03 | 2 | -46/+72 |
| | | | | | | | | Example based on tcp_echo.py example from Tulip source code. | ||||
* | | asyncio doc: move coroutine example to the Task page | Victor Stinner | 2013-12-03 | 2 | -19/+32 |
| | | |||||
* | | Split asyncio documentation into subfiles | Victor Stinner | 2013-12-03 | 5 | -1555/+1563 |
| | | |||||
* | | asyncio doc: change level of titles | Victor Stinner | 2013-12-02 | 1 | -115/+109 |
| | | | | | | | | Remove also a duplicated Protocols section! | ||||
* | | asyncio doc: reorder sections | Victor Stinner | 2013-12-02 | 1 | -428/+428 |
| | | |||||
* | | asyncio: document wait() function | Victor Stinner | 2013-12-02 | 1 | -0/+42 |
| | | |||||
* | | asyncio doc | Victor Stinner | 2013-12-02 | 1 | -7/+35 |
| | | | | | | | | | | | | * complete create_connection() prototype * link to Server * document get_extra_info() keys | ||||
* | | Issue #19852: move Path._raw_open() around, as it is now a private method. | Antoine Pitrou | 2013-12-02 | 1 | -9/+9 |
| | | | | | | | | Patch by Vajrasky Kok. | ||||
* | | add check_hostname arg to ssl._create_stdlib_context() | Christian Heimes | 2013-12-02 | 2 | -2/+5 |
| | | |||||
* | | Issue #19785: smtplib now supports SSLContext.check_hostname and server name | Christian Heimes | 2013-12-02 | 4 | -6/+45 |
| | | | | | | | | indication for TLS/SSL connections. | ||||
* | | Issue #19783: nntplib now supports SSLContext.check_hostname and server name | Christian Heimes | 2013-12-02 | 3 | -4/+16 |
| | | | | | | | | indication for TLS/SSL connections. | ||||
* | | Issue #19784: poplib now supports SSLContext.check_hostname and server name | Christian Heimes | 2013-12-02 | 4 | -3/+26 |
| | | | | | | | | indication for TLS/SSL connections. | ||||
* | | merge | Christian Heimes | 2013-12-02 | 2 | -2/+2 |
|\ \ | |||||
| * | | Fixed formatting (was parsed as description list). | Serhiy Storchaka | 2013-12-02 | 1 | -1/+1 |
| | | | |||||
| * | | Fixed regex match representation in an example. | Serhiy Storchaka | 2013-12-02 | 1 | -1/+1 |
| | | | |||||
* | | | Issue #19782: imaplib now supports SSLContext.check_hostname and server name | Christian Heimes | 2013-12-02 | 4 | -4/+43 |
|/ / | | | | | | | indication for TLS/SSL connections. |