From: Andreas A. <a.a...@th...> - 2001-06-30 14:40:55
|
Hi Justin, > What about this syntax to ship enough information to > import() in order to distinguish "package" from "file": > import('a_file_name') > for importing a "true file object", and > import('package_name:object') > for importing an "object" from a "package"???? Another one could be: Leave import for packages as is: import('binarycloud.core'); import('binarycloud.core.Init); etc. add resource handler for true files: import('file:a_file_name'); .andi |