Terry Jan Reedy
49dcf9d858
Fix typo in IDLE News.
10 years ago
Terry Jan Reedy
9f957705d6
Fix typo in IDLE News.
10 years ago
Terry Jan Reedy
97c463dcfb
Add 3.6.0a4 IDLE NEWS and idlelib/NEWS.txt items.
10 years ago
Terry Jan Reedy
d3fb55797b
Add 3.5.3 IDLE NEWS and idlelib/NEWS.txt items.
10 years ago
Terry Jan Reedy
e194e87f1f
Issue #27714 : Remove unneeded non-idempotent call that fails on retest.
10 years ago
Terry Jan Reedy
f7ac36837a
Issue #27714 : Remove unneeded non-idempotent call that fails on retest.
10 years ago
Jason R. Coombs
a47ca08a36
Issue #27819 : Simply default to gztar for sdist formats by default on all platforms.
10 years ago
Serhiy Storchaka
3766572a48
Issue #27692 : Removed unnecessary NULL checks in exceptions.c.
Patch by Xiang Zhang.
10 years ago
Ethan Furman
7649b24c04
issue26981: fix typo
10 years ago
Ethan Furman
e8e61277ff
issue26981: add _order_ compatibility shim to enum.Enum
10 years ago
Martin Panter
3e45875578
Fix more typos
10 years ago
Martin Panter
8fbab9f163
Merge spelling fixes from 3.5
10 years ago
Berker Peksag
09808e7530
Issue #12982 : Merge from 3.5
10 years ago
Berker Peksag
f43bc98c48
Issue #12982 : Thanks to PEP 488, Python no longer creates .pyo files
10 years ago
Martin Panter
d210a70dd9
Minor spelling fixes
10 years ago
Martin Panter
4bf6ed556d
Issue #27614 : Merge test_docxmlrpc from 3.5
10 years ago
Martin Panter
051b2201a7
Issue #27787 : Merge regrtest fixup from 3.5
10 years ago
Ethan Furman
332dbc7325
Issue26988: remove AutoEnum
10 years ago
Martin Panter
d874c05547
Issue #27614 : Avoid race in test_docxmlrpc server setup
10 years ago
Martin Panter
68c1f1ed03
Issue #27787 : Clean up weak references before checking for dangling threads
10 years ago
Ned Deily
1cce732fcf
Issue #27713 : merge from 3.5
10 years ago
Ned Deily
17cfc86422
Issue #27713 : Surpress spurious build warnings when updating importlib's
bootstrap files:
Could not find platform dependent libraries <exec_prefix
Consider setting $PYTHONHOME to <prefix>[:<exec_prefix>]
Patch by Xiang Zhang
10 years ago
Victor Stinner
a88b2f4e5e
Fix reference leak in tb_printinternal()
Issue #26823 .
10 years ago
Victor Stinner
253021dd94
Issue #27366 : Fix init_subclass()
Handle PyTuple_New(0) failure.
10 years ago
Victor Stinner
ea5e5990c9
pattern_subx() now uses fast call
Issue #27128 .
10 years ago
Victor Stinner
7fbac45287
_elementtree: deepcopy() now uses fast call
Issue #27128 .
10 years ago
Victor Stinner
c3ccaae6f3
sys_pyfile_write_unicode() now uses fast call
Issue #27128 .
10 years ago
Victor Stinner
78da82bf3e
call_trampoline() now uses fast call
Issue #27128 .
10 years ago
Victor Stinner
71cb64acc2
PyErr_PrintEx() now uses fast call
Issue #27128 .
10 years ago
Victor Stinner
df142fdc4b
import_name() now uses fast call
Issue #27128 : import_name() now calls _PyObject_FastCall() to avoid the
creation of a temporary tuple.
10 years ago
Victor Stinner
9def0901e2
PyFile_WriteObject() now uses fast call
Issue #27128 : PyFile_WriteObject() now calls _PyObject_FastCall() to avoid the
creation of a temporary tuple.
10 years ago
Victor Stinner
75210697ec
Issue #27128 : _pickle uses fast call
Use _PyObject_FastCall() to avoid the creation of temporary tuple.
10 years ago
Victor Stinner
f7a4c488b5
keyobject_richcompare() now uses fast call
Issue #27128 : keyobject_richcompare() now calls _PyObject_FastCall() using a
small stack allocated on the C stack to avoid a temporary tuple.
10 years ago
Victor Stinner
99ee9c70a7
calliter_iternext() now uses fast call
Issue #27128 : calliter_iternext() now calls _PyObject_FastCall() to avoid a
temporary empty tuple.
Cleanup also the code to reduce the indentation level.
10 years ago
Victor Stinner
6911267615
slot_tp_iter() now uses fast call
Issue #27128 : slot_tp_iter() now calls _PyObject_FastCall() to avoid a
temporary empty tuple.
10 years ago
Victor Stinner
20a3007a8d
slot_nb_bool() now uses fast call
Issue #27128 : slot_nb_bool() now calls _PyObject_FastCall() to avoid a
temporary empty tuple to call the slot function.
10 years ago
Victor Stinner
a12eec48b6
Issue #27128 : Cleanup slot_nb_bool()
Use an error label to reduce the level of indentation.
10 years ago
Victor Stinner
5e87749a8e
Issue #27128 : slot_sq_item() uses fast call
slot_sq_item() now calls _PyObject_FastCall() to avoid the creation of a
temporary tuple of 1 item to pass the 'item' argument to the slot function.
10 years ago
Victor Stinner
018016d8e3
Issue #27128 : Cleanup slot_sq_item()
* Invert condition of test to avoid levels of indentation
* Remove useless Py_XDECREF(args) in the error block
* Replace Py_XDECREF(func) with Py_DECREF(func) in the error block: func cannot
be NULL when reaching the error block
10 years ago
Victor Stinner
f736c261a2
call_method() and call_maybe() now use fast call
Issue #27128 . The call_method() and call_maybe() functions of typeobject.c now
use fast call for empty format string to avoid the creation of a temporary
empty tuple.
10 years ago
Victor Stinner
94463c980e
Cleanup call_method() and call_maybe()
Issue #27128 . Move va_start/va_end around Py_VaBuildValue().
10 years ago
Victor Stinner
56142c701b
Merge 3.5 (fix refleak in call_maybe())
10 years ago
Victor Stinner
6902ddf2ca
Fix a refleak in call_maybe()
Issue #27128 . Fix a reference leak if creating the tuple to pass positional
parameters fails.
10 years ago
Victor Stinner
f2abf5c11a
regrtest: replace "Result:" with "Tests result:"
10 years ago
Victor Stinner
59e9ca6bda
Merge 3.5 (fix refleak in call_method)
10 years ago
Victor Stinner
d925bd5794
Fix a refleak in call_method()
Issue #27128 . Fix a reference leak if creating the tuple to pass positional
parameters fails.
10 years ago
Victor Stinner
a7720f61aa
contains and rich compare slots use fast call
Issue #27128 . Modify slot_sq_contains() and slot_tp_richcompare() to use fast
call to avoid a temporary tuple to pass a single positional parameter.
10 years ago
Victor Stinner
8a31c82093
Fix PyObject_Call() parameter names
Issue #27128 : arg=>args, kw=>kwargs.
Same change for PyEval_CallObjectWithKeywords().
10 years ago
Victor Stinner
0d1a799343
Avoid call_function_tail() for empty format str
Issue #27128 , PyObject_CallFunction(), _PyObject_FastCall() and callmethod():
if the format string of parameters is empty, avoid the creation of an empty
tuple: call _PyObject_FastCall() without parameters.
10 years ago
Victor Stinner
71aea8e981
PEP 7: add {...} around null_error() in abstract.c
Issue #27128 .
10 years ago