[David] >> ... >> The problem occurs when trying to paste [I/O Error: not enough space >> on the device] the library (copy command seems to work) or import >> (export seems to work).
[Dieter Maurer] > Hmmm: > > This verbal report does not at all fits to the traceback > below... > > An "IOError: not enough space" is very different from an > "ImportError: No module named Splitter". > > In the future, please try to present consistent information > (traceback and verbal description filling together). Yup! WRT "not enough space on the device" during a paste, I've heard of this happening when the directory used by Python for temporary files lives in (as it often does) a small partition. A temp file created by ExportImport.py can run out of disk space then. Here's to find out which directory Python uses for temp files: [EMAIL PROTECTED] tim]$ python Python 2.3.5 (#1, Feb 16 2005, 10:31:52) ... >>> import tempfile >>> tempfile.gettempdir() '/tmp' If that's on a too-small partition, you can boost the partition size. Or you can tell Python to use a different directory for temp files, via setting an envar (TMPDIR should work for Linux boxes): [EMAIL PROTECTED] tim]$ TMPDIR=~ python Python 2.3.5 (#1, Feb 16 2005, 10:31:52) ... >>> import tempfile >>> tempfile.gettempdir() '/home/tim' _______________________________________________ Zope maillist - [email protected] http://mail.zope.org/mailman/listinfo/zope ** No cross posts or HTML encoding! ** (Related lists - http://mail.zope.org/mailman/listinfo/zope-announce http://mail.zope.org/mailman/listinfo/zope-dev )
