[issue28816] Document if zipimport can respect import hooks to load custom files from zip.

2016-12-30 Thread Decorater
Decorater added the comment: OK, Well I just tested and it sadly don't support import hooks that adds support for importing custom file types or file types python does know about with a uncommon extension inside of zip files which is somewhat sad. However if someone was to do something

[issue28816] Document if zipimport can respect import hooks to load custom files from zip.

2016-12-17 Thread Brett Cannon
Brett Cannon added the comment: The cutoff for 3.6.0 has passed, but documentation patches can still go in for 3.6.1 (and 3.5.3). -- ___ Python tracker

[issue28816] Document if zipimport can respect import hooks to load custom files from zip.

2016-12-16 Thread Decorater
Decorater added the comment: Well, Will there be any documentations for this before 3.6 final release or no because this would be nice to know for other people who would like to do something similar. -- ___ Python tracker

[issue28816] Document if zipimport can respect import hooks to load custom files from zip.

2016-11-28 Thread Decorater
Changes by Decorater : -- nosy: +brett.cannon, eric.snow, ncoghlan ___ Python tracker ___

[issue28816] Document if zipimport can respect import hooks to load custom files from zip.

2016-11-28 Thread Decorater
Changes by Decorater : -- nosy: +twouters ___ Python tracker ___ ___ Python-bugs-list

[issue28816] Document if zipimport can respect import hooks to load custom files from zip.

2016-11-28 Thread Decorater
Changes by Decorater : -- nosy: -brett.cannon, eric.snow, ncoghlan, paul.moore, tim.golden, twouters, zach.ware ___ Python tracker

[issue28816] Document if zipimport can respect import hooks to load custom files from zip.

2016-11-28 Thread Steve Dower
Changes by Steve Dower : -- nosy: +brett.cannon, eric.snow, ncoghlan, twouters -steve.dower ___ Python tracker ___

[issue28816] Document if zipimport can respect import hooks to load custom files from zip.

2016-11-28 Thread Decorater
Changes by Decorater : -- components: -Windows ___ Python tracker ___ ___

[issue28816] Document if zipimport can respect import hooks to load custom files from zip.

2016-11-28 Thread Decorater
Changes by Decorater : -- assignee: -> docs@python components: +Documentation -Interpreter Core nosy: +docs@python ___ Python tracker

[issue28816] Document if zipimport can respect import hooks to load custom files from zip.

2016-11-28 Thread Decorater
New submission from Decorater: I am wondering so lets say for example if I was to make a json import hook (code below): from importlib.machinery import FileFinder import json import sys class ExtensionImporter(object): """Base Importer Class.""" def __init__(self, extension_list):