| 
									
										
										
										
											2000-06-29 19:28:01 +00:00
										 |  |  | """Core XML support for Python.
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2005-12-12 18:54:55 +00:00
										 |  |  | This package contains four sub-packages: | 
					
						
							| 
									
										
										
										
											2000-06-29 19:28:01 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | dom -- The W3C Document Object Model.  This supports DOM Level 1 + | 
					
						
							|  |  |  |        Namespaces. | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2000-08-01 00:05:16 +00:00
										 |  |  | parsers -- Python wrappers for XML parsers (currently only supports Expat). | 
					
						
							| 
									
										
										
										
											2000-06-29 19:28:01 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | sax -- The Simple API for XML, developed by XML-Dev, led by David | 
					
						
							| 
									
										
										
										
											2000-10-23 18:09:50 +00:00
										 |  |  |        Megginson and ported to Python by Lars Marius Garshol.  This | 
					
						
							| 
									
										
										
										
											2000-07-01 04:58:47 +00:00
										 |  |  |        supports the SAX 2 API. | 
					
						
							| 
									
										
										
										
											2005-12-12 18:54:55 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | etree -- The ElementTree XML library.  This is a subset of the full | 
					
						
							|  |  |  |        ElementTree XML release. | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2000-06-29 19:28:01 +00:00
										 |  |  | """
 | 
					
						
							| 
									
										
										
										
											2000-08-01 00:05:16 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2005-12-14 06:20:35 +00:00
										 |  |  | import sys | 
					
						
							|  |  |  | import xmlcore | 
					
						
							| 
									
										
										
										
											2000-08-01 00:05:16 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2005-12-12 18:54:55 +00:00
										 |  |  | __all__ = ["dom", "parsers", "sax", "etree"] | 
					
						
							| 
									
										
										
										
											2000-09-25 17:30:17 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2001-03-27 08:42:12 +00:00
										 |  |  | # When being checked-out without options, this has the form | 
					
						
							|  |  |  | # "<dollar>Revision: x.y </dollar>" | 
					
						
							|  |  |  | # When exported using -kv, it is "x.y". | 
					
						
							| 
									
										
										
										
											2001-03-27 21:38:15 +00:00
										 |  |  | __version__ = "$Revision$".split()[-2:][0] | 
					
						
							| 
									
										
										
										
											2000-09-25 17:30:17 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2004-10-13 19:57:14 +00:00
										 |  |  | _MINIMUM_XMLPLUS_VERSION = (0, 8, 4) | 
					
						
							| 
									
										
										
										
											2000-09-25 17:30:17 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2000-08-04 03:14:55 +00:00
										 |  |  | try: | 
					
						
							|  |  |  |     import _xmlplus | 
					
						
							|  |  |  | except ImportError: | 
					
						
							| 
									
										
										
										
											2005-12-14 06:20:35 +00:00
										 |  |  |     sys.modules[__name__] = xmlcore | 
					
						
							| 
									
										
										
										
											2000-08-04 03:14:55 +00:00
										 |  |  | else: | 
					
						
							| 
									
										
										
										
											2000-09-25 17:30:17 +00:00
										 |  |  |     try: | 
					
						
							|  |  |  |         v = _xmlplus.version_info | 
					
						
							|  |  |  |     except AttributeError: | 
					
						
							| 
									
										
										
										
											2004-11-25 12:23:23 +00:00
										 |  |  |         # _xmlplus is too old; ignore it | 
					
						
							| 
									
										
										
										
											2000-09-25 17:30:17 +00:00
										 |  |  |         pass | 
					
						
							|  |  |  |     else: | 
					
						
							|  |  |  |         if v >= _MINIMUM_XMLPLUS_VERSION: | 
					
						
							| 
									
										
										
										
											2005-12-14 06:20:35 +00:00
										 |  |  |             _xmlplus.__path__.extend(xmlcore.__path__) | 
					
						
							| 
									
										
										
										
											2000-09-25 17:30:17 +00:00
										 |  |  |             sys.modules[__name__] = _xmlplus | 
					
						
							|  |  |  |         else: | 
					
						
							|  |  |  |             del v |