Re: Plugin system; imp module head scratch

2004-12-18 Thread Nick Coghlan
Dave wrote: Hi, all, I'm trying to implement a simple plugin framework, with some unexpected results. I'm using Python 2.3.4 on Windows 2000. My script loader.py loads plugin packages from a directory (in this case its own), and checks a variable defined in the package's __init__.py for information

Re: Plugin system; imp module head scratch

2004-12-18 Thread Keith Dart
Dave wrote: Hi, all, I'm trying to implement a simple plugin framework, with some unexpected results. I'm using Python 2.3.4 on Windows 2000. What would be the difference between a "plugin" and a regular Python module? -- ~ Kei

Plugin system; imp module head scratch

2004-12-18 Thread Dave
Hi, all, I'm trying to implement a simple plugin framework, with some unexpected results. I'm using Python 2.3.4 on Windows 2000. My script loader.py loads plugin packages from a directory (in this case its own), and checks a variable defined in the package's __init__.py for information on the pl