- 14 Nov, 2017 1 commit
-
-
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 5 commits
-
-
Paul Ganssle authored
-
Cody Scott authored
-
Ned Batchelder authored
-
Serhiy Storchaka authored
* 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 authored
* Silence error output in test_concurrent_futures (bpo-21423)
-
- 08 Nov, 2017 10 commits
-
-
Victor Stinner authored
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 authored
-
Berker Peksag authored
-
Tom Floyer authored
async and await keywords has been merged into upstream, but they are all missing in the lexical analysis docs. This change adds them to the appropriate keywords section in documentation.
-
Petr Viktorin authored
Py_UNUSED has a public name, and is used in the wild outside CPython, but was not documented. Rectify that. The macro was added in bpo-19976 and referenced in bpo-26179.
-
xdegaye authored
-
James authored
-
Victor Stinner authored
-
Berker Peksag authored
-
Petr Viktorin authored
The macro was added for bpo-31338 in commit b2e57948
-