summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* Implement a dedicated int/float parser for XML (schema) values in ↵xml_int_float_parsingStefan Behnel2021-08-122-9/+179
| | | | | | | | | lxml.objectify. This disables support for "_" in numbers, which are allowed by Python but not by XMLSchema. Wee keep a few additional literals, such as "+NaN", simply because they shouldn't hurt. See https://mail.python.org/archives/list/lxml@python.org/thread/6F7VIDKWZTJ6LB6VOX6IJNNWICYHFPNR/
* Use Cython's autowrapping feature for cdef functions to keep internal ↵Stefan Behnel2021-08-121-12/+12
| | | | utility functions out of the objectify module dict.
* Remove outdated mention of Pyrex.Stefan Behnel2021-08-121-4/+3
|
* Add note on crypto currency donations (and why we don't take them).Stefan Behnel2021-08-121-0/+5
|
* Update changelog.Stefan Behnel2021-08-121-0/+14
|
* _tofilelikeC14N: Always close output buffer (GH-322)Petr Viktorin2021-07-291-8/+10
| | | | | | | | | If `with writer.error_log` raises an exception, `c_buffer` would leak. It seems that currently, it can't actually raise (it's uses small and tight `cdef` functions), but there's no guarantee they'll remain exception-free in the future. But there's one more thing that potentially could leak (at least Cython generates an `unlikely` `goto` block for it): the lookup of `__exit__` that happens at the start of the `with` block. Put the `xmlOutputBufferClose` call into a `finally` block to make this safer.
* Rewrite Unicode chunk parsing by directly encoding to UTF-8.Stefan Behnel2021-07-182-49/+114
| | | | Previously, we required Py_UNICODE strings, which is inefficient since most strings in Py3 use the PEP-393 memory layout.
* Try to get the wheel upload working in CI.Stefan Behnel2021-07-171-1/+1
|
* Try to get the wheel upload working in CI.Stefan Behnel2021-07-171-1/+1
|
* Fix wheel build CFLAGS in CI.Stefan Behnel2021-07-171-1/+1
|
* User older, compatible coverage version in CI.Stefan Behnel2021-07-171-1/+1
|
* Fix CI wheel build target.Stefan Behnel2021-07-171-1/+1
|
* Use -flto for wheel builds.Stefan Behnel2021-07-171-1/+3
|
* Improve CFLAGS in CI builds to get better C compiler warnings and better wheels.Stefan Behnel2021-07-171-3/+3
|
* Fix CI uploads and ccache key.Stefan Behnel2021-07-171-2/+2
|
* Use ccache in CI builds.Stefan Behnel2021-07-171-0/+1
|
* Disallow CI failures in Py3.10. Seems to work now.Stefan Behnel2021-07-171-3/+3
|
* Switch to GitHub actions (GH-319)scoder2021-07-163-2/+205
|
* Implement "__rXXX__" special methods in objectify elements to support proper ↵Stefan Behnel2021-07-161-12/+87
| | | | Python semantics in Cython 3.
* Update memory benchmark results in doc/performance.txt.Stefan Behnel2021-07-051-42/+41
|
* Add a script to update the benchmark results in doc/performance.txt after a ↵Stefan Behnel2021-07-051-0/+58
| | | | new benchmark run.
* Show libxml2 version in benchmark output.Stefan Behnel2021-07-051-1/+2
|
* Update benchmark results in doc/performance.txt to lxml 4.6.3, with a static ↵Stefan Behnel2021-07-051-145/+145
| | | | LTO build (since that is what the Linux wheels are using).
* Update benchmark results in doc/performance.txt to lxml 4.6.3.Stefan Behnel2021-07-041-152/+145
|
* Revive benchmarks.Stefan Behnel2021-07-042-2/+6
|
* Make the note about the (faster) .find*() methods in the XPath section stick ↵Stefan Behnel2021-07-042-3/+20
| | | | out to suggest their use.
* Allow building the HTML docs without the donation section/button.Stefan Behnel2021-06-291-9/+14
| | | | Debian doesn't like non-free content.
* Avoid direct C-API call.Stefan Behnel2021-05-191-2/+1
|
* Removed unused Zope Public License from docs folder (GH-312)Wen Bo Li2021-05-191-59/+0
|
* Remove unused image file.Stefan Behnel2021-05-191-0/+0
|
* Allow passing STATIC_* setup variables from the environment. (GH-314)Isaac Jurado2021-05-191-4/+7
| | | For very customized static builds of lxml, the only way to succeed is by patching the setup.py file. This change makes it a little more convenient to make static builds directly from the pip command line.
* Switch back to libxml2 2.9.10 since 2.9.11/12 are incompatible.Stefan Behnel2021-05-191-1/+1
|
* Add Py3.9 to tox.ini.Stefan Behnel2021-05-191-1/+1
|
* Adapt a test to a behavioural change in libxml2 2.9.11+.Stefan Behnel2021-05-191-1/+4
|
* Add project income report for 2020.Stefan Behnel2021-05-191-0/+6
|
* Switch to libxml2 2.9.12.Stefan Behnel2021-05-191-1/+1
|
* Work around a bug in the configure script of libxslt. See ↵Stefan Behnel2021-05-191-0/+9
| | | | https://gitlab.gnome.org/GNOME/libxslt/-/commit/90c34c8bb90e095a8a8fe8b2ce368bd9ff1837cc
* Switch to libxml2 2.9.11Stefan Behnel2021-05-191-1/+1
|
* Avoid text overlaps on website banner (GH-318)Bob Kline2021-05-151-1/+1
|
* Add a "make fuzz" target to run the fuzzer test.Stefan Behnel2021-05-081-0/+9
|
* Clean up fuzzer test.Stefan Behnel2021-05-081-1/+3
|
* Add initial Atheris fuzzer. (GH-313)DavidKorczynski2021-05-081-0/+23
|
* Enable access to the system_url of DTD entity declarations (GH-317)Joel2021-05-082-0/+13
|
* Include manylinux 2.24 wheel builds because they feature a newer C compiler.Stefan Behnel2021-05-021-9/+18
|
* Add CPython nightly builds (currently Py3.10) to the travis build matrix ↵Christian Clauss2021-04-241-0/+4
| | | | (GH-315)
* Clarify that the ET compatibility difference for the '*' tag filter applies ↵Stefan Behnel2021-03-291-5/+5
| | | | not only to ".iter()" but also to ".find*()".
* Avoid race conditions when downloading artefacts.Stefan Behnel2021-03-211-3/+5
|
* Prevent duplicated downloads.Stefan Behnel2021-03-211-2/+10
|
* Prepare release of lxml 4.6.3.lxml-4.6.3Stefan Behnel2021-03-213-4/+19
|
* Add HTML-5 "formaction" attribute to "defs.link_attrs" (GH-316)Kevin Chung2021-03-212-0/+17
| | | | Resolves https://bugs.launchpad.net/lxml/+bug/1888153 See https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-28957