summaryrefslogtreecommitdiffstats
path: root/Doc/lib/libnis.tex
diff options
context:
space:
mode:
Diffstat (limited to 'Doc/lib/libnis.tex')
0 files changed, 0 insertions, 0 deletions
le='2021-03-08 20:06:02 (GMT)'>2021-03-081-0/+9 | | | Added an invalidate_caches() method to the zipimport.zipimporter class based on the implementation of importlib.FileFinder.invalidate_caches(). This was done by adding a get_files() method and an _archive_mtime attribute to zipimport.zipimporter to check for updates or cache invalidation whenever the cache of files and toc entry information in the zipimporter is accessed. * bpo-24792: Fix zipimporter masking the cause of import errors (GH-22204)Irit Katriel2020-12-191-5/+4 | | | | | zipimport's _unmarshal_code swallows import errors and then _get_module_code doesn't know the cause of the error, and returns the generic, and sometimes incorrect, 'could not find...'. Automerge-Triggered-By: GH:brettcannon * bpo-42131: Add PEP 451-related methods to zipimport (GH-23187)Brett Cannon2020-11-131-3/+43 | | | | | Specifically, find_spec(), create_module(), and exec_module(). Co-authored-by: Nick Coghlan <ncoghlan@gmail.com> * bpo-21063: Improve module synopsis for distutils (GH-17363)Sanchit Khurana2019-11-25