summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
...
| * handle lxml's getiterator and itersiblingsChristian Heimes2013-02-081-1/+10
| |
| * toc, inline xml docsChristian Heimes2013-02-081-16/+38
| |
| * corrected indentionChristian Heimes2013-02-081-13/+14
| |
| * removed unsed imports of PY3 constantChristian Heimes2013-02-083-3/+3
| |
| * document license and contributorsChristian Heimes2013-02-081-3/+12
| |
| * mergeChristian Heimes2013-02-089-108/+64
| |\
| | * No need to clutter the code with super() calls for Python 3; it's just a ↵Brett Cannon2013-02-082-29/+9
| | | | | | | | | | | | nicety and not required
| | * format tweakBrett Cannon2013-02-081-2/+4
| | |
| | * add docstringBrett Cannon2013-02-081-0/+3
| | |
| | * Factor out common function code to a generating functionBrett Cannon2013-02-083-70/+41
| | |
| | * Tweak formattingBrett Cannon2013-02-081-5/+5
| | |
| | * Remove unnecessary importsBrett Cannon2013-02-081-1/+1
| | |
| | * Ignore __pycache__ directoriesBrett Cannon2013-02-081-1/+1
| | |
| | * start to document defusedxmlChristian Heimes2013-02-082-15/+88
| | |
| | * doc updatesChristian Heimes2013-02-081-0/+57
| | |
| | * test external entity forbiddenChristian Heimes2013-02-081-0/+15
| | |
| | * grab ParseError from pure Python module / pyexpatChristian Heimes2013-02-081-4/+12
| | |
| | * prevent web accessChristian Heimes2013-02-081-1/+23
| | | | | | | | | | | | test dtd with external ref
| | * Only overwrite ExternalEntityRefHandler when a handler is installedChristian Heimes2013-02-082-4/+8
| | |
| | * entity -> entitiesChristian Heimes2013-02-088-25/+39
| | | | | | | | | | | | special exception for external entities
| | * PSF is now hosting the projectChristian Heimes2013-02-081-2/+2
| | |
| | * fixed DefusedExpatBuilderNS for Python 3.xChristian Heimes2013-02-081-8/+5
| | | | | | | | | | | | The classes aren't using super()
| | * handle binary / text mode XML docsChristian Heimes2013-02-081-5/+11
| | |
| | * Python 3.3 hides the pure Python implementations very wellChristian Heimes2013-02-082-19/+76
| | |
| | * adapt code to Python 2.6 and 3.x, still WIPChristian Heimes2013-02-076-15/+40
| | |
| | * added test code for error casesChristian Heimes2013-02-071-15/+92
| | |
| | * add forbid_dtd and forbid_entities args to functions and callsChristian Heimes2013-02-079-25/+71
| | |
| | * added test classes and first simple testChristian Heimes2013-02-071-4/+75
| | |
| | * lxml's fromstring returns the root elementChristian Heimes2013-02-071-3/+4
| | |
| | * fixed __init__Christian Heimes2013-02-071-1/+1
| | |
| | * hide private attributesChristian Heimes2013-02-079-68/+114
| | |
| | * add some xml test filesChristian Heimes2013-02-077-0/+38
| | |
| | * update changelogChristian Heimes2013-02-071-2/+2
| | |
| | * Moved compat and exceptions to a single moduleChristian Heimes2013-02-0711-54/+62
| | | | | | | | | | | | improved wiring
| | * use python.org email addressChristian Heimes2013-02-0711-11/+11
| | |
| | * fixed markupChristian Heimes2013-02-071-2/+3
| | |
| | * add defused lxmlChristian Heimes2013-02-072-0/+124
| | |
| | * rename safexml to defusedxmlChristian Heimes2013-02-0714-51/+59
| | |
| | * initial import of draftChristian Heimes2013-02-0618-0/+536
| |
| * add possible PI, DTD and XPath issuesChristian Heimes2013-02-0824-0/+1264
|
* Add missing parser_list argument to sax.make_parser()Christian Heimes2013-02-2036-0/+3037
The argument is ignored, though. (thanks to Florian Apolloner)