File: //usr/lib/python2.4/site-packages/dns/tokenizer.pyc
mò
ÚOc @ sý d Z d k Z d k Z d k Z d k Z d k Z h d e <d e <d e <d e <d e <d e <d e <Z h d e <Z d Z
d
Z d Z d Z
d
Z d Z d Z d e i i f d „ ƒ YZ d e f d „ ƒ YZ d e f d „ ƒ YZ d S( s Tokenize DNS master file formatNt s s
t ;t (t )t "i i i i i i i t UngetBufferFullc B s t Z d Z RS( sR Raised when an attempt is made to unget a token when the unget
buffer is full.( t __name__t
__module__t __doc__( ( ( t1 /usr/lib/python2.4/site-packages/dns/tokenizer.pyR , s t Tokenc B s¤ t Z d Z d 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 d „ Z d „ Z RS( sê A DNS master file format token.
@ivar ttype: The token type
@type ttype: int
@ivar value: The token value
@type value: string
@ivar has_escape: Does the token value contain escapes?
@type has_escape: bool
t c C s | | _ | | _ | | _ d S( s Initialize a token instance.
@param ttype: The token type
@type ttype: int
@param value: The token value
@type value: string
@param has_escape: Does the token value contain escapes?
@type has_escape: bool
N( t ttypet selft valuet
has_escape( R
R R R ( ( R t __init__<