# boxformats: Modular support of various mailbox formats __all__ = [ "pynebox", "mhbox", "flatfilebox" ]#, "unixbox" ] bignames = [ "Pyne Format", "MH Format", "Pyne Flatfile" ]#, "Unix Format" ] BF_PYNEBOX = 0 BF_MHBOX = 1 BF_FLATFILEBOX = 2 BF_UNIXBOX = 3