Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Get the whitespace right! | Fred Drake | 2001-07-30 | 1 | -3/+3 |
| | |||||
* | Ugly fix used when pyexpat is not available. | Jeremy Hylton | 2001-07-30 | 1 | -0/+3 |
| | | | | | | | | | | If pyexpat is not available and more than one attempt is made to load an expat-based xml parser, an empty xml.parser.expat module will be created. This empty module will confuse xml.sax.expatreader into thinking that pyexpat is available. The ugly fix is to verify that the expat module actually defines the names that are imported from pyexpat. | ||||
* | Synchronize with 1.13 of PyXML: | Martin v. Löwis | 2001-06-17 | 1 | -6/+28 |
| | | | | | | Allow application to set a new content handler and lex_prop handler during parsing. Closes bug #433761. Small hack to make expat be ignored in Jython. | ||||
* | Re-indent. | Martin v. Löwis | 2001-01-27 | 1 | -4/+4 |
| | |||||
* | Synchronize with PyXML 1.10 | Martin v. Löwis | 2001-01-27 | 1 | -7/+25 |
| | | | | | Break cycle involving expat parser in close(). Add lex handler support to SAX2 pyexpat | ||||
* | Make reindent.py happy (lots of trailing whitespace removed). | Fred Drake | 2000-10-23 | 1 | -19/+19 |
| | |||||
* | Fixed a bug that caused namespace names to be reported as lists rather | Lars Gustäbel | 2000-10-19 | 1 | -0/+2 |
| | | | | than tuples. | ||||
* | Fixed minor problem with reset(). | Lars Gustäbel | 2000-10-14 | 1 | -1/+2 |
| | |||||
* | _exceptions: Format a missing system id as <unknown>. | Martin v. Löwis | 2000-10-09 | 1 | -1/+2 |
| | | | | expatreader: Use the error handler instead of raising exception directly. | ||||
* | Don't report a final chunk for an external entity parser. | Martin v. Löwis | 2000-10-06 | 1 | -1/+0 |
| | |||||
* | Move translation from expat.error to SAXParseException into feed, so that | Martin v. Löwis | 2000-10-06 | 1 | -17/+19 |
| | | | | | | | | | | callers of feed will get a SAXException. In close, feed the last chunk first before calling endDocument, so that the parser may report errors before the end of the document. Don't do anything in a nested parser. Don't call endDocument in parse; that will be called in close. Use self._source for finding the SystemID; XML_GetBase will be cleared in case of an error. | ||||
* | Add SAXReaderNotAvailable, and use it to distinguish between an | Martin v. Löwis | 2000-10-06 | 1 | -1/+4 |
| | | | | ImportError, and a missing driver. | ||||
* | Use string functions instead of methods to allow sharing this module with PyXML | Martin v. Löwis | 2000-09-29 | 1 | -3/+5 |
| | |||||
* | Find feature names in handler. | Martin v. Löwis | 2000-09-24 | 1 | -3/+3 |
| | |||||
* | Fixed another bug. | Lars Gustäbel | 2000-09-24 | 1 | -1/+0 |
| | |||||
* | Improvements to doco strings. | Lars Gustäbel | 2000-09-24 | 1 | -4/+7 |
| | | | | Tiny bug fix to expatreader.py (endDocument was only called after errors). | ||||
* | Added EntityResolver and DTDHandler (patch 101631) with test cases. | Lars Gustäbel | 2000-09-24 | 1 | -16/+18 |
| | |||||
* | Added back the InputSource class (patch 101630). | Lars Gustäbel | 2000-09-24 | 1 | -13/+9 |
| | |||||
* | Updated to final Attributes interface (patch 101632). | Lars Gustäbel | 2000-09-24 | 1 | -4/+17 |
| | |||||
* | Updated to new *NS signatures (patch 101573). | Lars Gustäbel | 2000-09-24 | 1 | -25/+25 |
| | |||||
* | Conform more closely with the Python style guide. | Fred Drake | 2000-09-23 | 1 | -11/+11 |
| | |||||
* | Use the public name for the Expat parser; "pyexpat" is deprecated. | Fred Drake | 2000-09-23 | 1 | -11/+7 |
| | |||||
* | fix indentation in one docstring | Skip Montanaro | 2000-07-06 | 1 | -1/+1 |
| | |||||
* | Used original SAX handling form. | Paul Prescod | 2000-07-04 | 1 | -11/+10 |
| | |||||
* | Paul Prescod <paul@prescod.net>: | Fred Drake | 2000-06-29 | 1 | -0/+204 |
SAX interfaces for Python. |