- 15 Nov, 2017 10 commits
-
-
Antoine Pitrou authored
* bpo-32025: Add time.thread_time() * Add missing #endif * Add NEWS blurb * Add docs and whatsnew * Address review comments * Review comments
-
Dong-hee Na authored
-
Serhiy Storchaka authored
-
Serhiy Storchaka authored
-
Serhiy Storchaka authored
bpo-32011: Revert "Issue #15480: Remove the deprecated and unused TYPE_INT64 code from marshal." (#4381) Simplify the reverted code. This reverts commit e9bbe8b8.
-
Serhiy Storchaka authored
-
Serhiy Storchaka authored
* Setting sys.tracebacklimit to 0 or less now suppresses printing tracebacks. * Setting sys.tracebacklimit to None now causes using the default limit. * Setting sys.tracebacklimit to an integer larger than LONG_MAX now means using the limit LONG_MAX rather than the default limit. * Fixed integer overflows in the case of more than 2**31 traceback items on Windows. * Fixed output errors handling.
-
Serhiy Storchaka authored
-
sanjayp authored
-
Serhiy Storchaka authored
-
- 14 Nov, 2017 4 commits
-
-
Jesse-Bakker authored
-
Serhiy Storchaka authored
-
Andrey Egorov authored
* bpo-32015: Asyncio cycling during simultaneously socket read/write and reconnection * Tests fix * Tests fix * News add * Add new unit tests
-
Mat M authored
-
- 13 Nov, 2017 5 commits
-
-
Sanyam Khurana authored
* bpo-16055: Fixes incorrect error text for int('1', base=1000) * bpo-16055: Address review comments
-
Serhiy Storchaka authored
in int(), float() and complex() parsers. This also speeds up parsing non-ASCII numbers by around 20%.
-
Yury Selivanov authored
-
Mat M authored
-
Benjamin Peterson authored
Darwin may not require libm, but it doesn't hurt to link it and simplifies configuration logic.
-
- 12 Nov, 2017 5 commits
- 11 Nov, 2017 8 commits
-
-
Serhiy Storchaka authored
-
Edward Betts authored
-
Berker Peksag authored
It can be removed after https://github.com/python/peps/commit/c28890fb421c906241da6da718f9eacc5a3109ee
-
Serhiy Storchaka authored
Silence only expected AttributeError.
-
Serhiy Storchaka authored
Silence only AttributeError when get "key" and "items" attributes in the constructor and the update() method of dict and OrderedDict .
-
Serhiy Storchaka authored
-
Serhiy Storchaka authored
Get rid of _PyObject_HasAttrId() and PyDict_GetItemString(). Silence only expected AttributeError, KeyError and ImportError when get an attribute, look up in a dict or import a module.
-
Serhiy Storchaka authored
-
- 10 Nov, 2017 6 commits
-
-
Pablo Galindo authored
-
benfogle authored
-
Yury Selivanov authored
-
Brian Curtin authored
The openfp functions of aifp, sunau, and wave had pointed to the open function of each module since 1993 as a matter of backwards compatibility. In the case of aifc.openfp, it was both undocumented and untested. This change begins the formal deprecation of those openfp functions, with their removal coming in 3.9. This additionally adds a TODO in test_pyclbr around using aifc.openfp, though it shouldn't be changed until removal in 3.9.
-
Serhiy Storchaka authored
-
Serhiy Storchaka authored
-
- 09 Nov, 2017 2 commits
-
-
Paul Ganssle authored
-
Cody Scott authored
-