- 24 May, 2017 1 kayıt (commit)
-
-
Garvit Khatri yazdı
-
- 10 May, 2016 1 kayıt (commit)
-
-
Eric Snow yazdı
-
- 16 May, 2014 1 kayıt (commit)
-
-
Eric Snow yazdı
-
- 13 May, 2014 1 kayıt (commit)
-
-
Eric Snow yazdı
-
- 25 Ock, 2014 1 kayıt (commit)
-
-
Eric Snow yazdı
The function is also moved to importlib.util.
-
- 07 Ock, 2014 1 kayıt (commit)
-
-
Eric Snow yazdı
-
- 04 Ock, 2014 1 kayıt (commit)
-
-
Eric Snow yazdı
-
- 10 Ara, 2013 1 kayıt (commit)
-
-
Eric Snow yazdı
-
- 22 Kas, 2013 1 kayıt (commit)
-
-
Eric Snow yazdı
-
- 01 Kas, 2013 2 kayıt (commit)
- 18 Eki, 2013 1 kayıt (commit)
-
-
Brett Cannon yazdı
source.
-
- 15 Agu, 2013 1 kayıt (commit)
-
-
Eric Snow yazdı
-
- 15 Haz, 2013 1 kayıt (commit)
-
-
Brett Cannon yazdı
-
- 14 Haz, 2013 1 kayıt (commit)
-
-
Brett Cannon yazdı
implementing in code) the deprecation of imp.reload(). Thanks to Berker Peksag for the patch.
-
- 04 May, 2013 1 kayıt (commit)
-
-
Brett Cannon yazdı
attributes to None. The long-term goal is for people to be able to rely on these attributes existing and checking for None to see if they have been set. Since import itself sets these attributes when a loader does not the only instances when the attributes are None are from someone overloading __import__() and not using a loader or someone creating a module from scratch. This patch also unifies module initialization. Before you could have different attributes with default values depending on how the module object was created. Now the only way to not get the same default set of attributes is to circumvent initialization by calling ModuleType.__new__() directly.
-
- 13 Mar, 2013 1 kayıt (commit)
-
-
Brett Cannon yazdı
__loader__ is not set on a module. This brings the exception in line with when __loader__ is None (which is equivalent to not having the attribute defined).
-
- 03 Şub, 2013 2 kayıt (commit)
-
-
Brett Cannon yazdı
__loader__ for this test to succeed without a major changes. It also doesn't test the original issue of modules imported by Py_Initialize() having __loader__ set (the rest of the test covers that).
-
Brett Cannon yazdı
scratch. This means they do not set __loader__ by default. This is acceptable under importlib/PEP 302 definitions, so relax the test that was trying to apply this universally.
-
- 01 Şub, 2013 2 kayıt (commit)
-
-
Brett Cannon yazdı
modules. Also made test more rigorous.
-
Brett Cannon yazdı
-
- 10 Agu, 2012 1 kayıt (commit)
-
-
Brett Cannon yazdı
state of the import system. Also make importlib.invalidate_caches() work with sys.meta_path instead of sys.path_importer_cache to completely separate the path-based import system from the overall import system. Patch by Eric Snow.
-
- 20 Tem, 2012 1 kayıt (commit)
-
-
Brett Cannon yazdı
This should make the Linux distros happy as it is now easier to leave importlib's tests out of their base Python distribution.
-
- 04 Tem, 2012 1 kayıt (commit)
-
-
Brett Cannon yazdı
working without _frozen_importlib by moving to an import over a direct access in sys.modules.
-
- 02 Tem, 2012 1 kayıt (commit)
-
-
Brett Cannon yazdı
importlib.__init__, then catch the KeyError raised, not ImportError.
-
- 12 May, 2012 1 kayıt (commit)
-
-
Brett Cannon yazdı
The long-term goal is to deprecate imp.find_module() in favour of this API, but it will take some time as some APIs explicitly return/use what imp.find_module() returns.
-
- 27 Şub, 2012 1 kayıt (commit)
-
-
Brett Cannon yazdı
-
- 15 Ara, 2011 1 kayıt (commit)
-
-
Meador Inge yazdı
-
- 03 Tem, 2010 1 kayıt (commit)
-
-
Brett Cannon yazdı
-
- 27 Agu, 2009 1 kayıt (commit)
-
-
Brett Cannon yazdı
Obviously one shouldn't do whole sale conversions like this, but I was already going through the test code and I was bored at the airport.
-
- 04 Mar, 2009 1 kayıt (commit)
-
-
Brett Cannon yazdı
-
- 07 Şub, 2009 1 kayıt (commit)
-
-
Brett Cannon yazdı
and relies much more on meta path finders to abstract out various parts of import. As part of this the semantics for import_module tightened up and now follow __import__ much more closely (biggest thing is that the 'package' argument must now already be imported, else a SystemError is raised).
-
- 01 Şub, 2009 1 kayıt (commit)
-
-
Brett Cannon yazdı
-
- 18 Ock, 2009 1 kayıt (commit)
-
-
Brett Cannon yazdı
planned for the package. There are no docs yet, but they are coming once the API for the first new function, importlib.import_module() is finalized.
-