Closed
Description
NOTE to make the transition easier, I suggest waiting until we can drop 2.6 support (when pip 10 is released) - see milestone status.
pylib is not actively maintained anymore (last release was end of 2014) and we should slowly move to actively maintained constructs and remove constructs that trip up static code analysis in modern IDEs.
- py.std.[stdlib module]
instead of accessing stdlib modules through this shortcut they should be used as intended (normal import)
see: #592
- py.builtin
This is used as a py2/py3 comaptibility layer, so these should be replaced wiht use of e.g. six
- py.path
Should be replaced with e.g. stdlib pathlib (there is a Python2 backport)
- py.io
TODO
- py.process
TODO
Each part should be addressed in a separate PR.