> > Is it possible to split up a class definition over multiple files? > > Not exactly, but you can do variations of this: ... [subclass a class] > Steven Thanks Steven. I guess I will just preprocess the script: <class.sh> cat partA.py > class.py cat partB >> class.py python class.py </class.sh>