;
Οβ"Ic               @   s   d  Z  d d l Z Gd   d e j  Z Gd   d e j  Z Gd   d e j  Z Gd	   d
 e e j  Z Gd   d e e j  Z d   Z d S(   u5   Python 'undefined' Codec

    This codec will always raise a ValueError exception when being
    used. It is intended for use by the site.py file to switch off
    automatic string to Unicode coercion.

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

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

i    Nc             B   s&   |  Ee  Z d  d  Z d  d  Z d S(   u   strictc             C   s   t  d   d  S(   Nu   undefined encoding(   u   UnicodeError(   u   selfu   inputu   errors(    (    u0   /mit/python/lib/python3.0/encodings/undefined.pyu   encode   s    c             C   s   t  d   d  S(   Nu   undefined encoding(   u   UnicodeError(   u   selfu   inputu   errors(    (    u0   /mit/python/lib/python3.0/encodings/undefined.pyu   decode   s    N(   u   __name__u
   __module__u   encodeu   decode(   u
   __locals__(    (    u0   /mit/python/lib/python3.0/encodings/undefined.pyu   Codec   s   
u   Codecc             B   s   |  Ee  Z d d   Z d S(   c             C   s   t  d   d  S(   Nu   undefined encoding(   u   UnicodeError(   u   selfu   inputu   final(    (    u0   /mit/python/lib/python3.0/encodings/undefined.pyu   encode   s    NF(   u   __name__u
   __module__u   Falseu   encode(   u
   __locals__(    (    u0   /mit/python/lib/python3.0/encodings/undefined.pyu   IncrementalEncoder   s   
u   IncrementalEncoderc             B   s   |  Ee  Z d d   Z d S(   c             C   s   t  d   d  S(   Nu   undefined encoding(   u   UnicodeError(   u   selfu   inputu   final(    (    u0   /mit/python/lib/python3.0/encodings/undefined.pyu   decode   s    NF(   u   __name__u
   __module__u   Falseu   decode(   u
   __locals__(    (    u0   /mit/python/lib/python3.0/encodings/undefined.pyu   IncrementalDecoder   s   
u   IncrementalDecoderc             B   s   |  Ee  Z d  S(   N(   u   __name__u
   __module__(   u
   __locals__(    (    u0   /mit/python/lib/python3.0/encodings/undefined.pyu   StreamWriter    s   
u   StreamWriterc             B   s   |  Ee  Z d  S(   N(   u   __name__u
   __module__(   u
   __locals__(    (    u0   /mit/python/lib/python3.0/encodings/undefined.pyu   StreamReader#   s   
u   StreamReaderc               C   s@   t  j d d d t   j d t   j d t d t d t d t  S(	   Nu   nameu	   undefinedu   encodeu   decodeu   incrementalencoderu   incrementaldecoderu   streamwriteru   streamreader(	   u   codecsu	   CodecInfou   Codecu   encodeu   decodeu   IncrementalEncoderu   IncrementalDecoderu   StreamWriteru   StreamReader(    (    (    u0   /mit/python/lib/python3.0/encodings/undefined.pyu   getregentry(   s    	(   u   __doc__u   codecsu   Codecu   IncrementalEncoderu   IncrementalDecoderu   StreamWriteru   StreamReaderu   getregentry(    (    (    u0   /mit/python/lib/python3.0/encodings/undefined.pyu   <module>   s   