Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | bpo-33985: Implement ContextVar.name attribute. (GH-7980) | Yury Selivanov | 2018-06-28 | 1 | -0/+5 |
| | |||||
* | Fix some warnings produced by different compilers. (#5593) | Serhiy Storchaka | 2018-02-09 | 1 | -2/+2 |
| | |||||
* | bpo-32436: Use PyThreadState_GET() in all hot paths (GH-5363) | Yury Selivanov | 2018-01-27 | 1 | -3/+6 |
| | |||||
* | bpo-32436: Make PyContextVar_Get a little bit faster (#5350) | Yury Selivanov | 2018-01-26 | 1 | -1/+2 |
| | | | | Since context.c is compiled with Py_BUILD_CORE, using a macro will result in a slightly more optimal code. | ||||
* | bpo-32436: Fix a refleak; var GC tracking; a GCC warning (#5326) | Yury Selivanov | 2018-01-25 | 1 | -3/+5 |
| | | | | | The refleak in question wasn't really important, as context vars are usually created at the toplevel and live as long as the interpreter lives, so the context var name isn't ever GCed anyways. | ||||
* | bpo-32436: Don't use native popcount() (also fixes bpo-32641) (#5292) | Yury Selivanov | 2018-01-24 | 1 | -1/+1 |
| | |||||
* | bpo-32436: Implement PEP 567 (#5027) | Yury Selivanov | 2018-01-23 | 1 | -0/+1220 |