Python2 support
See original GitHub issueAs we discussed earlier adding legacy python
version support is not much of an effort.
The main difficulty is the manual labour to ensure every .decode()
and .encode()
calls are in place.
However, there are several questions to answer:
- Is
python2
support even needed? - How important it is?
- How should it be tested?
What do you think?
Issue Analytics
- State:
- Created 7 years ago
- Reactions:1
- Comments:5 (5 by maintainers)
Top Results From Across the Web
Sunsetting Python 2
As of January 1st, 2020 no new bug reports, fixes, or changes will be made to Python 2, and Python 2 is no...
Read more >Extended Support Past Python 2 EOL - ActiveState
Support & Security Updates for Python 2.7 ... The Python Software Foundation sunset Python 2 on January 1, 2020. End of Life (EOL)...
Read more >How is Python 2 supported in RHEL after 2020?
The PSF have announced that their "official" support of version 2 of the Python language ends on January 1st 2020 as described at:...
Read more >How to Secure Python 2 Past End of Life (EOL) with ActiveState
Answer: Official support and maintenance for Python 2 ended on January 1, 2020. The Python Software Foundation no longer offers bug fixes and ......
Read more >Sunsetting Python 2 support
The developers of the Python language extended support of Python 2.7 from 2015 to January 1, 2020, recognising that many people were still...
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
@aminalaee The advantage is that the library has no dependencies. If we wanna add support of Python 2 we need to add at least one requirement -
six
, and it’s not good.@lk-geimfari Ok, I thought it was to be done.