‡Æ
åMö9c       sJ  d  Z  d Z d Z d Z d Z d k Z d k Z d k l Z d k	 Z	 d k
 Z
 d k Z d k Z d k Z d k l Z d e f d	 „  ƒ  YZ d
 f  d „  ƒ  YZ e	 i d ƒ Z d „  Z d f  d „  ƒ  YZ d e i f d „  ƒ  YZ d e f d „  ƒ  YZ d f  d „  ƒ  YZ d d „ Z d d „ Z d „  Z e d j o e ƒ  n d S(   sŸ	  MH interface -- purely object-oriented (well, almost)

Executive summary:

import mhlib

mh = mhlib.MH()         # use default mailbox directory and profile
mh = mhlib.MH(mailbox)  # override mailbox location (default from profile)
mh = mhlib.MH(mailbox, profile) # override mailbox and profile

mh.error(format, ...)   # print error message -- can be overridden
s = mh.getprofile(key)  # profile entry (None if not set)
path = mh.getpath()     # mailbox pathname
name = mh.getcontext()  # name of current folder
mh.setcontext(name)     # set name of current folder

list = mh.listfolders() # names of top-level folders
list = mh.listallfolders() # names of all folders, including subfolders
list = mh.listsubfolders(name) # direct subfolders of given folder
list = mh.listallsubfolders(name) # all subfolders of given folder

mh.makefolder(name)     # create new folder
mh.deletefolder(name)   # delete folder -- must have no subfolders

f = mh.openfolder(name) # new open folder object

f.error(format, ...)    # same as mh.error(format, ...)
path = f.getfullname()  # folder's full pathname
path = f.getsequencesfilename() # full pathname of folder's sequences file
path = f.getmessagefilename(n)  # full pathname of message n in folder

list = f.listmessages() # list of messages in folder (as numbers)
n = f.getcurrent()      # get current message
f.setcurrent(n)         # set current message
list = f.parsesequence(seq)     # parse msgs syntax into list of messages
n = f.getlast()         # get last message (0 if no messagse)
f.setlast(n)            # set last message (internal use only)

dict = f.getsequences() # dictionary of sequences in folder {name: list}
f.putsequences(dict)    # write sequences back to folder

f.createmessage(n, fp)  # add message from file f as number n
f.removemessages(list)  # remove messages in list from folder
f.refilemessages(list, tofolder) # move messages in list to other folder
f.movemessage(n, tofolder, ton)  # move one message to a given destination
f.copymessage(n, tofolder, ton)  # copy one message to a given destination

m = f.openmessage(n)    # new open message object (costs a file descriptor)
m is a derived class of mimetools.Message(rfc822.Message), with:
s = m.getheadertext()   # text of message's headers
s = m.getheadertext(pred) # text of message's headers, filtered by pred
s = m.getbodytext()     # text of message's body, decoded
s = m.getbodytext(0)    # text of message's body, not decoded
s   ~/.mh_profiles   ~/Mails   .mh_sequencesiÀ  N(   s   ST_NLINK(   s   bisects   Errorc      s   RS(   N(    (    s"   /mit/python/lib/python2.0/mhlib.pys   ErrorX s    s   MHc      sŒ   d  Z  e e d „ Z d „  Z d „  Z d „  Z d „  Z d „  Z d „  Z d „  Z	 d	 „  Z
 d
 „  Z d „  Z d „  Z d „  Z d „  Z RS(   s<  Class representing a particular collection of folders.
    Optional constructor arguments are the pathname for the directory
    containing the collection, and the MH profile to use.
    If either is omitted or empty a default is used; the default
    directory is taken from the MH profile if it is specified there.c    sÒ   | o
 t } n t i i | ƒ |  _  | o |  i d ƒ } n | o
 t } n t i i | ƒ o | d d j o t i i	 d | ƒ } n t i i | ƒ } t i i
 | ƒ o t d ‚ n | |  _ d S(   s   Constructor.s   Pathi    s   ~s   MH() path not foundN(   s   profiles
   MH_PROFILEs   oss   paths
   expandusers   selfs
   getprofiles   PATHs   isabss   joins   isdirs   Error(   s   selfs   paths   profiles"   /mit/python/lib/python2.0/mhlib.pys   __init__c s      
  
% c    s   d |  i |  i f Sd S(   s   String representation.s
   MH(%s, %s)N(   s   selfs   paths   profile(   s   selfs"   /mit/python/lib/python2.0/mhlib.pys   __repr__o s     c    s   t  i i d | | ƒ d S(   sA   Routine to print an error.  May be overridden by a derived class.s   MH error: %s
N(   s   syss   stderrs   writes   msgs   args(   s   selfs   msgs   argss"   /mit/python/lib/python2.0/mhlib.pys   errors s     c    s   t  |  i | ƒ Sd S(   s*   Return a profile entry, None if not found.N(   s   picklines   selfs   profiles   key(   s   selfs   keys"   /mit/python/lib/python2.0/mhlib.pys
   getprofilew s     c    s   |  i Sd S(   s9   Return the path (the name of the collection's directory).N(   s   selfs   path(   s   selfs"   /mit/python/lib/python2.0/mhlib.pys   getpath{ s     c    s>   t  t i i |  i ƒ  d ƒ d ƒ } | o
 d } n | Sd S(   s&   Return the name of the current folder.s   contexts   Current-Folders   inboxN(   s   picklines   oss   paths   joins   selfs   getpaths   context(   s   selfs   contexts"   /mit/python/lib/python2.0/mhlib.pys
   getcontext s     	 
c    sI   t  i i |  i ƒ  d ƒ } t | d ƒ } | i d | ƒ | i
 ƒ  d S(   s#   Set the name of the current folder.s   contexts   ws   Current-Folder: %s
N(   s   oss   paths   joins   selfs   getpaths   fns   opens   fs   writes   contexts   close(   s   selfs   contexts   fns   fs"   /mit/python/lib/python2.0/mhlib.pys
   setcontext† s
     c    sy   g  } |  i ƒ  } xR t i | ƒ d r? } t i i | | ƒ } t i i	 | ƒ o | i
 | ƒ n q$ W| i ƒ  | Sd S(   s*   Return the names of the top-level folders.i    N(   s   folderss   selfs   getpaths   paths   oss   listdirs   names   joins   fullnames   isdirs   appends   sort(   s   selfs   folderss   paths   names   fullnames"   /mit/python/lib/python2.0/mhlib.pys   listfolders s      
c 
   sê   t  i i |  i | ƒ } t  i | ƒ } | t } | d j o g  Sn g  } t  i | ƒ } xz | d rp } t  i i | | ƒ } t  i i | ƒ oB t  i i | | ƒ }	 | i |	 ƒ | d } | d j o Pn n qd W| i ƒ  | Sd S(   sc   Return the names of the subfolders in a given folder
        (prefixed with the given folder name).i   i    i   N(   s   oss   paths   joins   selfs   names   fullnames   stats   sts   ST_NLINKs   nlinkss
   subfolderss   listdirs   subnamess   subnames   fullsubnames   isdirs   name_subnames   appends   sort(
   s   selfs   names   fullnames   sts   nlinkss
   subfolderss   subnamess   subnames   fullsubnames   name_subnames"   /mit/python/lib/python2.0/mhlib.pys   listsubfolders˜ s&     
	 

c    s   |  i d ƒ Sd S(   s<   Return the names of all folders and subfolders, recursively.s    N(   s   selfs   listallsubfolders(   s   selfs"   /mit/python/lib/python2.0/mhlib.pys   listallfolders± s     c    s@  t  i i |  i | ƒ } t  i | ƒ } | t } | d j o g  Sn g  } t  i | ƒ } xÐ | d rÆ } | d d j p
 t | ƒ o qd n t  i i | | ƒ } t  i i | ƒ os t  i i | | ƒ }	 | i |	 ƒ t  i i | ƒ o |  i |	 ƒ }
 | |
 } n | d } | d j o Pn n qd W| i ƒ  | Sd S(   s>   Return the names of subfolders in a given folder, recursively.i   i    s   ,i   N(   s   oss   paths   joins   selfs   names   fullnames   stats   sts   ST_NLINKs   nlinkss
   subfolderss   listdirs   subnamess   subnames	   isnumerics   fullsubnames   isdirs   name_subnames   appends   islinks   listallsubfolderss   subsubfolderss   sort(   s   selfs   names   fullnames   sts   nlinkss
   subfolderss   subnamess   subnames   fullsubnames   name_subnames   subsubfolderss"   /mit/python/lib/python2.0/mhlib.pys   listallsubfoldersµ s0     
	  

c    s   t  |  | ƒ Sd S(   s0   Return a new Folder object for the named folder.N(   s   Folders   selfs   name(   s   selfs   names"   /mit/python/lib/python2.0/mhlib.pys
   openfolderÒ s     c    sk   t  |  i d ƒ } | o
 t | ƒ o t i | d ƒ } n t } t	 i
 t	 i i |  i ƒ  | ƒ | ƒ d S(   s@   Create a new folder (or raise os.error if it cannot be created).s   Folder-Protecti   N(   s   picklines   selfs   profiles   protects	   isnumerics   strings   atois   modes   FOLDER_PROTECTs   oss   mkdirs   paths   joins   getpaths   name(   s   selfs   names   protects   modes"   /mit/python/lib/python2.0/mhlib.pys
   makefolderÖ s     c    s˜   t  i i |  i ƒ  | ƒ } xi t  i | ƒ d rV } t  i i | | ƒ } y t  i
 | ƒ Wn' t  i j
 o |  i d | ƒ n Xq- Wt  i | ƒ d S(   s‡   Delete a folder.  This removes files in the folder but not
        subdirectories.  Raise os.error if deleting the folder itself fails.i    s   %s not deleted, continuing...N(   s   oss   paths   joins   selfs   getpaths   names   fullnames   listdirs   subnames   fullsubnames   unlinks   errors   rmdir(   s   selfs   names   fullnames   subnames   fullsubnames"   /mit/python/lib/python2.0/mhlib.pys   deletefolderß s      (   s   __doc__s   Nones   __init__s   __repr__s   errors
   getprofiles   getpaths
   getcontexts
   setcontexts   listfolderss   listsubfolderss   listallfolderss   listallsubfolderss
   openfolders
   makefolders   deletefolder(    s"   /mit/python/lib/python2.0/mhlib.pys   MH\ s    													s   ^[1-9][0-9]*$c    s   t  i |  ƒ t j	 Sd  S(   N(   s   numericprogs   matchs   strs   None(   s   strs"   /mit/python/lib/python2.0/mhlib.pys	   isnumericî s    s   Folderc      sì   d  Z  d „  Z d „  Z d „  Z d „  Z d „  Z d „  Z d „  Z d „  Z d	 „  Z	 d
 „  Z
 d „  Z d „  Z d „  Z d „  Z d „  Z d „  Z d „  Z d d „ Z d „  Z d „  Z d „  Z d „  Z d „  Z d „  Z d „  Z RS(   s'   Class representing a particular folder.c    sA   | |  _  | |  _ t i i |  i ƒ  ƒ o t d | ‚ n d S(   s   Constructor.s   no folder %sN(   s   mhs   selfs   names   oss   paths   isdirs   getfullnames   Error(   s   selfs   mhs   names"   /mit/python/lib/python2.0/mhlib.pys   __init__ô s
     		c    s   d |  i |  i f Sd S(   s   String representation.s   Folder(%s, %s)N(   s   selfs   mhs   name(   s   selfs"   /mit/python/lib/python2.0/mhlib.pys   __repr__û s     c    s   t  |  i i | ƒ d S(   s   Error message handler.N(   s   applys   selfs   mhs   errors   args(   s   selfs   argss"   /mit/python/lib/python2.0/mhlib.pys   errorÿ s     c    s    t  i i |  i i |  i ƒ Sd S(   s'   Return the full pathname of the folder.N(   s   oss   paths   joins   selfs   mhs   name(   s   selfs"   /mit/python/lib/python2.0/mhlib.pys   getfullnames     c    s   t  i i |  i ƒ  t ƒ Sd S(   s8   Return the full pathname of the folder's sequences file.N(   s   oss   paths   joins   selfs   getfullnames   MH_SEQUENCES(   s   selfs"   /mit/python/lib/python2.0/mhlib.pys   getsequencesfilenames     c    s#   t  i i |  i ƒ  t | ƒ ƒ Sd S(   s4   Return the full pathname of a message in the folder.N(   s   oss   paths   joins   selfs   getfullnames   strs   n(   s   selfs   ns"   /mit/python/lib/python2.0/mhlib.pys   getmessagefilenames     c    s   |  i i |  i ƒ Sd S(   s!   Return list of direct subfolders.N(   s   selfs   mhs   listsubfolderss   name(   s   selfs"   /mit/python/lib/python2.0/mhlib.pys   listsubfolderss     c    s   |  i i |  i ƒ Sd S(   s   Return list of all subfolders.N(   s   selfs   mhs   listallsubfolderss   name(   s   selfs"   /mit/python/lib/python2.0/mhlib.pys   listallsubfolderss     c    s›   g  } t i } | i } x: t i |  i ƒ  ƒ d r! } | | ƒ o | | ƒ n q0 Wt	 t
 i | ƒ } | i ƒ  | o | d |  _ n
 d |  _ | Sd S(   s€   Return the list of messages currently present in the folder.
        As a side effect, set self.last to the last message (or 0).i    i   N(   s   messagess   numericprogs   matchs   appends   oss   listdirs   selfs   getfullnames   names   maps   strings   atois   sorts   last(   s   selfs   messagess   matchs   appends   names"   /mit/python/lib/python2.0/mhlib.pys   listmessagess     		 
	c    s÷   h  } |  i ƒ  } y t | d ƒ } Wn t j
 o | Sn Xx­ d o¥ | i ƒ  } | o Pn t	 i
 | d ƒ } t | ƒ d j o$ |  i d | t	 i | ƒ f ƒ n t	 i | d ƒ } t t	 i | d ƒ d ƒ i ƒ  } | | | <qB W| Sd S(	   s+   Return the set of sequences for the folder.s   ri   s   :i   s   bad sequence in %s: %si    s    N(   s	   sequencess   selfs   getsequencesfilenames   fullnames   opens   fs   IOErrors   readlines   lines   strings   splitfieldss   fieldss   lens   errors   strips   keys   IntSets   tolists   value(   s   selfs	   sequencess   fullnames   fs   lines   fieldss   keys   values"   /mit/python/lib/python2.0/mhlib.pys   getsequences(s&     	  $"c    sÇ   |  i ƒ  } t } xn | i ƒ  d r^ } t d d ƒ } | i
 | | ƒ | o t | d ƒ } n | i d | | i ƒ  f ƒ q! W| o. y t i | ƒ Wn t i j
 o n Xn | i ƒ  d S(   s.   Write the set of sequences back to the folder.i    s    s    s   ws   %s: %s
N(   s   selfs   getsequencesfilenames   fullnames   Nones   fs	   sequencess   keyss   keys   IntSets   ss   fromlists   opens   writes   tostrings   oss   unlinks   errors   close(   s   selfs	   sequencess   fullnames   fs   keys   ss"   /mit/python/lib/python2.0/mhlib.pys   putsequences<s        !	c    sG   |  i ƒ  } y t | d ƒ SWn" t t f j
 o t d ‚ n Xd S(   s<   Return the current message.  Raise Error when there is none.s   curs   no cur messageN(   s   selfs   getsequencess   seqss   maxs
   ValueErrors   KeyErrors   Error(   s   selfs   seqss"   /mit/python/lib/python2.0/mhlib.pys
   getcurrentMs     c    s#   t  |  i ƒ  d t | ƒ d ƒ d S(   s   Set the current message.s   curi    N(   s
   updatelines   selfs   getsequencesfilenames   strs   n(   s   selfs   ns"   /mit/python/lib/python2.0/mhlib.pys
   setcurrentUs     c    s¬  |  i ƒ  } | o t d |  i ‚ n | d j o | Sn t i | d ƒ } | d j oô| |  d | | d f \ } } } | d  d j o | d  | d f \ } } n t | ƒ o t d | ‚ n y t i | ƒ } Wn% t t f j
 o t | ƒ } n Xy |  i | | ƒ } Wn§ t j
 o› }	 |  i ƒ  }
 |
 i | ƒ o0 |	 o d | }	 n t |	 t i ƒ  d	 ‚ n |
 | } | o t d
 | ‚ n | d j o | | Sn	 | |  Sn… X| o! | d d f j o
 d } n n | d j o+ t | | ƒ } | t d | | ƒ | !Sn# t | | d ƒ } | | | | !Sn t i | d ƒ } | d j o€ |  i | |  | ƒ } |  i | | d | ƒ } t | | d ƒ } t | | ƒ } | | | !} | o t d | ‚ n | Sn y |  i | | ƒ } Wn] t j
 oQ }	 |  i ƒ  }
 |
 i | ƒ o# |	 o d | }	 n t |	 ‚ n |
 | SnE X| | j o/ t | ƒ o t d | ‚ n t d | ‚ n | g Sd S(   sä   Parse an MH sequence specification into a message list.
        Attempt to mimic mh-sequence(5) as close as possible.
        Also attempt to mimic observed behavior regarding which
        conditions cause which error messages.s   no messages in %ss   alls   :i    s    i   s   -+s   bad message list %si   s   sequence %s emptys   -s   prevs   lasts   message %d doesn't exists   no %s messageN("   s   selfs   listmessagess   alls   Errors   names   seqs   strings   finds   is   heads   dirs   tails	   isnumerics   atois   counts
   ValueErrors   OverflowErrors   lens   _parseindexs   anchors   msgs   getsequencess   seqss   has_keys   syss   exc_infos   msgss   bisects   maxs   begins   ends   js   rs   n(   s   selfs   seqs   alls   is   heads   dirs   tails   counts   anchors   msgs   seqss   msgss   begins   ends   js   rs   ns"   /mit/python/lib/python2.0/mhlib.pys   parsesequenceYs~     $
c    sv  t  | ƒ o8 y t i | ƒ SWn  t t f j
 o t i Sn Xn | d d f j o |  i	 ƒ  Sn | d j o | d Sn | d j o | d Sn | d j oJ |  i	 ƒ  } t | | ƒ } y | | SWn t j
 o t d ‚ n Xn | d	 j ol |  i	 ƒ  } t | | d ƒ } | d j o t d
 ‚ n y | | d SWn t j
 o t d
 ‚ n Xn t t ‚ d S(   s7   Internal: parse a message number (or cur, first, etc.).s   curs   .s   firsti    s   lasti   s   nexts   no next messages   prevs   no prev messageN(   s	   isnumerics   seqs   strings   atois   OverflowErrors
   ValueErrors   syss   maxints   selfs
   getcurrents   alls   ns   bisects   is
   IndexErrors   Errors   None(   s   selfs   seqs   alls   ns   is"   /mit/python/lib/python2.0/mhlib.pys   _parseindex­s:     c    s   t  |  | ƒ Sd S(   s+   Open a message -- returns a Message object.N(   s   Messages   selfs   n(   s   selfs   ns"   /mit/python/lib/python2.0/mhlib.pys   openmessageÌs     c    s  g  } g  } x« | d r¡ } |  i | ƒ } |  i d t | ƒ ƒ } y t	 i
 | ƒ Wn t	 i j
 o n Xy t	 i | | ƒ Wn% t	 i j
 o } | i | ƒ n X| i | ƒ q W| o |  i | ƒ n | o= t | ƒ d j o t	 i | d ‚ n t	 i d | f ‚ n d S(   s2   Remove one or more messages -- may raise os.error.i    s   ,i   s   multiple errors:N(   s   errorss   deleteds   lists   ns   selfs   getmessagefilenames   paths   strs	   commapaths   oss   unlinks   errors   renames   msgs   appends   removefromallsequencess   len(   s   selfs   lists   errorss   deleteds   ns   paths	   commapaths   msgs"   /mit/python/lib/python2.0/mhlib.pys   removemessagesÐs,     	 c    s”  g  } h  } xþ | d rô } | i ƒ  d } |  i | ƒ } | i | ƒ }	 y t i | |	 ƒ Wn’ t i j
 oƒ y! t i | |	 ƒ t i | ƒ WnX t t i f j
 oC }
 | i |
 ƒ y t i |	 ƒ Wn t i j
 o n Xq n Xn X| i | ƒ | | | <q W| o8 | o | i |  | i ƒ  ƒ n |  i | i ƒ  ƒ n | o= t | ƒ d j o t i | d ‚ n t i d | f ‚ n d S(   s_   Refile one or more messages -- may raise os.error.
        'tofolder' is an open folder object.i    i   s   multiple errors:N(   s   errorss   refileds   lists   ns   tofolders   getlasts   tons   selfs   getmessagefilenames   paths   topaths   oss   renames   errors   shutils   copy2s   unlinks   IOErrors   msgs   appends   setlasts   keepsequencess   _copysequencess   itemss   removefromallsequencess   keyss   len(   s   selfs   lists   tofolders   keepsequencess   errorss   refileds   ns   tons   paths   topaths   msgs"   /mit/python/lib/python2.0/mhlib.pys   refilemessagesés>     	 i    c    sÜ   | i ƒ  } |  i ƒ  } d } xŸ | i ƒ  d r \ } } y | | } d }	 Wn g  } d }	 n Xx: | d r0 \ }
 } |
 | j o | i | ƒ d } n ql W|	 o | o | | | <n q- W| o |  i | ƒ n d S(   s.   Helper for refilemessages() to copy sequences.i    i   N(   s
   fromfolders   getsequencess   fromsequencess   selfs   tosequencess   changeds   itemss   names   seqs   toseqs   news   refileditemss   fromns   tons   appends   putsequences(   s   selfs
   fromfolders   refileditemss   fromsequencess   tosequencess   changeds   names   seqs   toseqs   news   fromns   tons"   /mit/python/lib/python2.0/mhlib.pys   _copysequencess*      


	 c 	   s,  |  i | ƒ } t | ƒ } | i ƒ  ~ | i | ƒ } | i d | ƒ } y t i | | ƒ Wn t i j
 o n Xy t i | | ƒ WnŠ t i j
 o{ d } z' | i t ƒ t i | | ƒ d } Wd | o. y t i | ƒ Wn t i j
 o n Xn Xt i | ƒ n X|  i | g ƒ d S(   sa   Move one message over a specific destination message,
        which may or may not already exist.s   ,%di    i   N(   s   selfs   getmessagefilenames   ns   paths   opens   fs   closes   tofolders   tons   topaths   backuptopaths   oss   renames   errors   oks   setlasts   Nones   shutils   copy2s   unlinks   removefromallsequences(	   s   selfs   ns   tofolders   tons   paths   fs   topaths   backuptopaths   oks"   /mit/python/lib/python2.0/mhlib.pys   movemessage!s6     

 
c 	   sâ   |  i | ƒ } t | ƒ } | i ƒ  ~ | i | ƒ } | i d | ƒ } y t i | | ƒ Wn t i j
 o n Xd } z' | i t ƒ t i | | ƒ d } Wd | o. y t i | ƒ Wn t i j
 o n Xn Xd S(   sa   Copy one message over a specific destination message,
        which may or may not already exist.s   ,%di    i   N(   s   selfs   getmessagefilenames   ns   paths   opens   fs   closes   tofolders   tons   topaths   backuptopaths   oss   renames   errors   oks   setlasts   Nones   shutils   copy2s   unlink(	   s   selfs   ns   tofolders   tons   paths   fs   topaths   backuptopaths   oks"   /mit/python/lib/python2.0/mhlib.pys   copymessageAs,     

 c 	   sø   |  i | ƒ } |  i d | ƒ } y t i | | ƒ Wn t i j
 o n Xd } d d } z[ t
 | d ƒ } x5 d o- | i | ƒ } | o Pn | i | ƒ qt W| i ƒ  d } Wd | o. y t i | ƒ Wn t i j
 o n Xn Xd S(   s3   Create a message, with text from the open file txt.s   ,%di    i   i   s   wi   N(   s   selfs   getmessagefilenames   ns   paths
   backuppaths   oss   renames   errors   oks   BUFSIZEs   opens   fs   txts   reads   bufs   writes   closes   unlink(	   s   selfs   ns   txts   paths
   backuppaths   oks   BUFSIZEs   fs   bufs"   /mit/python/lib/python2.0/mhlib.pys   createmessage[s2     
 

 c    sÕ   t  |  d ƒ o |  i | j o
 |  ` n |  i ƒ  } d } xz | i ƒ  d rj \ } } | d j o qK n xG | d r= } | | j o* | i | ƒ d } | o | | =n n qt WqK W| o |  i | ƒ n d S(   s`   Remove one or more messages from all sequences (including last)
        -- but not from 'cur'!!!s   lasti    s   curi   N(   s   hasattrs   selfs   lasts   lists   getsequencess	   sequencess   changeds   itemss   names   seqs   ns   removes   putsequences(   s   selfs   lists	   sequencess   changeds   names   seqs   ns"   /mit/python/lib/python2.0/mhlib.pys   removefromallsequencesus$      
 	 c    s,   t  |  d ƒ o |  i ƒ  } n |  i Sd S(   s   Return the last message number.s   lastN(   s   hasattrs   selfs   listmessagess   messagess   last(   s   selfs   messagess"   /mit/python/lib/python2.0/mhlib.pys   getlastˆs     c    s8   | t j o t |  d ƒ o
 |  `  n n
 | |  _  d S(   s   Set the last message number.s   lastN(   s   lasts   Nones   hasattrs   self(   s   selfs   lasts"   /mit/python/lib/python2.0/mhlib.pys   setlastŽs
     (   s   __doc__s   __init__s   __repr__s   errors   getfullnames   getsequencesfilenames   getmessagefilenames   listsubfolderss   listallsubfolderss   listmessagess   getsequencess   putsequencess
   getcurrents
   setcurrents   parsesequences   _parseindexs   openmessages   removemessagess   refilemessagess   _copysequencess   movemessages   copymessages   createmessages   removefromallsequencess   getlasts   setlast(    s"   /mit/python/lib/python2.0/mhlib.pys   Folderñ s4    														T			#		 				s   Messagec      sA   e  d „ Z d „  Z e  d „ Z d d „ Z d „  Z d „  Z RS(   Nc    sS   | |  _ | |  _ | o" | i | ƒ } t | d ƒ } n t	 i
 i |  | ƒ d S(   s   Constructor.s   rN(   s   fs   selfs   folders   ns   numbers   fps   getmessagefilenames   paths   opens	   mimetoolss   Messages   __init__(   s   selfs   fs   ns   fps   paths"   /mit/python/lib/python2.0/mhlib.pys   __init__˜s     		c    s   d t  |  i ƒ |  i f Sd S(   s   String representation.s   Message(%s, %s)N(   s   reprs   selfs   folders   number(   s   selfs"   /mit/python/lib/python2.0/mhlib.pys   __repr__¡s     c    sÁ   | o t i |  i d ƒ Sn g  } d } x |  i d rr } | d t i j o@ t i | d ƒ } | d j o | t i
 | |  ƒ ƒ } n n | o | i | ƒ n q7 Wt i | d ƒ Sd S(   sá   Return the message's header text as a string.  If an
        argument is specified, it is used as a filter predicate to
        decide which headers to return (its argument is the header
        name converted to lower case).s    i    s   :N(   s   preds   strings
   joinfieldss   selfs   headerss   hits   lines
   whitespaces   finds   is   lowers   append(   s   selfs   preds   headerss   hits   lines   is"   /mit/python/lib/python2.0/mhlib.pys   getheadertext¥s      ! c    s‹   |  i i |  i ƒ |  i ƒ  } | p | d d d d f j o |  i i ƒ  Sn d k l } | ƒ  } t
 i |  i | | ƒ | i ƒ  Sd S(   sß   Return the message's body text as string.  This undoes a
        Content-Transfer-Encoding, but does not interpret other MIME
        features (e.g. multipart messages).  To suppress decoding,
        pass 0 as an argument.s    s   7bits   8bits   binary(   s   StringION(   s   selfs   fps   seeks   startofbodys   getencodings   encodings   decodes   reads   StringIOs   outputs	   mimetoolss   getvalue(   s   selfs   decodes   encodings   StringIOs   outputs"   /mit/python/lib/python2.0/mhlib.pys   getbodytext¶s     !	i   c    sç   |  i ƒ  d j o t d ‚ n |  i d ƒ } | o t d ‚ n |  i i |  i ƒ t i	 |  i ƒ } | i | ƒ g  } xV | i ƒ  oH t |  i ƒ d d t | ƒ } t |  i | | ƒ } | i | ƒ q W| i ƒ  | Sd S(   s¥   Only for multipart messages: return the message's body as a
        list of SubMessage objects.  Each submessage object behaves
        (almost) as a Message object.s	   multiparts   Content-Type is not multipart/*s   boundarys"   multipart/* without boundary params   .i   N(   s   selfs   getmaintypes   Errors   getparams   bdrys   fps   seeks   startofbodys	   multifiles	   MultiFiles   mfs   pushs   partss   nexts   strs   numbers   lens   ns
   SubMessages   folders   parts   appends   pop(   s   selfs   bdrys   mfs   partss   ns   parts"   /mit/python/lib/python2.0/mhlib.pys   getbodypartsÄs"      "
c    s/   |  i ƒ  d j o |  i ƒ  Sn |  i ƒ  Sd S(   s3   Return body, either a string or a list of messages.s	   multipartN(   s   selfs   getmaintypes   getbodypartss   getbodytext(   s   selfs"   /mit/python/lib/python2.0/mhlib.pys   getbodyØs     (   s   Nones   __init__s   __repr__s   getheadertexts   getbodytexts   getbodypartss   getbody(    s"   /mit/python/lib/python2.0/mhlib.pys   Message–s    			s
   SubMessagec      s2   d „  Z  d „  Z d d „ Z d „  Z d „  Z RS(   Nc    sm   t  i |  | | | ƒ |  i ƒ  d j o t  i |  ƒ |  _ n t  i	 |  ƒ |  _ t  i	 |  d d ƒ|  _
 d S(   s   Constructor.s	   multiparts   decodei    N(   s   Messages   __init__s   selfs   fs   ns   fps   getmaintypes   getbodypartss   bodys   getbodytexts   bodyencoded(   s   selfs   fs   ns   fps"   /mit/python/lib/python2.0/mhlib.pys   __init__âs     c    s6   |  i |  i |  i f \ } } } d | | | f Sd S(   s   String representation.s   SubMessage(%s, %s, %s)N(   s   selfs   folders   numbers   fps   fs   n(   s   selfs   fs   ns   fps"   /mit/python/lib/python2.0/mhlib.pys   __repr__ìs     !c    s>   | o |  i Sn t |  i ƒ t d ƒ j o |  i Sn d  S(   Ns    (   s   decodes   selfs   bodyencodeds   types   body(   s   selfs   decodes"   /mit/python/lib/python2.0/mhlib.pys   getbodytextñs    i   c    s+   t  |  i ƒ t  g  ƒ j o |  i Sn d  S(   N(   s   types   selfs   body(   s   selfs"   /mit/python/lib/python2.0/mhlib.pys   getbodyparts÷s    c    s   |  i Sd  S(   N(   s   selfs   body(   s   selfs"   /mit/python/lib/python2.0/mhlib.pys   getbodyûs    (   s   __init__s   __repr__s   getbodytexts   getbodypartss   getbody(    s"   /mit/python/lib/python2.0/mhlib.pys
   SubMessageàs
    	
		s   IntSetc      s¡   d  Z  e d d d „ Z d „  Z d „  Z d „  Z d „  Z d „  Z d	 „  Z d
 „  Z	 d „  Z
 d „  Z d „  Z d „  Z d „  Z d „  Z d „  Z d „  Z RS(   s÷  Class implementing sets of integers.

    This is an efficient representation for sets consisting of several
    continuous ranges, e.g. 1-100,200-400,402-1000 is represented
    internally as a list of three pairs: [(1,100), (200,400),
    (402,1000)].  The internal representation is always kept normalized.

    The constructor has up to three arguments:
    - the string used to initialize the set (default ''),
    - the separator between ranges (default ',')
    - the separator between begin and end of a range (default '-')
    The separators must be strings (not regexprs) and should be different.

    The tostring() function yields a string that can be passed to another
    IntSet constructor; __repr__() is a valid IntSet constructor itself.
    c    s7   g  |  _ | |  _ | |  _ | o |  i | ƒ n d  S(   N(   s   selfs   pairss   seps   rngs   datas
   fromstring(   s   selfs   datas   seps   rngs"   /mit/python/lib/python2.0/mhlib.pys   __init__s
    			 s   ,s   -c    s   g  |  _ d  S(   N(   s   selfs   pairs(   s   selfs"   /mit/python/lib/python2.0/mhlib.pys   resets    c    s   t  |  i | i ƒ Sd  S(   N(   s   cmps   selfs   pairss   other(   s   selfs   others"   /mit/python/lib/python2.0/mhlib.pys   __cmp__s    c    s   t  |  i ƒ Sd  S(   N(   s   hashs   selfs   pairs(   s   selfs"   /mit/python/lib/python2.0/mhlib.pys   __hash__"s    c    s$   d |  i ƒ  |  i |  i f Sd  S(   Ns   IntSet(%s, %s, %s)(   s   selfs   tostrings   seps   rng(   s   selfs"   /mit/python/lib/python2.0/mhlib.pys   __repr__%s    c    s¨   |  i i ƒ  d } xŽ | t |  i ƒ j  ow |  i | d \ } } |  i | \ } } | | d j o. | t	 | | ƒ f g |  i | d | d +n | d } q Wd  S(   Ni   (
   s   selfs   pairss   sorts   is   lens   alos   ahis   blos   bhis   max(   s   selfs   is   alos   ahis   blos   bhis"   /mit/python/lib/python2.0/mhlib.pys	   normalize)s     .c    sw   d } xf |  i d rY \ } } | | j o | } n | |  i | } | o | |  i | } n | } q W| Sd  S(   Ns    i    (   s   ss   selfs   pairss   los   his   ts   rngs   sep(   s   selfs   ss   los   his   ts"   /mit/python/lib/python2.0/mhlib.pys   tostring4s       
c    sG   g  } x6 |  i d r) \ } } t | | d ƒ } | | } q W| Sd  S(   Ni    i   (   s   ls   selfs   pairss   los   his   ranges   m(   s   selfs   ls   los   his   ms"   /mit/python/lib/python2.0/mhlib.pys   tolist=s     c    s$   x | d r } |  i | ƒ q	 Wd  S(   Ni    (   s   lists   is   selfs   append(   s   selfs   lists   is"   /mit/python/lib/python2.0/mhlib.pys   fromlistDs    	 c    s   t  ƒ  } |  i | _ | Sd  S(   N(   s   IntSets   news   selfs   pairs(   s   selfs   news"   /mit/python/lib/python2.0/mhlib.pys   cloneHs    	c    s   |  i d d Sd  S(   Ni    (   s   selfs   pairs(   s   selfs"   /mit/python/lib/python2.0/mhlib.pys   minMs    c    s   |  i d d Sd  S(   Ni   (   s   selfs   pairs(   s   selfs"   /mit/python/lib/python2.0/mhlib.pys   maxPs    c    sJ   x? |  i d r2 \ } } | | j o
 | j n o d Sn q Wd Sd  S(   Ni    i   (   s   selfs   pairss   los   his   x(   s   selfs   xs   los   his"   /mit/python/lib/python2.0/mhlib.pys   containsSs
      c    s‰  x	t  t |  i ƒ ƒ d rð } |  i | \ } } | | j  oµ | d | j o | | f |  i | <n |  i i | | | f ƒ | d j o | d |  i | d d j o? |  i | d d |  i | d f g |  i | d | d +n d  Sn | | j o d  Sn q Wt |  i ƒ d } | d j oC |  i | \ } } | d | j o | | f |  i | <d  Sn n |  i i	 | | f ƒ d  S(   Ni    i   (
   s   ranges   lens   selfs   pairss   is   los   his   xs   inserts   append(   s   selfs   xs   is   los   his"   /mit/python/lib/python2.0/mhlib.pys   appendXs&     -?c    s9   | | j o d  Sn |  i i | | f ƒ |  i ƒ  d  S(   N(   s   xlos   xhis   selfs   pairss   appends	   normalize(   s   selfs   xlos   xhis"   /mit/python/lib/python2.0/mhlib.pys   addpairqs     c    s  d  k  } g  } xî | i | |  i ƒ d rÕ } g  } xD | i | |  i ƒ d r+ } | i
 | ƒ } | i | i | ƒ ƒ qK Wt | ƒ d j o | i | d | d f ƒ nQ t | ƒ d j o | d | d j o | i | d | d f ƒ n
 t d ‚ q' W|  i | |  _ |  i ƒ  d  S(   Ni    i   i   s   bad data passed to IntSet(   s   strings   news   splitfieldss   datas   selfs   seps   parts   lists   rngs   subps   strips   ss   appends   atois   lens
   ValueErrors   pairss	   normalize(   s   selfs   datas   strings   news   parts   lists   subps   ss"   /mit/python/lib/python2.0/mhlib.pys
   fromstringvs     	  ((   s   __doc__s   Nones   __init__s   resets   __cmp__s   __hash__s   __repr__s	   normalizes   tostrings   tolists   fromlists   clones   mins   maxs   containss   appends   addpairs
   fromstring(    s"   /mit/python/lib/python2.0/mhlib.pys   IntSetÿs"    															c    s  y t  |  d ƒ } Wn t j
 o t Sn Xt i | ƒ d } t i	 | | o t i ƒ } x  d o˜ | i ƒ  } | o Pn | i | ƒ ok | t | ƒ d } xC d o; | i ƒ  } | p | d t i j o Pn | | } q¦ Wt i | ƒ Sn q_ Wt Sd  S(   Ns   rs   :i   i    (   s   opens   files   fs   IOErrors   Nones   res   escapes   keys   pats   compiles   casefolds
   IGNORECASEs   progs   readlines   lines   matchs   lens   texts   strings
   whitespaces   strip(   s   files   keys   casefolds   fs   pats   progs   lines   texts"   /mit/python/lib/python2.0/mhlib.pys   picklineŠs*    	   i   c    sp  y) t  |  d ƒ } | i ƒ  } | i ƒ  Wn t j
 o g  } n Xt i | ƒ d } t i | | o t i ƒ } | t j o
 t } n d | | f } x{ t t | ƒ ƒ d rG }	 | |	 }
 | i |
 ƒ o' | t j o | |	 =n | | |	 <Pn q° W| t j	 o | i | ƒ n |  d } t  | d ƒ } x | d r }
 | i |
 ƒ q;W| i ƒ  t i | |  ƒ d  S(   Ns   rs   :(.*)
s   %s: %s
i    s   ~s   w(   s   opens   files   fs	   readliness   liness   closes   IOErrors   res   escapes   keys   pats   compiles   casefolds
   IGNORECASEs   progs   values   Nones   newlines   ranges   lens   is   lines   matchs   appends   tempfiles   writes   oss   rename(   s   files   keys   values   casefolds   fs   liness   pats   progs   newlines   is   lines   tempfiles"   /mit/python/lib/python2.0/mhlib.pys
   updatelinežs8    
 

	
	 
c  	   s  t  i d ƒ t ƒ  a d „  }  |  d ƒ |  d ƒ d d d d d	 d
 g } x | d r } |  d | ƒ qT W|  d ƒ |  d ƒ t i d ƒ a |  d ƒ |  d ƒ |  d ƒ t i	 ƒ  } t d d ƒ i ƒ  | d <| GHt i | ƒ |  d ƒ | i ƒ  x | d r } |  d | ƒ qW|  d ƒ t i ƒ  } t i | ƒ a |  d ƒ x» d d d d d d d d d  d! d" d# d$ d% d& d' d( d) d* g d rx } y |  d+ | ƒ Wn t j
 o } d, G| GHn Xt  i d- | ƒ i ƒ  } t t i t i | ƒ ƒ } | Gd. GHqŒW|  d/ ƒ d  S(0   Ns   rm -rf $HOME/Mail/@testc    s   |  GHt |  ƒ GHd  S(   N(   s   ss   eval(   s   ss"   /mit/python/lib/python2.0/mhlib.pys   doÄs    s   mh.listfolders()s   mh.listallfolders()s   @tests   @test/test1s   @test/test2s   @test/test1/test11s   @test/test1/test12s   @test/test1/test11/test111i    s   mh.makefolder(%s)s   mh.listsubfolders('@test')s   mh.listallsubfolders('@test')s   f.listsubfolders()s   f.listallsubfolders()s   f.getsequences()s
   1-10 12-20s    s   foos   mh.deletefolder(%s)s   mh.getcontext()s   f.getcurrent()s   firsts   lasts   curs   .s   prevs   nexts   first:3s   last:3s   cur:3s   cur:-3s   prev:3s   next:3s   1:3s   1:-3s   100:3s   100:-3s   10000:3s   10000:-3s   alls   f.parsesequence(%s)s   Error:s   pick %s 2>/dev/nulls   <-- picks   f.listmessages()(   s   oss   systems   MHs   mhs   dos   testfolderss   ts
   openfolders   fs   getsequencess   seqss   IntSets   tolists   putsequencess   reverses
   getcontexts   contexts   seqs   Errors   msgs   popens   reads   stuffs   maps   strings   atois   splits   list(	   s   dos   testfolderss   ts   seqss   contexts   seqs   msgs   stuffs   lists"   /mit/python/lib/python2.0/mhlib.pys   testÀsN     		

	  






	  

B s   __main__(   s   __doc__s
   MH_PROFILEs   PATHs   MH_SEQUENCESs   FOLDER_PROTECTs   oss   syss   stats   ST_NLINKs   res   strings	   mimetoolss	   multifiles   shutils   bisects	   Exceptions   Errors   MHs   compiles   numericprogs	   isnumerics   Folders   Messages
   SubMessages   IntSets   picklines
   updatelines   tests   __name__(    s"   /mit/python/lib/python2.0/mhlib.pys   ?6 s6   							‘	ÿ ¦J‹"	+