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
/
lxml
/
apihelpers.pxi
Commit message (
Expand
)
Author
Age
Files
Lines
*
Implement indent() function for in-place pretty-printing of XML trees.
Stefan Behnel
2019-08-13
1
-0
/
+13
*
LP#1838252: Keep the order provided by an OrderedDict that gets passed as att...
Stefan Behnel
2019-07-29
1
-10
/
+5
*
Fix some misbehaviour in slice selection and deletion: Large step sizes could...
Stefan Behnel
2019-04-21
1
-0
/
+2
*
Fix some misbehaviour in slice assignments:
Stefan Behnel
2019-04-21
1
-1
/
+9
*
Refactor duplicate code.
Stefan Behnel
2019-04-05
1
-0
/
+18
*
Exclude absolute Windows (C:\...) file paths from URL escaping since libxml2 ...
Stefan Behnel
2019-03-27
1
-4
/
+11
*
Fix C compiler warning about comparing signed to unsigned integers.
Stefan Behnel
2019-03-27
1
-1
/
+1
*
Keep the original dict insertion order in Py3.6+ when setting attributes or n...
Stefan Behnel
2019-03-01
1
-3
/
+14
*
Fix crash due to incorrect dict handling for text nodes.
Stefan Behnel
2019-02-28
1
-1
/
+3
*
LP#1814522: Fix a crash when appending a child subtree that contains unsubsti...
Stefan Behnel
2019-02-05
1
-2
/
+19
*
Speed up ascii/non-ascii string detection in isutf8() and funicode() helper f...
Stefan Behnel
2018-10-20
1
-6
/
+42
*
Simplify isinstance
Hugo
2018-08-26
1
-1
/
+1
*
Remove unnecessary backslash
Hugo
2018-08-25
1
-2
/
+2
*
Remove redundant code for Python <= 2.6
Hugo
2018-08-25
1
-3
/
+2
*
Use f-strings for all string formatting for which it makes sense (i.e. does n...
Stefan Behnel
2018-01-25
1
-22
/
+12
*
fix C compiler warning about "const" type mismatch
Stefan Behnel
2017-08-11
1
-0
/
+1
*
replace IS_PYTHON3 C macro with IS_PYTHON2 before it starts looking funny in ...
Stefan Behnel
2016-09-03
1
-2
/
+2
*
use PyUnicode_FromFormat() also in Py2.x (but not in PyPy which doesn't have it)
Stefan Behnel
2016-09-03
1
-2
/
+2
*
allow None as attribute value only for HTML trees
Stefan Behnel
2016-07-29
1
-2
/
+3
*
allow None as an attribute value, for HTML boolean attributes
Daniel Holth
2016-07-28
1
-4
/
+7
*
re-implement "keep_ns_prefixes" option in cleanup_namespaces()
Stefan Behnel
2015-09-04
1
-8
/
+10
*
Merge pull request #167 from tomkralidis/cleanup_namespaces-keep_nsmap
scoder
2015-09-04
1
-3
/
+8
|
\
|
*
test on list
Tom Kralidis
2015-06-14
1
-1
/
+1
|
*
pass only ns prefixes
Tom Kralidis
2015-06-14
1
-4
/
+4
|
*
update implemenation, tests
Tom Kralidis
2015-05-18
1
-1
/
+2
|
*
doc change
Tom Kralidis
2015-05-15
1
-1
/
+1
|
*
update everything but the actual implementation change to reflect agreed upon...
Tom Kralidis
2015-05-15
1
-1
/
+5
*
|
improve error message
Stefan Behnel
2015-08-21
1
-1
/
+1
|
/
*
use PyUnicode_FromFormat in pypy3
Stefan Behnel
2015-04-10
1
-1
/
+1
*
minor code cleanup
Stefan Behnel
2015-04-04
1
-1
/
+1
*
speed up removal of unused namespaces by avoiding to traverse elements/attrib...
Stefan Behnel
2015-03-01
1
-4
/
+5
*
for better symmetry, use lxml_malloc()/lxml_free() instead of lxml_malloc()/P...
Stefan Behnel
2015-03-01
1
-4
/
+4
*
make nsmap evaluation safer by preventing to sort on None and string values (...
Stefan Behnel
2015-03-01
1
-36
/
+46
*
make attribute creation order in xmlfile.element() reproducible (same as for ...
Stefan Behnel
2015-03-01
1
-10
/
+18
*
make sure we always validate 'node_ns_utf' in _setNodeNamespaces() by removin...
Stefan Behnel
2015-02-28
1
-37
/
+36
*
remove useless list size changing
Stefan Behnel
2015-02-27
1
-4
/
+6
*
declare types that Cython couldn't infer
Stefan Behnel
2015-02-27
1
-2
/
+2
*
refactor duplicate code in _removeUnusedNamespaceDeclarations()
Stefan Behnel
2015-02-27
1
-45
/
+34
*
rename helper function to match more general applicability and fix incorrect ...
Stefan Behnel
2015-02-27
1
-7
/
+7
*
clean up and refactor last commits
Stefan Behnel
2015-02-21
1
-20
/
+23
*
Update name validation.
Olli Pottonen
2015-02-21
1
-2
/
+2
*
On python 2, __repr__ shall return str, not unicode.
Olli Pottonen
2015-02-21
1
-0
/
+9
*
Check all input strings are in XML character range.
Olli Pottonen
2015-02-21
1
-19
/
+38
*
Make _ElementTree.deepcopy() properly handle comments/PI's before doctype.
Olli Pottonen
2015-02-18
1
-5
/
+13
*
accept CDATA wrapped content for tail text
Stefan Behnel
2014-11-23
1
-16
/
+16
*
merge lxml-3.3 branch into master
Stefan Behnel
2014-08-28
1
-26
/
+24
|
\
|
*
refactor some duplicated code
Stefan Behnel
2014-08-28
1
-18
/
+16
|
*
prevent tree cycle creation when adding siblings
Stefan Behnel
2014-08-28
1
-14
/
+14
|
*
PyPy fix
Stefan Behnel
2014-03-10
1
-1
/
+2
*
|
simplify some code
Stefan Behnel
2014-04-04
1
-4
/
+2
[next]