index
:
cpython.git
2.7
3.3
3.4
3.5
3.6
benjamin-clang
benjamin-iteration-torture
buildbot-custom
master
https://github.com/python/cpython.git
summary
refs
log
tree
commit
diff
stats
log msg
author
committer
range
Commit message (
Expand
)
Author
Age
Files
Lines
...
*
|
|
Add a script similar to xmltests.py to run all SSL-related unit tests
Christian Heimes
2013-12-05
1
-0/+22
*
|
|
Test SSLSock's context getter and setter
Christian Heimes
2013-12-05
1
-0/+14
*
|
|
touch _lsprof's clear() method for C code coverage
Christian Heimes
2013-12-05
1
-0/+1
*
|
|
exclude _hashopenssl.c:_setException() from LCOV coverage
Christian Heimes
2013-12-05
1
-0/+2
*
|
|
Closes #19839: Fix regression in bz2 module's handling of non-bzip2 data at EOF.
Nadeem Vawda
2013-12-04
5
-18/+98
|
\
\
\
|
|
/
/
|
*
|
#19839: Fix lzma module's handling of non-lzma data at EOF.
Nadeem Vawda
2013-12-04
3
-8/+48
|
*
|
#19839: Fix regression in bz2 module's handling of non-bzip2 data at EOF.
Nadeem Vawda
2013-12-04
3
-11/+51
*
|
|
Merge socket doc changes from 3.3
Antoine Pitrou
2013-12-04
1
-92/+124
|
\
\
\
|
|
/
/
|
*
|
Tweak the socket module doc layout
Antoine Pitrou
2013-12-04
1
-64/+86
|
*
|
Issue #19882: tweak docs for socket.close()
Antoine Pitrou
2013-12-04
1
-9/+19
*
|
|
asyncio: Write flow control for proactor event loop.
Guido van Rossum
2013-12-04
2
-24/+106
*
|
|
Fix broken docstring continuation line for detach().
Guido van Rossum
2013-12-04
1
-2/+2
*
|
|
Issue #19509: Don't close the socket in do_handshake() when hostname verifica...
Christian Heimes
2013-12-04
1
-9/+4
*
|
|
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
*
|
|
Silence expression result unused warnings with clang.
Christian Heimes
2013-12-04
7
-9/+9
*
|
|
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 autological-constant-out-of-range-compare...
Christian Heimes
2013-12-04
2
-2/+2
*
|
|
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
*
|
|
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
*
|
|
Close #19757: Cleanup tracemalloc, move
Victor Stinner
2013-12-04
1
-98/+129
*
|
|
Close #19827: On UNIX, setblocking() and settimeout() methods of socket.socket
Victor Stinner
2013-12-03
2
-8/+14
*
|
|
asyncio doc: oh, asyncio module has its own Future class
Victor Stinner
2013-12-03
4
-18/+110
*
|
|
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 support...
Antoine Pitrou
2013-12-03
1
-2/+2
*
|
|
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
*
|
|
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
*
|
|
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
[prev]
[next]