-
=c       sx    d  Z  
  d Z  d k l Z l Z l Z l Z  d k l Z l	 Z	 l
 Z
 l Z  d k T d k l Z l Z l Z l Z l Z l Z l Z l Z l Z l Z l Z l Z , d e f d     YZ F d f  d	     YZ  d
 f  d     YZ  d f  d     YZ d f  d     YZ Qd f  d     YZ wd e e e e f d     YZ d f  d     YZ  d S(   se  
This module contains the core classes of version 2.0 of SAX for Python.
This file provides only default classes with absolutely minimum
functionality, from which drivers and applications can be subclassed.

Many of these classes are empty and are included only as documentation
of the interfaces.

$Id: saxlib.py,v 1.12 2002/05/10 14:49:21 akuchling Exp $
s   2.0beta(   s   ErrorHandlers   ContentHandlers
   DTDHandlers   EntityResolver(   s	   XMLReaders   InputSources   Locators   IncrementalParser(   s   *(   s   feature_namespacess   feature_namespace_prefixess   feature_string_internings   feature_validations   feature_external_gess   feature_external_pess   all_featuress   property_lexical_handlers   property_declaration_handlers   property_dom_nodes   property_xml_strings   all_propertiess	   XMLFilterc      s5   , d  Z  3 5 e d  Z ; d   Z @ d   Z RS(   sE  Interface for a SAX2 parser filter.

    A parser filter is an XMLReader that gets its events from another
    XMLReader (which may in turn also be a filter) rather than from a
    primary source like a document or other non-SAX data source.
    Filters can modify a stream of events before passing it on to its
    handlers.c    s&   5 7 8 t  i |   9 | |  _ d S(   s\   Creates a filter instance, allowing applications to set the
        parent on instantiation.N(   s	   XMLReaders   __init__s   selfs   parents   _parent(   s   selfs   parent(    (    sA   /usr/local/twc/lib/python2.2/site-packages/_xmlplus/sax/saxlib.pys   __init__5 s   c    s   ; = > | |  _ d S(   sO   Sets the parent XMLReader of this filter. The argument may
        not be None.N(   s   parents   selfs   _parent(   s   selfs   parent(    (    sA   /usr/local/twc/lib/python2.2/site-packages/_xmlplus/sax/saxlib.pys	   setParent; s   c    s   @ A B |  i Sd S(   s"   Returns the parent of this filter.N(   s   selfs   _parent(   s   self(    (    sA   /usr/local/twc/lib/python2.2/site-packages/_xmlplus/sax/saxlib.pys	   getParent@ s   (   s   __doc__s   Nones   __init__s	   setParents	   getParent(    (    (    sA   /usr/local/twc/lib/python2.2/site-packages/_xmlplus/sax/saxlib.pys	   XMLFilter, s   	s
   Attributesc      s   F d  Z  I K d   Z O d   Z S d   Z W d   Z \ d   Z a d   Z f d   Z k d   Z o d	   Z	 s d
   Z
 w d   Z { e d  Z  d   Z  d   Z  d   Z RS(   sc   Interface for a list of XML attributes.

    Contains a list of XML attributes, accessible by name.c    s   K L M t  d   d S(   s-   Returns the number of attributes in the list.s    This method must be implemented!N(   s   NotImplementedError(   s   self(    (    sA   /usr/local/twc/lib/python2.2/site-packages/_xmlplus/sax/saxlib.pys	   getLengthK s   c    s   O P Q t  d   d S(   s6   Returns the type of the attribute with the given name.s    This method must be implemented!N(   s   NotImplementedError(   s   selfs   name(    (    sA   /usr/local/twc/lib/python2.2/site-packages/_xmlplus/sax/saxlib.pys   getTypeO s   c    s   S T U t  d   d S(   s7   Returns the value of the attribute with the given name.s    This method must be implemented!N(   s   NotImplementedError(   s   selfs   name(    (    sA   /usr/local/twc/lib/python2.2/site-packages/_xmlplus/sax/saxlib.pys   getValueS s   c    s   W Y Z t  d   d S(   sR   Returns the value of the attribute with the given raw (or
        qualified) name.s    This method must be implemented!N(   s   NotImplementedError(   s   selfs   name(    (    sA   /usr/local/twc/lib/python2.2/site-packages/_xmlplus/sax/saxlib.pys   getValueByQNameW s   c    s   \ ^ _ t  d   d S(   s[   Returns the namespace name of the attribute with the given
        raw (or qualified) name.s    This method must be implemented!N(   s   NotImplementedError(   s   selfs   name(    (    sA   /usr/local/twc/lib/python2.2/site-packages/_xmlplus/sax/saxlib.pys   getNameByQName\ s   c    s   a c d t  d   d S(   sB   Returns a list of the names of all attributes
        in the list.s    This method must be implemented!N(   s   NotImplementedError(   s   self(    (    sA   /usr/local/twc/lib/python2.2/site-packages/_xmlplus/sax/saxlib.pys   getNamesa s   c    s   f h i t  d   d S(   sP   Returns a list of the raw qualified names of all attributes
        in the list.s    This method must be implemented!N(   s   NotImplementedError(   s   self(    (    sA   /usr/local/twc/lib/python2.2/site-packages/_xmlplus/sax/saxlib.pys	   getQNamesf s   c    s   k l m t  d   d S(   s   Alias for getLength.s    This method must be implemented!N(   s   NotImplementedError(   s   self(    (    sA   /usr/local/twc/lib/python2.2/site-packages/_xmlplus/sax/saxlib.pys   __len__k s   c    s   o p q t  d   d S(   s   Alias for getValue.s    This method must be implemented!N(   s   NotImplementedError(   s   selfs   name(    (    sA   /usr/local/twc/lib/python2.2/site-packages/_xmlplus/sax/saxlib.pys   __getitem__o s   c    s   s t u t  d   d S(   s2   Returns a list of the attribute names in the list.s    This method must be implemented!N(   s   NotImplementedError(   s   self(    (    sA   /usr/local/twc/lib/python2.2/site-packages/_xmlplus/sax/saxlib.pys   keyss s   c    s   w x y t  d   d S(   s6   True if the attribute is in the list, false otherwise.s    This method must be implemented!N(   s   NotImplementedError(   s   selfs   name(    (    sA   /usr/local/twc/lib/python2.2/site-packages/_xmlplus/sax/saxlib.pys   has_keyw s   c    s   { } ~ t  d   d S(   sm   Return the value associated with attribute name; if it is not
        available, then return the alternative.s    This method must be implemented!N(   s   NotImplementedError(   s   selfs   names   alternative(    (    sA   /usr/local/twc/lib/python2.2/site-packages/_xmlplus/sax/saxlib.pys   get{ s   c    s      t  d   d S(   s'   Return a copy of the Attributes object.s    This method must be implemented!N(   s   NotImplementedError(   s   self(    (    sA   /usr/local/twc/lib/python2.2/site-packages/_xmlplus/sax/saxlib.pys   copy s   c    s      t  d   d S(   s/   Return a list of (attribute_name, value) pairs.s    This method must be implemented!N(   s   NotImplementedError(   s   self(    (    sA   /usr/local/twc/lib/python2.2/site-packages/_xmlplus/sax/saxlib.pys   items s   c    s      t  d   d S(   s&   Return a list of all attribute values.s    This method must be implemented!N(   s   NotImplementedError(   s   self(    (    sA   /usr/local/twc/lib/python2.2/site-packages/_xmlplus/sax/saxlib.pys   values s   (   s   __doc__s	   getLengths   getTypes   getValues   getValueByQNames   getNameByQNames   getNamess	   getQNamess   __len__s   __getitem__s   keyss   has_keys   Nones   gets   copys   itemss   values(    (    (    sA   /usr/local/twc/lib/python2.2/site-packages/_xmlplus/sax/saxlib.pys
   AttributesF s    	s   DeclHandlerc      s>    d  Z    d   Z  d   Z  d   Z  d   Z RS(   s  Optional SAX2 handler for DTD declaration events.

    Note that some DTD declarations are already reported through the
    DTDHandler interface. All events reported to this handler will
    occur between the startDTD and endDTD events of the
    LexicalHandler.

    To set the DeclHandler for an XMLReader, use the setProperty method
    with the identifier http://xml.org/sax/handlers/DeclHandler.c    s
     d S(   s  Report an attribute type declaration.

        Only the first declaration will be reported. The type will be
        one of the strings "CDATA", "ID", "IDREF", "IDREFS",
        "NMTOKEN", "NMTOKENS", "ENTITY", "ENTITIES", or "NOTATION", or
        a list of names (in the case of enumerated definitions).

        elem_name is the element type name, attr_name the attribute
        type name, type a string representing the attribute type,
        value_def a string representing the default declaration
        ('#IMPLIED', '#REQUIRED', '#FIXED' or None). value is a string
        representing the attribute's default value, or None if there
        is none.N(    (   s   selfs	   elem_names	   attr_names   types	   value_defs   value(    (    sA   /usr/local/twc/lib/python2.2/site-packages/_xmlplus/sax/saxlib.pys   attributeDecl s   c    s
     d S(   s  Report an element type declaration.

        Only the first declaration will be reported.

        content_model is the string 'EMPTY', the string 'ANY' or the content
        model structure represented as tuple (separator, tokens, modifier)
        where separator is the separator in the token list (that is, '|' or
        ','), tokens is the list of tokens (element type names or tuples
        representing parentheses) and modifier is the quantity modifier
        ('*', '?' or '+').N(    (   s   selfs	   elem_names   content_model(    (    sA   /usr/local/twc/lib/python2.2/site-packages/_xmlplus/sax/saxlib.pys   elementDecl s   
c    s
     d S(   s
  Report an internal entity declaration.

        Only the first declaration of an entity will be reported.

        name is the name of the entity. If it is a parameter entity,
        the name will begin with '%'. value is the replacement text of
        the entity.N(    (   s   selfs   names   value(    (    sA   /usr/local/twc/lib/python2.2/site-packages/_xmlplus/sax/saxlib.pys   internalEntityDecl s   c    s
     d S(   s  Report a parsed entity declaration. (Unparsed entities are
        reported to the DTDHandler.)

        Only the first declaration for each entity will be reported.

        name is the name of the entity. If it is a parameter entity,
        the name will begin with '%'. public_id and system_id are the
        public and system identifiers of the entity. public_id will be
        None if none were declared.N(    (   s   selfs   names	   public_ids	   system_id(    (    sA   /usr/local/twc/lib/python2.2/site-packages/_xmlplus/sax/saxlib.pys   externalEntityDecl s   	(   s   __doc__s   attributeDecls   elementDecls   internalEntityDecls   externalEntityDecl(    (    (    sA   /usr/local/twc/lib/python2.2/site-packages/_xmlplus/sax/saxlib.pys   DeclHandler s
   			s   LexicalHandlerc      sb    d  Z    d   Z  d   Z  d   Z  d   Z d   Z d   Z d   Z RS(   s9  Optional SAX2 handler for lexical events.

    This handler is used to obtain lexical information about an XML
    document, that is, information about how the document was encoded
    (as opposed to what it contains, which is reported to the
    ContentHandler), such as comments and CDATA marked section
    boundaries.

    To set the LexicalHandler of an XMLReader, use the setProperty
    method with the property identifier
    'http://xml.org/sax/handlers/LexicalHandler'. There is no
    guarantee that the XMLReader will support or recognize this
    property.c    s
     d S(   s   Reports a comment anywhere in the document (including the
        DTD and outside the document element).

        content is a string that holds the contents of the comment.N(    (   s   selfs   content(    (    sA   /usr/local/twc/lib/python2.2/site-packages/_xmlplus/sax/saxlib.pys   comment s   c    s
     d S(   s  Report the start of the DTD declarations, if the document
        has an associated DTD.

        A startEntity event will be reported before declaration events
        from the external DTD subset are reported, and this can be
        used to infer from which subset DTD declarations derive.

        name is the name of the document element type, public_id the
        public identifier of the DTD (or None if none were supplied)
        and system_id the system identfier of the external subset (or
        None if none were supplied).N(    (   s   selfs   names	   public_ids	   system_id(    (    sA   /usr/local/twc/lib/python2.2/site-packages/_xmlplus/sax/saxlib.pys   startDTD s   c    s
     d S(   s$   Signals the end of DTD declarations.N(    (   s   self(    (    sA   /usr/local/twc/lib/python2.2/site-packages/_xmlplus/sax/saxlib.pys   endDTD s   c    s
    d S(   s  Report the beginning of an entity.

        The start and end of the document entity is not reported. The
        start and end of the external DTD subset is reported with the
        pseudo-name '[dtd]'.

        Skipped entities will be reported through the skippedEntity
        event of the ContentHandler rather than through this event.

        name is the name of the entity. If it is a parameter entity,
        the name will begin with '%'.N(    (   s   selfs   name(    (    sA   /usr/local/twc/lib/python2.2/site-packages/_xmlplus/sax/saxlib.pys   startEntity s   c    s
   	d S(   s   Reports the end of an entity. name is the name of the
        entity, and follows the same conventions as for
        startEntity.N(    (   s   selfs   name(    (    sA   /usr/local/twc/lib/python2.2/site-packages/_xmlplus/sax/saxlib.pys	   endEntitys   c    s
   d S(   s   Reports the beginning of a CDATA marked section.

        The contents of the CDATA marked section will be reported
        through the characters event.N(    (   s   self(    (    sA   /usr/local/twc/lib/python2.2/site-packages/_xmlplus/sax/saxlib.pys
   startCDATAs   c    s
   d S(   s*   Reports the end of a CDATA marked section.N(    (   s   self(    (    sA   /usr/local/twc/lib/python2.2/site-packages/_xmlplus/sax/saxlib.pys   endCDATAs   (   s   __doc__s   comments   startDTDs   endDTDs   startEntitys	   endEntitys
   startCDATAs   endCDATA(    (    (    sA   /usr/local/twc/lib/python2.2/site-packages/_xmlplus/sax/saxlib.pys   LexicalHandler s   	s   AttributeListc      s   d  Z  %'d   Z *d   Z -d   Z 1d   Z 5d   Z 8d   Z ;d   Z >d   Z Ae	 d	  Z
 Ed
   Z Hd   Z Kd   Z RS(   s  Interface for an attribute list. This interface provides
    information about a list of attributes for an element (only
    specified or defaulted attributes will be reported). Note that the
    information returned by this object will be valid only during the
    scope of the DocumentHandler.startElement callback, and the
    attributes will not necessarily be provided in the order declared
    or specified.c    s
   '(d S(   s(   Return the number of attributes in list.N(    (   s   self(    (    sA   /usr/local/twc/lib/python2.2/site-packages/_xmlplus/sax/saxlib.pys	   getLength's   c    s
   *+d S(   s,   Return the name of an attribute in the list.N(    (   s   selfs   i(    (    sA   /usr/local/twc/lib/python2.2/site-packages/_xmlplus/sax/saxlib.pys   getName*s   c    s
   -/d S(   so   Return the type of an attribute in the list. (Parameter can be
        either integer index or attribute name.)N(    (   s   selfs   i(    (    sA   /usr/local/twc/lib/python2.2/site-packages/_xmlplus/sax/saxlib.pys   getType-s   c    s
   13d S(   sp   Return the value of an attribute in the list. (Parameter can be
        either integer index or attribute name.)N(    (   s   selfs   i(    (    sA   /usr/local/twc/lib/python2.2/site-packages/_xmlplus/sax/saxlib.pys   getValue1s   c    s
   56d S(   s   Alias for getLength.N(    (   s   self(    (    sA   /usr/local/twc/lib/python2.2/site-packages/_xmlplus/sax/saxlib.pys   __len__5s   c    s
   89d S(   sB   Alias for getName (if key is an integer) and getValue (if string).N(    (   s   selfs   key(    (    sA   /usr/local/twc/lib/python2.2/site-packages/_xmlplus/sax/saxlib.pys   __getitem__8s   c    s
   ;<d S(   s&   Returns a list of the attribute names.N(    (   s   self(    (    sA   /usr/local/twc/lib/python2.2/site-packages/_xmlplus/sax/saxlib.pys   keys;s   c    s
   >?d S(   s6   True if the attribute is in the list, false otherwise.N(    (   s   selfs   key(    (    sA   /usr/local/twc/lib/python2.2/site-packages/_xmlplus/sax/saxlib.pys   has_key>s   c    s
   ACd S(   sm   Return the value associated with attribute name; if it is not
        available, then return the alternative.N(    (   s   selfs   keys   alternative(    (    sA   /usr/local/twc/lib/python2.2/site-packages/_xmlplus/sax/saxlib.pys   getAs   c    s
   EFd S(   s#   Return a copy of the AttributeList.N(    (   s   self(    (    sA   /usr/local/twc/lib/python2.2/site-packages/_xmlplus/sax/saxlib.pys   copyEs   c    s
   HId S(   s.   Return a list of (attribute_name,value) pairs.N(    (   s   self(    (    sA   /usr/local/twc/lib/python2.2/site-packages/_xmlplus/sax/saxlib.pys   itemsHs   c    s
   KLd S(   s&   Return a list of all attribute values.N(    (   s   self(    (    sA   /usr/local/twc/lib/python2.2/site-packages/_xmlplus/sax/saxlib.pys   valuesKs   (   s   __doc__s	   getLengths   getNames   getTypes   getValues   __len__s   __getitem__s   keyss   has_keys   Nones   gets   copys   itemss   values(    (    (    sA   /usr/local/twc/lib/python2.2/site-packages/_xmlplus/sax/saxlib.pys   AttributeLists   	s   DocumentHandlerc      sn   Qd  Z  Z\d   Z _d   Z bd   Z ed   Z hd   Z kd   Z nd   Z qd   Z RS(	   s+  Handle general document events. This is the main client
    interface for SAX: it contains callbacks for the most important
    document events, such as the start and end of elements. You need
    to create an object that implements this interface, and then
    register it with the Parser. If you do not want to implement
    the entire interface, you can derive a class from HandlerBase,
    which implements the default functionality. You can find the
    location of any document event using the Locator interface
    supplied by setDocumentLocator().c    s
   \]d S(   s   Handle a character data event.N(    (   s   selfs   chs   starts   length(    (    sA   /usr/local/twc/lib/python2.2/site-packages/_xmlplus/sax/saxlib.pys
   characters\s   c    s
   _`d S(   s*   Handle an event for the end of a document.N(    (   s   self(    (    sA   /usr/local/twc/lib/python2.2/site-packages/_xmlplus/sax/saxlib.pys   endDocument_s   c    s
   bcd S(   s*   Handle an event for the end of an element.N(    (   s   selfs   name(    (    sA   /usr/local/twc/lib/python2.2/site-packages/_xmlplus/sax/saxlib.pys
   endElementbs   c    s
   efd S(   s<   Handle an event for ignorable whitespace in element content.N(    (   s   selfs   chs   starts   length(    (    sA   /usr/local/twc/lib/python2.2/site-packages/_xmlplus/sax/saxlib.pys   ignorableWhitespacees   c    s
   hid S(   s&   Handle a processing instruction event.N(    (   s   selfs   targets   data(    (    sA   /usr/local/twc/lib/python2.2/site-packages/_xmlplus/sax/saxlib.pys   processingInstructionhs   c    s
   kld S(   sA   Receive an object for locating the origin of SAX document events.N(    (   s   selfs   locator(    (    sA   /usr/local/twc/lib/python2.2/site-packages/_xmlplus/sax/saxlib.pys   setDocumentLocatorks   c    s
   nod S(   s0   Handle an event for the beginning of a document.N(    (   s   self(    (    sA   /usr/local/twc/lib/python2.2/site-packages/_xmlplus/sax/saxlib.pys   startDocumentns   c    s
   qrd S(   s0   Handle an event for the beginning of an element.N(    (   s   selfs   names   atts(    (    sA   /usr/local/twc/lib/python2.2/site-packages/_xmlplus/sax/saxlib.pys   startElementqs   (	   s   __doc__s
   characterss   endDocuments
   endElements   ignorableWhitespaces   processingInstructions   setDocumentLocators   startDocuments   startElement(    (    (    sA   /usr/local/twc/lib/python2.2/site-packages/_xmlplus/sax/saxlib.pys   DocumentHandlerQs   		s   HandlerBasec      s   wd  Z  RS(   s  Default base class for handlers. This class implements the
    default behaviour for four SAX interfaces: EntityResolver,
    DTDHandler, DocumentHandler, and ErrorHandler: rather
    than implementing those full interfaces, you may simply extend
    this class and override the methods that you need. Note that the
    use of this class is optional (you are free to implement the
    interfaces directly if you wish).(   s   __doc__(    (    (    sA   /usr/local/twc/lib/python2.2/site-packages/_xmlplus/sax/saxlib.pys   HandlerBasews   	s   Parserc      sn   d  Z  d   Z d   Z d   Z d   Z d   Z d   Z d   Z d   Z RS(	   sF  Basic interface for SAX (Simple API for XML) parsers. All SAX
    parsers must implement this basic interface: it allows users to
    register handlers for different types of events and to initiate a
    parse from a URI, a character stream, or a byte stream. SAX
    parsers should also implement a zero-argument constructor.c    sC   t    |  _ t   |  _ t   |  _ t   |  _ d  S(   N(	   s   DocumentHandlers   selfs   doc_handlers
   DTDHandlers   dtd_handlers   EntityResolvers   ent_handlers   ErrorHandlers   err_handler(   s   self(    (    sA   /usr/local/twc/lib/python2.2/site-packages/_xmlplus/sax/saxlib.pys   __init__s   c    s
   d S(   s/   Parse an XML document from a system identifier.N(    (   s   selfs   systemId(    (    sA   /usr/local/twc/lib/python2.2/site-packages/_xmlplus/sax/saxlib.pys   parses   c    s
   d S(   s.   Parse an XML document from a file-like object.N(    (   s   selfs   fileobj(    (    sA   /usr/local/twc/lib/python2.2/site-packages/_xmlplus/sax/saxlib.pys	   parseFiles   c    s   | |  _ d S(   s<   Register an object to receive basic document-related events.N(   s   handlers   selfs   doc_handler(   s   selfs   handler(    (    sA   /usr/local/twc/lib/python2.2/site-packages/_xmlplus/sax/saxlib.pys   setDocumentHandlers   c    s   | |  _ d S(   s7   Register an object to receive basic DTD-related events.N(   s   handlers   selfs   dtd_handler(   s   selfs   handler(    (    sA   /usr/local/twc/lib/python2.2/site-packages/_xmlplus/sax/saxlib.pys   setDTDHandlers   c    s   | |  _ d S(   s0   Register an object to resolve external entities.N(   s   resolvers   selfs   ent_handler(   s   selfs   resolver(    (    sA   /usr/local/twc/lib/python2.2/site-packages/_xmlplus/sax/saxlib.pys   setEntityResolvers   c    s   | |  _ d S(   s3   Register an object to receive error-message events.N(   s   handlers   selfs   err_handler(   s   selfs   handler(    (    sA   /usr/local/twc/lib/python2.2/site-packages/_xmlplus/sax/saxlib.pys   setErrorHandlers   c    s   t  d   d S(   sH  Allow an application to set the locale for errors and warnings.

        SAX parsers are not required to provide localisation for errors
        and warnings; if they cannot support the requested locale,
        however, they must throw a SAX exception. Applications may
        request a locale change in the middle of a parse.s   Locale support not implementedN(   s   SAXNotSupportedException(   s   selfs   locale(    (    sA   /usr/local/twc/lib/python2.2/site-packages/_xmlplus/sax/saxlib.pys	   setLocales   (	   s   __doc__s   __init__s   parses	   parseFiles   setDocumentHandlers   setDTDHandlers   setEntityResolvers   setErrorHandlers	   setLocale(    (    (    sA   /usr/local/twc/lib/python2.2/site-packages/_xmlplus/sax/saxlib.pys   Parsers   	N(!   s   __doc__s   versions   handlers   ErrorHandlers   ContentHandlers
   DTDHandlers   EntityResolvers	   xmlreaders	   XMLReaders   InputSources   Locators   IncrementalParsers   _exceptionss   feature_namespacess   feature_namespace_prefixess   feature_string_internings   feature_validations   feature_external_gess   feature_external_pess   all_featuress   property_lexical_handlers   property_declaration_handlers   property_dom_nodes   property_xml_strings   all_propertiess	   XMLFilters
   Attributess   DeclHandlers   LexicalHandlers   AttributeLists   DocumentHandlers   HandlerBases   Parser(   s   LexicalHandlers   property_declaration_handlers   HandlerBases   DocumentHandlers   ErrorHandlers   feature_external_pess   DeclHandlers   IncrementalParsers   property_xml_strings   EntityResolvers   ContentHandlers   all_propertiess   property_lexical_handlers   property_dom_nodes   InputSources   feature_string_internings   AttributeLists
   Attributess   Parsers	   XMLReaders	   XMLFilters   Locators
   DTDHandlers   versions   feature_external_gess   feature_namespacess   feature_namespace_prefixess   all_featuress   feature_validation(    (    sA   /usr/local/twc/lib/python2.2/site-packages/_xmlplus/sax/saxlib.pys   ?
 s   	""
RP>J3&"