Message253959
| Author |
martin.panter |
| Recipients |
brett.cannon, martin.panter, r.david.murray |
| Date |
2015年11月03日.02:51:12 |
| SpamBayes Score |
-1.0 |
| Marked as misclassified |
Yes |
| Message-id |
<1446519073.78.0.411057514244.issue25533@psf.upfronthosting.co.za> |
| In-reply-to |
| Content |
My patch doesn’t handle frozen modules. Maybe we need a new sys.frozen_module_names API, or a sys.list_frozen_module_names() function if it is meant to be dynamic. All I could find was <https://docs.python.org/dev/library/ctypes.html#accessing-values-exported-from-dlls> (which needs updating for Python 3’s byte strings).
A related point: Are built-in packages possible? My patch doesn’t anticipate them either.
If adding a new iter_all_modules() function, there should probably be a matching walk_all_packages() function. But under the hood they would all probably use the same internal functions with a flag. |
|
History
|
|---|
| Date |
User |
Action |
Args |
| 2015年11月03日 02:51:13 | martin.panter | set | recipients:
+ martin.panter, brett.cannon, r.david.murray |
| 2015年11月03日 02:51:13 | martin.panter | set | messageid: <1446519073.78.0.411057514244.issue25533@psf.upfronthosting.co.za> |
| 2015年11月03日 02:51:13 | martin.panter | link | issue25533 messages |
| 2015年11月03日 02:51:12 | martin.panter | create |
|