[issue32133] documentation: numbers module nitpick

2021-05-15 Thread Raymond Hettinger
Change by Raymond Hettinger : -- assignee: docs@python -> rhettinger resolution: -> fixed stage: patch review -> resolved status: open -> closed ___ Python tracker ___ ___

[issue32133] documentation: numbers module nitpick

2021-05-15 Thread Raymond Hettinger
Raymond Hettinger added the comment: New changeset a38db84122b4f664ee30b9ffd55ce87b7f4517ac by Miss Islington (bot) in branch '3.10': bpo-32133: Improve numbers docs (GH-26124) (GH-26149) https://github.com/python/cpython/commit/a38db84122b4f664ee30b9ffd55ce87b7f4517ac -- _

[issue32133] documentation: numbers module nitpick

2021-05-15 Thread Raymond Hettinger
Raymond Hettinger added the comment: New changeset 376740110ecb2440fee9e04f325131aaefeb5c47 by Miss Islington (bot) in branch '3.9': bpo-32133: Improve numbers docs (GH-26124) (GH-26147) https://github.com/python/cpython/commit/376740110ecb2440fee9e04f325131aaefeb5c47 -- __

[issue32133] documentation: numbers module nitpick

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

[issue32133] documentation: numbers module nitpick

2021-05-15 Thread miss-islington
Change by miss-islington : -- nosy: +miss-islington nosy_count: 6.0 -> 7.0 pull_requests: +24783 pull_request: https://github.com/python/cpython/pull/26147 ___ Python tracker _

[issue32133] documentation: numbers module nitpick

2021-05-15 Thread Sergey B Kirpichev
Sergey B Kirpichev added the comment: Maybe some methods from the Complex class could be moved to the Number class? I think, that something like the ring structure (probably even a commutative ring) is expected from the number classes in the Python. I.e. there should be __add__/__sub__/__mu

[issue32133] documentation: numbers module nitpick

2021-05-15 Thread Miguel Brito
Miguel Brito added the comment: @rhettinger added your suggestion. -- ___ Python tracker ___ ___ Python-bugs-list mailing list Unsu

[issue32133] documentation: numbers module nitpick

2021-05-15 Thread Miguel Brito
Change by Miguel Brito : -- keywords: +patch pull_requests: +24775 stage: -> patch review pull_request: https://github.com/python/cpython/pull/26124 ___ Python tracker ___ ___

[issue32133] documentation: numbers module nitpick

2021-05-14 Thread Raymond Hettinger
Raymond Hettinger added the comment: Here's a minimal change: - None of the types defined in this module can be instantiated. + None of the types defined in this module are intended to be instantiated. -- nosy: +rhettinger ___ Python tracker

[issue32133] documentation: numbers module nitpick

2021-05-14 Thread Bhaskara Aditya Sriram
Bhaskara Aditya Sriram added the comment: I would like work on this, but I'm very new to fixing bugs. Could someone please help me on how to proceed with this bug. Thank You in advance -- nosy: +adityasriram.b ___ Python tracker

[issue32133] documentation: numbers module nitpick

2021-05-14 Thread Miguel Brito
Miguel Brito added the comment: Seen that nobody is working on this I transformed the suggestion into a PR. -- nosy: +miguendes ___ Python tracker ___

[issue32133] documentation: numbers module nitpick

2021-05-09 Thread Irit Katriel
Change by Irit Katriel : -- keywords: +easy versions: +Python 3.10, Python 3.11, Python 3.9 -Python 2.7, Python 3.6 ___ Python tracker ___ _

[issue32133] documentation: numbers module nitpick

2021-04-23 Thread Sergey B Kirpichev
Change by Sergey B Kirpichev : -- nosy: +Sergey.Kirpichev ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: htt

[issue32133] documentation: numbers module nitpick

2017-11-25 Thread abcdef
New submission from abcdef : Documentation of the numbers module: https://docs.python.org/3/library/numbers.html states "None of the types defined in this module can be instantiated." This is true for Complex, Real, Rational, Integral but not for Number: >>> numbers.Number() >>> numbers.Real()