[issue41802] Missing documentation for 'PyDict_DelItem' behavior

2020-10-05 Thread Łukasz Langa
Łukasz Langa added the comment: New changeset 95de3627f1527cbb1e98d64dd7cc6463c297b616 by Łukasz Langa (Miss Islington (bot)) in branch '3.9': bpo-41802: Document 'PyDict_DelItem' can raise a 'KeyError' (GH-22291) https://github.com/python/cpython/commit/95de3627f1527cbb1e98d64dd7cc6463c297b61

[issue41802] Missing documentation for 'PyDict_DelItem' behavior

2020-10-02 Thread Serhiy Storchaka
Change by Serhiy Storchaka : -- assignee: -> docs@python components: +Documentation nosy: +docs@python resolution: -> fixed stage: patch review -> resolved status: open -> closed type: -> enhancement ___ Python tracker

[issue41802] Missing documentation for 'PyDict_DelItem' behavior

2020-10-02 Thread miss-islington
miss-islington added the comment: New changeset 6dc8e0eb9b471f6665f841216a6b2d83741b3973 by Miss Islington (bot) in branch '3.9': bpo-41802: Document 'PyDict_DelItem' can raise a 'KeyError' (GH-22291) https://github.com/python/cpython/commit/6dc8e0eb9b471f6665f841216a6b2d83741b3973

[issue41802] Missing documentation for 'PyDict_DelItem' behavior

2020-10-02 Thread miss-islington
miss-islington added the comment: New changeset ab32ea8d79d6bfb6580d35bfc4aa42d2729c0bcf by Miss Islington (bot) in branch '3.8': bpo-41802: Document 'PyDict_DelItem' can raise a 'KeyError' (GH-22291) https://github.com/python/cpython/commit/ab32ea8d79d6bfb6580d35bfc4aa42d2729c0bcf

[issue41802] Missing documentation for 'PyDict_DelItem' behavior

2020-10-02 Thread miss-islington
Change by miss-islington : -- nosy: +miss-islington nosy_count: 3.0 -> 4.0 pull_requests: +21513 pull_request: https://github.com/python/cpython/pull/22493 ___ Python tracker _

[issue41802] Missing documentation for 'PyDict_DelItem' behavior

2020-10-02 Thread miss-islington
Change by miss-islington : -- pull_requests: +21514 pull_request: https://github.com/python/cpython/pull/22494 ___ Python tracker ___ __

[issue41802] Missing documentation for 'PyDict_DelItem' behavior

2020-10-02 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: New changeset 20ce62f00957d11f24f6449cd5c0ef5dd67174d4 by Campbell Barton in branch 'master': bpo-41802: Document 'PyDict_DelItem' can raise a 'KeyError' (GH-22291) https://github.com/python/cpython/commit/20ce62f00957d11f24f6449cd5c0ef5dd67174d4

[issue41802] Missing documentation for 'PyDict_DelItem' behavior

2020-10-02 Thread Irit Katriel
Change by Irit Katriel : -- keywords: +patch nosy: +iritkatriel nosy_count: 1.0 -> 2.0 pull_requests: +21512 stage: -> patch review pull_request: https://github.com/python/cpython/pull/22291 ___ Python tracker _

[issue41802] Missing documentation for 'PyDict_DelItem' behavior

2020-09-17 Thread Campbell Barton
Campbell Barton added the comment: Edit: When calling 'PyDict_DelItem' on a key that isn't in the dictionary, a 'KeyError' is raised. This is not documented. >From reading the current documentation, it only seems as if an error is raised >if the key can't be hashed. -- ___

[issue41802] Missing documentation for 'PyDict_DelItem' behavior

2020-09-17 Thread Campbell Barton
New submission from Campbell Barton : When calling 'PyDict_DelItem' on a key that isn't in the hash a KeyError is raised. This is not documented. -- components: C API messages: 377053 nosy: ideasman42 priority: normal severity: normal status: open title: Missing documentation for 'PyDi