index
:
delta/python-lxml.git
LP1595781_adopt_external_doc
baserock/morph
lxml-2.3
lxml-2.3.2
lxml-3.0
lxml-3.1
lxml-3.2
lxml-3.3
lxml-3.4
lxml-3.6
lxml-3.7
lxml-4.2
lxml-4.3
lxml-4.4
lxml-4.6
macos_unicode_tests
master
patch-1
pypy
pypy4
walter
xml_int_float_parsing
github.com: lxml/lxml.git
summary
refs
log
tree
commit
diff
log msg
author
committer
range
path:
root
/
src
Commit message (
Expand
)
Author
Age
Files
Lines
...
*
Remove support for CPython 3.4.
Stefan Behnel
2019-04-21
1
-2
/
+2
*
Fix a test that was assigning an incorrectly sized slice.
Stefan Behnel
2019-04-21
1
-3
/
+7
*
Fix some misbehaviour in slice selection and deletion: Large step sizes could...
Stefan Behnel
2019-04-21
2
-0
/
+4
*
Fix some misbehaviour in slice assignments:
Stefan Behnel
2019-04-21
2
-41
/
+35
*
Enable namespace prefix callbacks (start_ns/end_ns) for parser targets and ma...
Stefan Behnel
2019-04-21
3
-72
/
+534
*
Disable cET comparison tests in Py3 where it's just an alias for ET.
Stefan Behnel
2019-04-21
1
-4
/
+9
*
Make failures to write an XSLT output file raise an IOError, instead of incor...
Stefan Behnel
2019-04-19
2
-2
/
+14
*
Fix a test after allowing '' as a namespace prefix in ElementPath.
Stefan Behnel
2019-04-17
1
-1
/
+1
*
Allow '' instead of None as prefix to provide a default namespace mapping in ...
Stefan Behnel
2019-04-16
1
-3
/
+8
*
Add a `max_depth` argument to ElementInclude to prevent content explosion. Li...
Stefan Behnel
2019-04-14
2
-6
/
+107
*
Fix test in Py3.
Stefan Behnel
2019-04-05
1
-3
/
+3
*
Refactor duplicate code.
Stefan Behnel
2019-04-05
3
-31
/
+28
*
Merge branch 'extension-nsmap' of https://github.com/adelton/lxml into adelto...
Stefan Behnel
2019-04-05
2
-0
/
+56
|
\
|
*
Make .nsmap available in XSLT extensions.
Jan Pazdziora
2018-08-09
2
-0
/
+56
*
|
Fix test in Windows.
Stefan Behnel
2019-03-27
1
-1
/
+3
*
|
Fix test in Windows.
Stefan Behnel
2019-03-27
1
-1
/
+1
*
|
Exclude absolute Windows (C:\...) file paths from URL escaping since libxml2 ...
Stefan Behnel
2019-03-27
2
-6
/
+15
*
|
Provide more debug output from a failing test.
Stefan Behnel
2019-03-27
1
-4
/
+13
*
|
Provide more debug output from a failing test.
Stefan Behnel
2019-03-27
1
-4
/
+11
*
|
Avoid an obviously invalid Windows file name in tests.
Stefan Behnel
2019-03-27
1
-2
/
+2
*
|
Minor test cleanup.
Stefan Behnel
2019-03-27
1
-3
/
+3
*
|
Clean up special filename tests and keep only the relevant ones.
Stefan Behnel
2019-03-27
1
-17
/
+6
*
|
Add more system debug output to test runs.
Stefan Behnel
2019-03-27
1
-9
/
+12
*
|
Add tests to investigate why the test runs fail on windows.
Stefan Behnel
2019-03-27
1
-0
/
+18
*
|
Reduce redundant temp file handling in test code.
Stefan Behnel
2019-03-27
4
-62
/
+32
*
|
Minor code cleanups and simplifications.
Stefan Behnel
2019-03-27
1
-20
/
+6
*
|
Fix C compiler warning about comparing signed to unsigned integers.
Stefan Behnel
2019-03-27
1
-1
/
+1
*
|
Remove some Python anachronisms by using the with statement for file resource...
Stefan Behnel
2019-03-27
4
-64
/
+44
*
|
Work around libxml2's URL-unescaping in xmlOutputBufferCreateFilename() by es...
Stefan Behnel
2019-03-26
4
-2
/
+56
*
|
Clean up stray whitespace in test file.
Stefan Behnel
2019-03-26
1
-104
/
+104
*
|
Merge lxml-4.3 branch into master.
Stefan Behnel
2019-03-26
1
-14
/
+9
|
\
\
|
*
|
Fix leak of output buffer in _XSLTResultTree.write_output().
Stefan Behnel
2019-03-26
1
-14
/
+9
*
|
|
Remove unused variable.
Stefan Behnel
2019-03-26
1
-1
/
+1
*
|
|
Clean up test file.
Stefan Behnel
2019-03-26
1
-17
/
+15
*
|
|
Add a couple of API type annotations.
Stefan Behnel
2019-03-26
1
-4
/
+4
*
|
|
Avoid some unnecessary unicode conversions on comparisons in Py2.
Stefan Behnel
2019-03-26
1
-5
/
+5
*
|
|
Always reset the ElementTree._doc reference when parsing a new document with ...
Stefan Behnel
2019-03-26
1
-4
/
+4
*
|
|
Add a couple of API type annotations.
Stefan Behnel
2019-03-26
1
-2
/
+2
*
|
|
Simplify _Attrib.clear() and reduce its overhead.
Stefan Behnel
2019-03-24
1
-3
/
+4
*
|
|
Deprecate ElementTree.write_c14n() method in favour of ElementTree.write(f, m...
Stefan Behnel
2019-03-24
1
-0
/
+3
*
|
|
Tighten an assertion (string length must never be < 0).
Stefan Behnel
2019-03-15
1
-1
/
+1
*
|
|
Minor code cleanup.
Stefan Behnel
2019-03-15
1
-2
/
+1
*
|
|
Prevent registering a different prefix than "xml" for the XML namespace.
Stefan Behnel
2019-03-15
2
-0
/
+10
*
|
|
Remove redundant string prefixes from C-ish code.
Stefan Behnel
2019-03-15
1
-8
/
+8
*
|
|
Implement "__index__()" special method for integer elements in lxml.objectify.
Stefan Behnel
2019-03-08
2
-1
/
+7
*
|
|
Add some tests that were found missing by coverage analysis.
Stefan Behnel
2019-03-08
1
-0
/
+56
*
|
|
Allow "element[-1]" for disconnected elements in objectify, returning the ele...
Stefan Behnel
2019-03-08
1
-3
/
+2
*
|
|
LP#1758553: add "source" and "track" to list of empty HTML tags.
Stefan Behnel
2019-03-08
1
-1
/
+1
*
|
|
Minor code cleanup.
Stefan Behnel
2019-03-02
1
-8
/
+4
*
|
|
Change test to reflect the attribute creation order change in Py3.6+.
Stefan Behnel
2019-03-01
1
-4
/
+11
[prev]
[next]