This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

classification
Title: typing.Text not available in python 3.5.1
Type: Stage: resolved
Components: Documentation Versions: Python 3.7, Python 3.6, Python 3.5
process
Status: closed Resolution: fixed
Dependencies: Superseder:
Assigned To: docs@python Nosy List: Charles Bouchard-Légaré, Jim Fasarakis-Hilliard, Mariatta, docs@python
Priority: normal Keywords: patch

Created on 2017-03-22 14:11 by Charles Bouchard-Légaré, last changed 2022-04-11 14:58 by admin. This issue is now closed.

Pull Requests
URL Status Linked Edit
PR 784 closed Charles Bouchard-Légaré, 2017-03-23 13:55
PR 4573 merged levkivskyi, 2017-11-26 21:17
PR 4574 merged python-dev, 2017-11-26 22:23
Messages (9)
msg289985 - (view) Author: Charles Bouchard-Légaré (Charles Bouchard-Légaré) * Date: 2017-03-22 14:11
The real issue here is that this is not documented in Doc/library/typing.rst.
msg289986 - (view) Author: Jim Fasarakis-Hilliard (Jim Fasarakis-Hilliard) * Date: 2017-03-22 14:23
I'm guessing you might of missed it, `Text` is documented in the docs for Python 3.5 https://docs.python.org/3.5/library/typing.html#typing.Text :-)
msg289987 - (view) Author: Charles Bouchard-Légaré (Charles Bouchard-Légaré) * Date: 2017-03-22 14:25
I mean, what is not documented is 'New in 3.5.2'
msg289994 - (view) Author: Jim Fasarakis-Hilliard (Jim Fasarakis-Hilliard) * Date: 2017-03-22 16:09
Ah I see now, yes, neither are Reversible, Type, NewType, TYPE_CHECKING and DefaultDict. 

Why don't you go ahead an submit a PR for this? :-)
msg289995 - (view) Author: Charles Bouchard-Légaré (Charles Bouchard-Légaré) * Date: 2017-03-22 16:15
Thank you for confirming this.  I'll look into it
msg289997 - (view) Author: Jim Fasarakis-Hilliard (Jim Fasarakis-Hilliard) * Date: 2017-03-22 16:21
That's great, make sure you also take a look at the quick start section of the devguide [1] if you need help in any steps :-)

[1]: https://docs.python.org/devguide/#quick-start
msg307022 - (view) Author: Mariatta (Mariatta) * (Python committer) Date: 2017-11-26 22:23
New changeset 0cd2e81bea639828d7c9a7afc61fb1da9699492c by Mariatta (Ivan Levkivskyi) in branch 'master':
bpo-29879: Update typing documentation. (GH-4573)
https://github.com/python/cpython/commit/0cd2e81bea639828d7c9a7afc61fb1da9699492c
msg307023 - (view) Author: Mariatta (Mariatta) * (Python committer) Date: 2017-11-26 22:27
New changeset cceb0f8d7b3451fb8de03651c979f5ac639b68c0 by Mariatta (Miss Islington (bot)) in branch '3.6':
bpo-29879: Update typing documentation. (GH-4573) (GH-4574)
https://github.com/python/cpython/commit/cceb0f8d7b3451fb8de03651c979f5ac639b68c0
msg307024 - (view) Author: Mariatta (Mariatta) * (Python committer) Date: 2017-11-26 22:30
This has been fixed in the 3.7 and 3.6 branches.
Thanks all!
History
Date User Action Args
2022-04-11 14:58:44adminsetgithub: 74065
2017-11-26 22:30:30Mariattasetstatus: open -> closed
versions: + Python 3.6, Python 3.7
messages: + msg307024

resolution: fixed
stage: patch review -> resolved
2017-11-26 22:27:46Mariattasetmessages: + msg307023
2017-11-26 22:23:17python-devsetpull_requests: + pull_request4502
2017-11-26 22:23:04Mariattasetnosy: + Mariatta
messages: + msg307022
2017-11-26 21:17:04levkivskyisetkeywords: + patch
stage: patch review
pull_requests: + pull_request4501
2017-03-23 13:55:19Charles Bouchard-Légarésetpull_requests: + pull_request688
2017-03-22 16:21:25Jim Fasarakis-Hilliardsetmessages: + msg289997
2017-03-22 16:15:16Charles Bouchard-Légarésetmessages: + msg289995
2017-03-22 16:09:09Jim Fasarakis-Hilliardsetmessages: + msg289994
2017-03-22 14:25:27Charles Bouchard-Légarésetmessages: + msg289987
2017-03-22 14:23:47Jim Fasarakis-Hilliardsetnosy: + Jim Fasarakis-Hilliard
messages: + msg289986
2017-03-22 14:11:25Charles Bouchard-Légarécreate