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
path:
root
/
Modules
Commit message (
Expand
)
Author
Age
Files
Lines
*
Issue #6953: Merge readline doc from 3.5
Martin Panter
2016-04-05
1
-16/+16
|
\
|
*
Issue #6953: Rearrange and expand Readline module documentation
Martin Panter
2016-04-05
1
-16/+16
*
|
Issue #23735: Merge sighandler_t fix from 3.5
Martin Panter
2016-04-03
1
-1/+1
|
\
\
|
|
/
|
*
Issue #23735: Avoid sighandler_t Gnu-ism
Martin Panter
2016-04-03
1
-1/+1
*
|
Issue #23735: Merge Readline resize handling from 3.5
Martin Panter
2016-04-03
1
-0/+31
|
\
\
|
|
/
|
*
Issue #23735: Add SIGWINCH handler for Readline 6.3+ support, by Eric Price
Martin Panter
2016-04-03
1
-0/+31
*
|
Merge 3.5 (asyncio)
Victor Stinner
2016-04-01
1
-0/+6
|
\
\
|
|
/
|
*
asyncio: sync overlapped.c with GitHub
Victor Stinner
2016-04-01
1
-0/+6
*
|
Issue #22854: Merge UnsupportedOperation fixes from 3.5
Martin Panter
2016-03-31
3
-15/+13
|
\
\
|
|
/
|
*
Issue #22854: Clarify documentation about UnsupportedOperation and add tests
Martin Panter
2016-03-31
3
-15/+13
*
|
Issue #26492: Exhausted iterator of array.array now conforms with the behavior
Serhiy Storchaka
2016-03-30
1
-4/+18
*
|
Issue #26494: Fixed crash on iterating exhausting iterators.
Serhiy Storchaka
2016-03-30
1
-6/+10
|
\
\
|
|
/
|
*
Issue #26494: Fixed crash on iterating exhausting iterators.
Serhiy Storchaka
2016-03-30
1
-6/+10
*
|
Issue #26644: Merge SSL negative read fix from 3.5
Martin Panter
2016-03-27
1
-0/+5
|
\
\
|
|
/
|
*
Issue #26644: Raise ValueError for negative SSLSocket.recv() and read()
Martin Panter
2016-03-27
1
-0/+5
|
*
_pickle: Fix load_counted_tuple(), use Py_ssize_t for size
Victor Stinner
2016-03-14
1
-1/+1
*
|
merge
Alexander Belopolsky
2016-03-25
1
-1/+6
|
\
\
|
|
/
|
*
Issue#26616:Fixed a bug in datetime.astimezone() method.
Alexander Belopolsky
2016-03-25
1
-1/+6
*
|
_tracemalloc: use compact key for traces
Victor Stinner
2016-03-23
1
-1/+61
*
|
socketmodule.c: error if option larger than INT_MAX
Victor Stinner
2016-03-23
1
-3/+16
*
|
Issue #26621: Update libmpdec version and remove unnecessary test case.
Stefan Krah
2016-03-23
1
-2/+2
*
|
Issue #23848: Fix usage of _Py_DumpDecimal()
Victor Stinner
2016-03-23
1
-1/+1
*
|
Issue #23848: Try to fix test_faulthandler on ARM
Victor Stinner
2016-03-23
1
-32/+16
*
|
faulthandler: only log fatal exceptions
Victor Stinner
2016-03-23
1
-3/+10
*
|
faulthandler: add Windows exception handler
Victor Stinner
2016-03-23
1
-64/+189
*
|
Cleanup hashtable.h
Victor Stinner
2016-03-23
3
-80/+81
*
|
Issue #26588:
Victor Stinner
2016-03-23
2
-11/+30
*
|
Issue #26588:
Victor Stinner
2016-03-23
3
-11/+28
*
|
Issue #26588: Optimize tracemalloc_realloc()
Victor Stinner
2016-03-23
1
-1/+6
*
|
Implement finalizer for os.scandir() iterator
Victor Stinner
2016-03-22
1
-17/+47
*
|
Fix macros in hashtable.h
Victor Stinner
2016-03-22
1
-2/+2
*
|
Merge 3.5
Victor Stinner
2016-03-22
1
-15/+1
|
\
\
|
|
/
|
*
Enhance _tracemalloc debug mode
Victor Stinner
2016-03-22
1
-1/+1
|
*
Fix _tracemalloc start/stop
Victor Stinner
2016-03-22
1
-14/+0
*
|
Issue #26588: remove debug traces from _tracemalloc.
Victor Stinner
2016-03-22
2
-78/+5
*
|
Issue #26588: more debug traces
Victor Stinner
2016-03-22
1
-1/+6
*
|
Issue #26588: Don't call tracemalloc_init() at module initilization
Victor Stinner
2016-03-22
1
-0/+2
*
|
Issue #26588: one more assertion
Victor Stinner
2016-03-22
1
-0/+1
*
|
Add assertions on tracemalloc_reentrant_key
Victor Stinner
2016-03-22
1
-2/+8
*
|
Issue #26588: more assertions
Victor Stinner
2016-03-22
1
-2/+23
*
|
Issue #26588: add debug traces
Victor Stinner
2016-03-22
2
-5/+49
*
|
Add C functions _PyTraceMalloc_Track()
Victor Stinner
2016-03-22
2
-11/+146
*
|
tracemalloc now supports domains
Victor Stinner
2016-03-22
1
-53/+214
*
|
Remove _Py_hashtable_delete()
Victor Stinner
2016-03-22
2
-8/+3
*
|
Simplify implementation of hashtable.c
Victor Stinner
2016-03-22
3
-66/+17
*
|
Issue #24266: Merge readline Ctrl+C handling from 3.5
Martin Panter
2016-03-22
1
-0/+3
|
\
\
|
|
/
|
*
Issue #24266: Cancel history search mode with Ctrl+C in Readline 7
Martin Panter
2016-03-22
1
-0/+3
*
|
Issue #15699: Merge readline fixup from 3.5
Martin Panter
2016-03-22
1
-16/+3
|
\
\
|
|
/
|
*
Issue #15699: Reunite comment with variable
Martin Panter
2016-03-22
1
-16/+3
|
*
Fix usage of PyMem_Malloc() in overlapped.c
Victor Stinner
2016-03-16
1
-3/+6
[next]