Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Added docstring by Neal Norwitz. This closes SF bug #450979. | Fred Drake | 2001-09-04 | 1 | -4/+10 |
| | |||||
* | Patch #443337: Fix incompatibilities in imputil's behavior. | Martin v. Löwis | 2001-07-28 | 1 | -1/+9 |
| | |||||
* | Remove usage of strop module. | Martin v. Löwis | 2001-07-28 | 1 | -5/+2 |
| | |||||
* | Add an uninstall method to the ImportManager. | Greg Stein | 2001-04-07 | 1 | -1/+9 |
| | | | | This is the accepted portion of patch #402498. | ||||
* | This change makes imputil more closely emulate the standard import | Thomas Heller | 2001-02-12 | 1 | -1/+2 |
| | | | | mechanism to support self-modifying modules. | ||||
* | a few more modules get __all__ | Skip Montanaro | 2001-01-24 | 1 | -0/+2 |
| | |||||
* | Whitespace normalization. | Tim Peters | 2001-01-14 | 1 | -6/+6 |
| | |||||
* | Update the code to better reflect recommended style: | Fred Drake | 2000-12-12 | 1 | -2/+2 |
| | | | | | Use != instead of <> since <> is documented as "obsolescent". Use "is" and "is not" when comparing with None or type objects. | ||||
* | no changes other than indentation level (now 4) and comment reflow. | Greg Stein | 2000-07-18 | 1 | -485/+490 |
| | | | | use "cvs diff -b" to verify. | ||||
* | now that imputil is in the main Python repository, clean up the header | Greg Stein | 2000-06-26 | 1 | -16/+3 |
| | |||||
* | add TODO section | Greg Stein | 2000-02-19 | 1 | -0/+100 |
| | |||||
* | reduce fsimp coupling: provide fs_imp param to ImportManager constructor, | Greg Stein | 2000-02-18 | 1 | -48/+45 |
| | | | | | | | add clsFilesystemImporter class attribute, alter handling of suffix list convert suffix importers to funcs rather than instances remove backwards compat code: Importer.install and 2-tuple get_code() result values | ||||
* | shift demo importers to importers.py (destined for Demo/ ?) | Greg Stein | 2000-02-18 | 1 | -227/+16 |
| | | | | | | | | switch to isinstance() rather than direct type comparisons removing chaining concept update ImportManager.install() to take an optional namespace to install itself in. this will be useful for setting up rexec environments. minor comment nits | ||||
* | redesign/rebuild around the ImportManager concept. | Greg Stein | 2000-01-03 | 1 | -149/+291 |
| | |||||
* | look for builtins before stuff on the path. | Greg Stein | 1999-11-24 | 1 | -1/+1 |
| | |||||
* | add loading of dynamic library modules. | Greg Stein | 1999-11-24 | 1 | -4/+18 |
| | |||||
* | turn SysPathImporter into PathImporter. | Greg Stein | 1999-11-20 | 1 | -6/+7 |
| | |||||
* | remove the __version__ global. | Greg Stein | 1999-11-20 | 1 | -2/+0 |
| | |||||
* | only put __path__ into package modules. | Greg Stein | 1999-11-20 | 1 | -2/+1 |
| | |||||
* | shift code from DirectoryImporter out to a common area. | Greg Stein | 1999-11-20 | 1 | -64/+231 |
| | | | | | | | | | | | remove use of "os" module (bootstrap issues) and go to the underlying platform-specific modules fix problem in _compile() (trapped wrong error on permission issues) add SysPathImporter and BuiltinImporter put __file__ into modules imported from the filesystem. [backwards compat] put __path__ into modules [backwards compat] oops: it is doing this for all modules, not just packages. comment and tweak to the PackageArchiveImporter | ||||
* | Add some header comments to all the files. | Greg Stein | 1999-11-07 | 1 | -0/+7 |
| | |||||
* | initial checkin for my Python stuff. | Greg Stein | 1999-11-07 | 1 | -0/+492 |