Message282871
So long as this code block that imports os is avoided, I believe that this can be properly frozen:
+ if not isinstance(path, str):
+ import os
+ path = os.fsdecode(path)
But it should be easy to avoid that code path when the standard library is a zip file.
Otherwise it uses importlib (frozen), marshal (builtin), sys (builtin), time (builtin), and zlib [if present] (extension module). |
|
Date |
User |
Action |
Args |
2016-12-10 20:14:24 | gregory.p.smith | set | recipients:
+ gregory.p.smith, twouters, brett.cannon, vstinner, eric.snow, serhiy.storchaka, diana, superluser, byrnes |
2016-12-10 20:14:24 | gregory.p.smith | set | messageid: <1481400864.35.0.599321958175.issue25711@psf.upfronthosting.co.za> |
2016-12-10 20:14:24 | gregory.p.smith | link | issue25711 messages |
2016-12-10 20:14:24 | gregory.p.smith | create | |
|