[issue44558] operator.countOf `is` / `==` inconsistency

2021-07-07 Thread miss-islington
Change by miss-islington : -- pull_requests: +25609 pull_request: https://github.com/python/cpython/pull/27053 ___ Python tracker ___ __

[issue44558] operator.countOf `is` / `==` inconsistency

2021-07-07 Thread Dong-hee Na
Dong-hee Na added the comment: New changeset 6bd3ecfc272b122b55a6adec50dd7a7c868f262f by Rupert Tombs in branch 'main': bpo-44558: Match countOf `is`/`==` treatment to c (GH-27007) https://github.com/python/cpython/commit/6bd3ecfc272b122b55a6adec50dd7a7c868f262f --

[issue44558] operator.countOf `is` / `==` inconsistency

2021-07-06 Thread Dong-hee Na
Dong-hee Na added the comment: @vstinner https://github.com/python/cpython/pull/27007 is not yet merged due to CLA issue -- ___ Python tracker ___ ___

[issue44558] operator.countOf `is` / `==` inconsistency

2021-07-06 Thread STINNER Victor
STINNER Victor added the comment: This issue can be closed, no? -- ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubsc

[issue44558] operator.countOf `is` / `==` inconsistency

2021-07-05 Thread Raymond Hettinger
Change by Raymond Hettinger : -- nosy: +rhettinger ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://ma

[issue44558] operator.countOf `is` / `==` inconsistency

2021-07-05 Thread miss-islington
miss-islington added the comment: New changeset 9f47d872dbebdd95fd6b0a3351aeafaf82dfd203 by Miss Islington (bot) in branch '3.9': bpo-44558: Make the implementation consistency of operator.indexOf (GH-27012) https://github.com/python/cpython/commit/9f47d872dbebdd95fd6b0a3351aeafaf82dfd203 -

[issue44558] operator.countOf `is` / `==` inconsistency

2021-07-05 Thread miss-islington
miss-islington added the comment: New changeset 1f8486fd50ad4666078eb40ce9f24e8aac17a395 by Miss Islington (bot) in branch '3.10': bpo-44558: Make the implementation consistency of operator.indexOf (GH-27012) https://github.com/python/cpython/commit/1f8486fd50ad4666078eb40ce9f24e8aac17a395

[issue44558] operator.countOf `is` / `==` inconsistency

2021-07-05 Thread miss-islington
Change by miss-islington : -- nosy: +miss-islington nosy_count: 5.0 -> 6.0 pull_requests: +25588 pull_request: https://github.com/python/cpython/pull/27029 ___ Python tracker _

[issue44558] operator.countOf `is` / `==` inconsistency

2021-07-05 Thread miss-islington
Change by miss-islington : -- pull_requests: +25589 pull_request: https://github.com/python/cpython/pull/27030 ___ Python tracker ___ __

[issue44558] operator.countOf `is` / `==` inconsistency

2021-07-05 Thread Dong-hee Na
Dong-hee Na added the comment: New changeset 09302405d22e86884d6058226790c0cdf5b72f14 by Dong-hee Na in branch 'main': bpo-44558: Make the implementation consistency of operator.indexOf (GH-27012) https://github.com/python/cpython/commit/09302405d22e86884d6058226790c0cdf5b72f14 --

[issue44558] operator.countOf `is` / `==` inconsistency

2021-07-04 Thread Dong-hee Na
Change by Dong-hee Na : -- versions: -Python 3.6, Python 3.7, Python 3.8 ___ Python tracker ___ ___ Python-bugs-list mailing list U

[issue44558] operator.countOf `is` / `==` inconsistency

2021-07-04 Thread Dong-hee Na
Change by Dong-hee Na : -- pull_requests: +25572 pull_request: https://github.com/python/cpython/pull/27012 ___ Python tracker ___ _

[issue44558] operator.countOf `is` / `==` inconsistency

2021-07-04 Thread Dong-hee Na
Change by Dong-hee Na : -- nosy: +corona10, serhiy.storchaka, vstinner ___ Python tracker ___ ___ Python-bugs-list mailing list Unsu

[issue44558] operator.countOf `is` / `==` inconsistency

2021-07-03 Thread Rupert Tombs
Change by Rupert Tombs : -- keywords: +patch pull_requests: +25567 stage: -> patch review pull_request: https://github.com/python/cpython/pull/27007 ___ Python tracker ___ ___

[issue44558] operator.countOf `is` / `==` inconsistency

2021-07-03 Thread Rupert Tombs
New submission from Rupert Tombs : operator.countOf behaves differently in its docstring and its c and python implementations when `is` and `==` differ. help(countOf) -> countOf(a, b, /) Return the number of times b occurs in a. This could be read to say that it returns equal to