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 #21718: Merge from 3.5
Berker Peksag
2016-08-21
3
-7/+48
|
\
|
*
Issue #21718: cursor.description is now available for queries using CTEs
Berker Peksag
2016-08-21
3
-7/+48
*
|
Untabify Objects/longobject.c.
Mark Dickinson
2016-08-21
1
-2/+2
*
|
Issue #25604: Fix minor bug in integer true division, which could
Mark Dickinson
2016-08-21
2
-2/+6
*
|
Issue #27662: add missing Misc/NEWS entry.
Mark Dickinson
2016-08-21
1
-0/+4
*
|
Issue #27662: don't use PY_SIZE_MAX for overflow checking in List_New. Patch ...
Mark Dickinson
2016-08-21
1
-11/+1
*
|
Merge #27782 fix from 3.5
Nick Coghlan
2016-08-21
7
-32/+83
|
\
\
|
|
/
|
*
Issue #27782: Fix m_methods handling in multiphase init
Nick Coghlan
2016-08-21
7
-32/+83
*
|
Issue #27487: Merge runpy warning from 3.5
Martin Panter
2016-08-21
4
-11/+52
|
\
\
|
|
/
|
*
Issue #27487: Warn if submodule already imported before runpy execution
Martin Panter
2016-08-21
4
-11/+52
*
|
Fix typo in IDLE News.
Terry Jan Reedy
2016-08-21
2
-6/+6
|
\
\
|
|
/
|
*
Fix typo in IDLE News.
Terry Jan Reedy
2016-08-21
2
-2/+2
*
|
Add 3.6.0a4 IDLE NEWS and idlelib/NEWS.txt items.
Terry Jan Reedy
2016-08-21
2
-0/+55
|
\
\
|
|
/
|
*
Add 3.5.3 IDLE NEWS and idlelib/NEWS.txt items.
Terry Jan Reedy
2016-08-21
2
-0/+18
*
|
Issue #27714: Remove unneeded non-idempotent call that fails on retest.
Terry Jan Reedy
2016-08-21
1
-2/+0
|
\
\
|
|
/
|
*
Issue #27714: Remove unneeded non-idempotent call that fails on retest.
Terry Jan Reedy
2016-08-21
1
-2/+0
*
|
Issue #27819: Simply default to gztar for sdist formats by default on all pla...
Jason R. Coombs
2016-08-20
2
-11/+4
*
|
Issue #27692: Removed unnecessary NULL checks in exceptions.c.
Serhiy Storchaka
2016-08-20
1
-4/+3
*
|
issue26981: fix typo
Ethan Furman
2016-08-20
1
-1/+1
*
|
issue26981: add _order_ compatibility shim to enum.Enum
Ethan Furman
2016-08-20
4
-3/+100
*
|
Fix more typos
Martin Panter
2016-08-20
1
-2/+2
*
|
Merge spelling fixes from 3.5
Martin Panter
2016-08-20
6
-7/+7
|
\
\
|
|
/
|
*
Minor spelling fixes
Martin Panter
2016-08-20
6
-7/+7
*
|
Issue #12982: Merge from 3.5
Berker Peksag
2016-08-20
1
-3/+1
|
\
\
|
|
/
|
*
Issue #12982: Thanks to PEP 488, Python no longer creates .pyo files
Berker Peksag
2016-08-20
1
-3/+1
*
|
Issue #27614: Merge test_docxmlrpc from 3.5
Martin Panter
2016-08-20
1
-30/+11
|
\
\
|
|
/
|
*
Issue #27614: Avoid race in test_docxmlrpc server setup
Martin Panter
2016-08-20
1
-30/+11
*
|
Issue #27787: Merge regrtest fixup from 3.5
Martin Panter
2016-08-20
2
-0/+7
|
\
\
|
|
/
|
*
Issue #27787: Clean up weak references before checking for dangling threads
Martin Panter
2016-08-20
2
-0/+4
*
|
Issue26988: remove AutoEnum
Ethan Furman
2016-08-20
4
-665/+79
*
|
Issue #27713: merge from 3.5
Ned Deily
2016-08-20
2
-0/+4
|
\
\
|
|
/
|
*
Issue #27713: Surpress spurious build warnings when updating importlib's
Ned Deily
2016-08-20
2
-0/+4
*
|
Fix reference leak in tb_printinternal()
Victor Stinner
2016-08-20
1
-0/+2
*
|
Issue #27366: Fix init_subclass()
Victor Stinner
2016-08-20
1
-0/+5
*
|
pattern_subx() now uses fast call
Victor Stinner
2016-08-19
1
-8/+1
*
|
_elementtree: deepcopy() now uses fast call
Victor Stinner
2016-08-19
1
-8/+4
*
|
sys_pyfile_write_unicode() now uses fast call
Victor Stinner
2016-08-19
1
-7/+2
*
|
call_trampoline() now uses fast call
Victor Stinner
2016-08-19
1
-19/+10
*
|
PyErr_PrintEx() now uses fast call
Victor Stinner
2016-08-19
1
-3/+7
*
|
import_name() now uses fast call
Victor Stinner
2016-08-19
1
-13/+9
*
|
PyFile_WriteObject() now uses fast call
Victor Stinner
2016-08-19
1
-9/+2
*
|
Issue #27128: _pickle uses fast call
Victor Stinner
2016-08-19
1
-15/+4
*
|
keyobject_richcompare() now uses fast call
Victor Stinner
2016-08-19
1
-11/+7
*
|
calliter_iternext() now uses fast call
Victor Stinner
2016-08-19
1
-19/+21
*
|
slot_tp_iter() now uses fast call
Victor Stinner
2016-08-19
1
-6/+3
*
|
slot_nb_bool() now uses fast call
Victor Stinner
2016-08-19
1
-8/+2
*
|
Issue #27128: Cleanup slot_nb_bool()
Victor Stinner
2016-08-19
1
-25/+41
*
|
Issue #27128: slot_sq_item() uses fast call
Victor Stinner
2016-08-19
1
-10/+3
*
|
Issue #27128: Cleanup slot_sq_item()
Victor Stinner
2016-08-19
1
-25/+33
*
|
call_method() and call_maybe() now use fast call
Victor Stinner
2016-08-19
1
-20/+26
[next]