Ć
ńNö9c       s     d  Z    d k Z  d e i f d     YZ  d e e i f d     YZ # d e e i f d     YZ 0 d   Z d S(	   s   Generic Python Character Mapping Codec.

    Use this codec directly rather than through the automatic
    conversion mechanisms supplied by unicode() and .encode().
    

Written by Marc-Andre Lemburg (mal@lemburg.com).

(c) Copyright CNRI, All Rights Reserved. NO WARRANTY.

Ns   Codecc      s     e  i Z  e  i Z RS(   N(   s   codecss   charmap_encodes   encodes   charmap_decodes   decode(    s.   /mit/python/lib/python2.0/encodings/charmap.pys   Codec s   s   StreamWriterc      s&     d e  d  Z  d d  Z RS(   Nc    s,     t  i i |  t |   | |  _ d  S(   N(   s   codecss   StreamWriters   __init__s   selfs   stricts   errorss   mapping(   s   selfs   streams   errorss   mappings.   /mit/python/lib/python2.0/encodings/charmap.pys   __init__ s   s   strictc    s     ! t  i | | |  i  Sd  S(   N(   s   Codecs   encodes   inputs   errorss   selfs   mapping(   s   selfs   inputs   errorss.   /mit/python/lib/python2.0/encodings/charmap.pys   encode s   (   s   Nones   __init__s   encode(    s.   /mit/python/lib/python2.0/encodings/charmap.pys   StreamWriter s   s   StreamReaderc      s&   # % d e  d  Z * d d  Z RS(   Nc    s,   % ' t  i i |  t |  ( | |  _ d  S(   N(   s   codecss   StreamReaders   __init__s   selfs   stricts   errorss   mapping(   s   selfs   streams   errorss   mappings.   /mit/python/lib/python2.0/encodings/charmap.pys   __init__% s   s   strictc    s    * , t  i | | |  i  Sd  S(   N(   s   Codecs   decodes   inputs   errorss   selfs   mapping(   s   selfs   inputs   errorss.   /mit/python/lib/python2.0/encodings/charmap.pys   decode* s   (   s   Nones   __init__s   decode(    s.   /mit/python/lib/python2.0/encodings/charmap.pys   StreamReader# s   c      s    0 2 t  i t  i t t f Sd  S(   N(   s   Codecs   encodes   decodes   StreamReaders   StreamWriter(    s.   /mit/python/lib/python2.0/encodings/charmap.pys   getregentry0 s   (   s   __doc__s   codecss   Codecs   StreamWriters   StreamReaders   getregentry(    s.   /mit/python/lib/python2.0/encodings/charmap.pys   ? s
   