summaryrefslogtreecommitdiff
path: root/scripts/mkstdlibs.py
Commit message (Collapse)AuthorAgeFilesLines
* Fixed #1304: isort 5 no longer recognises as a stdlib module.Timothy Crosley2020-07-081-1/+1
|
* Add missing stdlib modulesTimothy Crosley2020-06-251-1/+2
|
* Ensure posixpath is included in stdlib across versionsTimothy Crosley2020-06-241-1/+1
|
* Update script to include empty user agentTimothy Crosley2020-06-201-1/+2
|
* More fine grained python stdlib inclusionTimothy Crosley2019-10-291-3/+3
|
* Switch from .format to f-string; switch from print to warnings where applicableTimothy Crosley2019-10-271-5/+5
|
* Passing tests!Timothy Crosley2019-10-211-1/+0
|
* Auto-generate the complete list of stdlib modulesJon Dufresne2019-08-241-0/+46
The new script, mkstdlibs.py, uses intersphinx to dump a complete list of Python stdlib modules to the files py3.txt/py27.txt. These files are read by isort to decide if a module should be considered stdlib or not. In the future, if the stdlib changes, the fix is to simply re-run the script. Fixes #985