summaryrefslogtreecommitdiffstats
path: root/Python/hamt.c
Commit message (Collapse)AuthorAgeFilesLines
* Fix GCC warning in Python/hamt.c (GH-7618)Miss Islington (bot)2018-07-061-1/+1
| | | | | (cherry picked from commit d8c3e820b4fcdc45b80ba47f615c95e99e2e931b) Co-authored-by: Zackery Spytz <zspytz@gmail.com>
* bpo-33803: Fix a crash in hamt.c (GH-7504) (GH-7505)Miss Islington (bot)2018-06-081-0/+2
| | | | | (cherry picked from commit 378c53cc3187dba57c7560ccc2557f516c8a7bc8) Co-authored-by: Yury Selivanov <yury@magic.io>
* Spelling fixes to docs, docstrings, and comments (GH-6374)Miss Islington (bot)2018-04-201-2/+2
| | | | | (cherry picked from commit 61f82e0e337f971da57f8f513abfe693edf95aa5) Co-authored-by: Ville Skyttä <ville.skytta@iki.fi>
* Add two missing error checks in hamt.c (GH-5851)Miss Islington (bot)2018-03-081-1/+7
| | | | | (cherry picked from commit 3c7ac7ea2098c672e50402d1d1b5ee9f14586437) Co-authored-by: Xiang Zhang <angwerzx@126.com>
* Fix some warnings produced by different compilers. (GH-5593) (GH-5600)Miss Islington (bot)2018-02-091-2/+2
| | | | | (cherry picked from commit bfe4fd5f2e96e72eecb5b8a0c7df0ac1689f3b7e) Co-authored-by: Serhiy Storchaka <storchaka@gmail.com>
* bpo-32436: Fix compiler warning (GH-5483) (GH-5486)Miss Islington (bot)2018-02-021-0/+2
| | | | | (cherry picked from commit 55e0839f2672e029c2b96514028c77c31ffbe41f) Co-authored-by: Yury Selivanov <yury@magic.io>
* Fix typo in hamt.c comments (GH-5478) (#5484)Miss Islington (bot)2018-02-021-1/+1
| | | | | (cherry picked from commit 01a0cb891694cf73b86f799c48d8c78de1b8f74c) Co-authored-by: Dmitry Alimov <dvalimov@gmail.com>
* bpo-32707: Fix warnings in hamt.c (#5430)Yury Selivanov2018-01-291-3/+5
|
* bpo-32436: Fix a refleak; var GC tracking; a GCC warning (#5326)Yury Selivanov2018-01-251-1/+1
| | | | | 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.
* Fix 3rd level node's binary representation in HAMT algorithm description (#5319)Dmitry Alimov2018-01-251-1/+1
|
* bpo-32436: Don't use native popcount() (also fixes bpo-32641) (#5292)Yury Selivanov2018-01-241-14/+12
|
* bpo-32436: Fix potential NULL dereference (#5286)Yury Selivanov2018-01-231-0/+4
|
* bpo-32436: Remove a redundant assert (#5275)Yury Selivanov2018-01-231-1/+0
|
* bpo-32436: Implement PEP 567 (#5027)Yury Selivanov2018-01-231-0/+2982