- 15 Kas, 2017 4 kayıt (commit)
-
-
Serhiy Storchaka yazdı
* 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 yazdı
-
sanjayp yazdı
-
Serhiy Storchaka yazdı
-
- 14 Kas, 2017 4 kayıt (commit)
-
-
Jesse-Bakker yazdı
-
Serhiy Storchaka yazdı
-
Andrey Egorov yazdı
* bpo-32015: Asyncio cycling during simultaneously socket read/write and reconnection * Tests fix * Tests fix * News add * Add new unit tests
-
Mat M yazdı
-
- 13 Kas, 2017 5 kayıt (commit)
-
-
Sanyam Khurana yazdı
* bpo-16055: Fixes incorrect error text for int('1', base=1000) * bpo-16055: Address review comments
-
Serhiy Storchaka yazdı
in int(), float() and complex() parsers. This also speeds up parsing non-ASCII numbers by around 20%.
-
Yury Selivanov yazdı
-
Mat M yazdı
-
Benjamin Peterson yazdı
Darwin may not require libm, but it doesn't hurt to link it and simplifies configuration logic.
-
- 12 Kas, 2017 5 kayıt (commit)
- 11 Kas, 2017 8 kayıt (commit)
-
-
Serhiy Storchaka yazdı
-
Edward Betts yazdı
-
Berker Peksag yazdı
It can be removed after https://github.com/python/peps/commit/c28890fb421c906241da6da718f9eacc5a3109ee
-
Serhiy Storchaka yazdı
Silence only expected AttributeError.
-
Serhiy Storchaka yazdı
Silence only AttributeError when get "key" and "items" attributes in the constructor and the update() method of dict and OrderedDict .
-
Serhiy Storchaka yazdı
-
Serhiy Storchaka yazdı
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 yazdı
-
- 10 Kas, 2017 6 kayıt (commit)
-
-
Pablo Galindo yazdı
-
benfogle yazdı
-
Yury Selivanov yazdı
-
Brian Curtin yazdı
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 yazdı
-
Serhiy Storchaka yazdı
-
- 09 Kas, 2017 5 kayıt (commit)
-
-
Paul Ganssle yazdı
-
Cody Scott yazdı
-
Ned Batchelder yazdı
-
Serhiy Storchaka yazdı
* Fix compilation of the socket module on NetBSD 8. * Fix the assertion failure or reading arbitrary data when parse a AF_BLUETOOTH address on NetBSD and DragonFly BSD. * Fix other potential errors and make the code more reliable.
-
Antoine Pitrou yazdı
* Silence error output in test_concurrent_futures (bpo-21423)
-
- 08 Kas, 2017 3 kayıt (commit)
-
-
Victor Stinner yazdı
kB (*kilo* byte) unit means 1000 bytes, whereas KiB ("kibibyte") means 1024 bytes. KB was misused: replace kB or KB with KiB when appropriate. Same change for MB and GB which become MiB and GiB. Change the output of Tools/iobench/iobench.py. Round also the size of the documentation from 5.5 MB to 5 MiB.
-
Berker Peksag yazdı
-
Berker Peksag yazdı
-