summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Issue #19908: pathlib now joins relative Windows paths correctly when a driveSerhiy Storchaka2013-12-063-5/+53
| | | | is present. Original patch by Antoine Pitrou.
* Merged minor documentation update from 3.3.Vinay Sajip2013-12-061-1/+2
|\
| * Added minor clarification in logging HOWTO.Vinay Sajip2013-12-061-1/+2
| |
* | Issue #19881: Fix bad pickling of large bytes in cpickle.Alexandre Vassalotti2013-12-063-22/+59
| |
* | fix cert names for asyncio testChristian Heimes2013-12-061-2/+2
| |
* | Issue #19509: Finish implementation of check_hostnameChristian Heimes2013-12-058-57/+319
| | | | | | | | The new asyncio package now supports the new feature and comes with additional tests for SSL.
* | Issue #19296: Silence compiler warning in dbm_open.Christian Heimes2013-12-052-1/+4
| | | | | | | | Some dbm header files declare the first argument as char * instead of a const char *.
* | Issue #18840: Introduce the json module in the tutorial, and deemphasize the ↵Antoine Pitrou2013-12-053-34/+70
|\ \ | |/ | | | | pickle module.
| * Issue #18840: Introduce the json module in the tutorial, and deemphasize the ↵Antoine Pitrou2013-12-053-34/+70
| | | | | | | | pickle module.
* | Issue #19850: asyncio: Set SA_RESTART when registering a signal handler toCharles-François Natali2013-12-051-0/+2
| | | | | | | | limit EINTR occurrences.
* | Add simple test for fcntl.flock()Christian Heimes2013-12-051-0/+15
| |
* | Test syslog.openlog() without args to test syslog_get_argv()Christian Heimes2013-12-051-0/+4
| |
* | normalize white spaceChristian Heimes2013-12-051-1/+1
| |
* | Issue 19509: Don't call match_hostname() twice in http.client.Christian Heimes2013-12-051-6/+6
| |
* | Add a script similar to xmltests.py to run all SSL-related unit testsChristian Heimes2013-12-051-0/+22
| |
* | Test SSLSock's context getter and setterChristian Heimes2013-12-051-0/+14
| |
* | touch _lsprof's clear() method for C code coverageChristian Heimes2013-12-051-0/+1
| |
* | exclude _hashopenssl.c:_setException() from LCOV coverageChristian Heimes2013-12-051-0/+2
| |
* | Closes #19839: Fix regression in bz2 module's handling of non-bzip2 data at EOF.Nadeem Vawda2013-12-045-18/+98
|\ \ | |/ | | | | Also fix an analogous bug (not a regression) in the lzma module.
| * #19839: Fix lzma module's handling of non-lzma data at EOF.Nadeem Vawda2013-12-043-8/+48
| |
| * #19839: Fix regression in bz2 module's handling of non-bzip2 data at EOF.Nadeem Vawda2013-12-043-11/+51
| |
* | Merge socket doc changes from 3.3Antoine Pitrou2013-12-041-92/+124
|\ \ | |/
| * Tweak the socket module doc layoutAntoine Pitrou2013-12-041-64/+86
| |
| * Issue #19882: tweak docs for socket.close()Antoine Pitrou2013-12-041-9/+19
| |
* | asyncio: Write flow control for proactor event loop.Guido van Rossum2013-12-042-24/+106
| |
* | Fix broken docstring continuation line for detach().Guido van Rossum2013-12-041-2/+2
| |
* | Issue #19509: Don't close the socket in do_handshake() when hostname ↵Christian Heimes2013-12-041-9/+4
| | | | | | | | verification fails.
* | asyncio doc: add some notes on the ping exampleVictor Stinner2013-12-041-18/+26
| |
* | silence unused-value warnings in libffi's dlmalloc.cChristian Heimes2013-12-042-4/+40
| |
* | Silence more PyObject_INIT() unused value warnings.Christian Heimes2013-12-041-2/+2
| |
* | make char* constChristian Heimes2013-12-041-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 Heimes2013-12-047-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 longChristian Heimes2013-12-041-2/+3
|\ \ | |/
| * ncurses' winch and mvwinch return an unsigned longChristian Heimes2013-12-041-2/+3
| |
* | upcast int to size_t to silence two ↵Christian Heimes2013-12-042-2/+2
| | | | | | | | autological-constant-out-of-range-compare warnings with clang.
* | Null merge from 3.3 branch.Tim Peters2013-12-040-0/+0
|\ \ | |/
| * Issue #19138: doctest's IGNORE_EXCEPTION_DETAIL now allows no detail at all.Tim Peters2013-12-043-4/+60
| | | | | | | | (grafted from c80083ad142db2939507800c755082293a87f2de)
* | Issue #19138: doctest's IGNORE_EXCEPTION_DETAIL now allows no detail at all.Tim Peters2013-12-043-4/+60
| |
* | Close #19741: tracemalloc_realloc() does not release the table lock anymoreVictor Stinner2013-12-041-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, moveVictor Stinner2013-12-041-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.socketVictor Stinner2013-12-032-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 classVictor Stinner2013-12-034-18/+110
| | | | | | | | | | Improve also wait() documentation: mention that the first parameter is a sequence
* | Fix typo in asyncio.AbstractServer documentationVictor Stinner2013-12-032-2/+2
| |
* | asyncio doc: add one more example of coroutinesVictor Stinner2013-12-031-1/+65
| |
* | Issue #19877: fix regression in test_pathlib when Windows has symlink ↵Antoine Pitrou2013-12-031-2/+2
| | | | | | | | | | | | support available (i.e. in administrator mode). Patch by Vajrasky Kok.
* | ayncio: replace the disclamer with a seealso sectionVictor Stinner2013-12-031-9/+6
| |
* | asyncio doc: simplify ping example, remove the useless timeoutVictor Stinner2013-12-031-7/+3
| |
* | Null merge.Stefan Krah2013-12-030-0/+0
|\ \ | |/
| * Make a couple of parameters constant.Stefan Krah2013-12-032-14/+14
| |
* | Make a couple of parameters constant.Stefan Krah2013-12-032-14/+14
| |