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
*
Issue #20320: select.select() and select.kqueue.control() now round the timeout
Victor Stinner
2014-02-16
10
-62/+179
*
Issue #20616: Add a format() method to tracemalloc.Traceback.
Victor Stinner
2014-02-16
4
-7/+59
*
merge 3.3
Benjamin Peterson
2014-02-16
2
-6/+8
|
\
|
*
backout fafac90b69c4
Benjamin Peterson
2014-02-16
2
-7/+9
*
|
merge backout for #20621
Benjamin Peterson
2014-02-16
2
-321/+67
|
\
\
|
|
/
|
*
backout 2807a5f011e4 for causing #20621
Benjamin Peterson
2014-02-16
2
-323/+66
|
*
backout d28242a636c7 so I can backout 2807a5f011e4
Benjamin Peterson
2014-02-16
1
-1/+3
*
|
look up __getnewargs__ and __getnewargs_ex__ on the object type (#16251)
Benjamin Peterson
2014-02-16
3
-12/+23
*
|
merge 3.3
Benjamin Peterson
2014-02-16
0
-0/+0
|
\
\
|
|
/
|
*
do not line break reference
Benjamin Peterson
2014-02-16
1
-7/+7
*
|
Merge from 3.3
Andrew Kuchling
2014-02-16
2
-6/+1
|
\
\
|
|
/
|
*
#12211: remove paragraph about NaNs
Andrew Kuchling
2014-02-16
2
-6/+1
*
|
Merge from 3.3
Andrew Kuchling
2014-02-16
2
-3/+10
|
\
\
|
|
/
|
*
#12211: clarify math.copysign() documentation and docstring
Andrew Kuchling
2014-02-16
2
-3/+10
*
|
Doc: do not rely on checked-out Sphinx toolchain from svn.python.org anymore
Georg Brandl
2014-02-16
5
-64/+15
*
|
Merge from 3.3
Andrew Kuchling
2014-02-15
2
-1/+9
|
\
\
|
|
/
|
*
#20241: use correct RFC number
Andrew Kuchling
2014-02-15
1
-1/+1
|
*
#16728: Mention collections.abc.Sequence in 'sequence' glossary entry
Andrew Kuchling
2014-02-15
1
-0/+8
*
|
Merge from 3.3
Andrew Kuchling
2014-02-15
1
-2/+1
|
\
\
|
|
/
|
*
Clarify versionchanged sentence. Closes #20497.
Andrew Kuchling
2014-02-15
1
-2/+1
*
|
merge 3.3
Benjamin Peterson
2014-02-15
1
-38/+35
|
\
\
|
|
/
|
*
#20237: make a revision pass over the XML vulnerabilities section
Andrew Kuchling
2014-02-15
1
-38/+35
*
|
merge 3.3 (#20080)
Benjamin Peterson
2014-02-15
1
-0/+1
|
\
\
|
|
/
|
*
add missing test assertion (closes #20080)
Benjamin Peterson
2014-02-15
1
-0/+1
*
|
merge 3.3 (#20507)
Benjamin Peterson
2014-02-15
1
-1/+1
|
\
\
|
|
/
|
*
give non-iterable TypeError a message (closes #20507)
Benjamin Peterson
2014-02-15
1
-1/+1
*
|
#19890: merge with 3.3.
Ezio Melotti
2014-02-15
1
-1/+1
|
\
\
|
|
/
|
*
#19890: fix typo in multiprocessing docs. Patch by Mike Short.
Ezio Melotti
2014-02-15
1
-1/+1
*
|
#20634: merge with 3.3.
Ezio Melotti
2014-02-15
1
-1/+1
|
\
\
|
|
/
|
*
#20634: fix typo in IDLE README noticed by Saimadhav Heblikar.
Ezio Melotti
2014-02-15
1
-1/+1
*
|
Issue #19744: Handle missing SSL/TLS in ensurepip
Nick Coghlan
2014-02-14
3
-0/+17
*
|
Issue #20605: Make test_socket getaddrinfo OS X segfault test more robust.
Ned Deily
2014-02-14
2
-2/+13
|
\
\
|
|
/
|
*
Issue #20605: Make test_socket getaddrinfo OS X segfault test more robust.
Ned Deily
2014-02-14
2
-2/+10
*
|
set line and column numbers for keyword-only arg nodes (closes #20619)
Benjamin Peterson
2014-02-14
3
-2/+7
*
|
Issue #20526, #19466: Revert changes of issue #19466 which introduces a
Victor Stinner
2014-02-13
3
-64/+9
*
|
Issue #20599: Don't clear environment in test_cleanup() of test_builtin
Victor Stinner
2014-02-13
1
-2/+1
*
|
Fix test_asyncio/test_events.py: skip IPv6 if IPv6 is disabled on the host
Victor Stinner
2014-02-13
1
-1/+5
*
|
Merge heads
Serhiy Storchaka
2014-02-13
5
-13/+59
|
\
\
|
*
|
ayncio, Tulip issue 129: BaseEventLoop.sock_connect() now raises an error if
Victor Stinner
2014-02-13
5
-13/+59
*
|
|
Fixed typo in previous commit (issue #6815).
Serhiy Storchaka
2014-02-13
1
-1/+1
|
\
\
\
|
|
/
/
|
/
|
/
|
|
/
|
*
Fixed typo in previous commit (issue #6815).
Serhiy Storchaka
2014-02-13
1
-1/+1
*
|
Issue #6815: os.path.expandvars() now supports non-ASCII environment
Serhiy Storchaka
2014-02-13
5
-42/+96
|
\
\
|
|
/
|
*
Issue #6815: os.path.expandvars() now supports non-ASCII environment
Serhiy Storchaka
2014-02-13
5
-42/+96
*
|
asyncio: Change as_completed() to use a Queue, to avoid O(N**2) behavior. Fix...
Guido van Rossum
2014-02-13
2
-21/+55
*
|
asyncio.events: Use __slots__ in Handle and TimerHandle
Yury Selivanov
2014-02-12
1
-0/+4
*
|
whatsnew: 'other improvements' and 'optimizations' belong under CPython heading.
R David Murray
2014-02-12
1
-2/+2
*
|
whatsnew: PyUnicode_FromFormat width/precision, thread cleanup after fork.
R David Murray
2014-02-12
1
-1/+10
*
|
whatsnew: LOAD_CLASSDEREF, -X showrefcount
R David Murray
2014-02-12
2
-0/+10
*
|
Issue #20599: Force ASCII encoding for stdout in test_cleanup() of test_builtin
Victor Stinner
2014-02-12
1
-3/+11
*
|
Try to fix test_cleanup (issue #20599).
Serhiy Storchaka
2014-02-12
1
-2/+2
[next]