summaryrefslogtreecommitdiff
path: root/src/lxml/_elementpath.py
Commit message (Expand)AuthorAgeFilesLines
* Actually use "language_level=2" everywhere for better Py2 compatibility.Stefan Behnel2018-12-021-1/+1
* Set explicit Cython language levels for compiled modules (Cython suggests to ...Stefan Behnel2018-12-021-0/+2
* Fix import warnings in Py3.6+ by switching to absolute imports.Stefan Behnel2018-09-291-0/+2
* Add comment.Stefan Behnel2017-10-011-0/+1
* Avoid string list+join overhead in ElementPath parser since predicate signatu...Stefan Behnel2017-10-011-3/+3
* Make sure text selects find all entries (remove left-over "break").Stefan Behnel2017-09-301-1/+0
* Support ElementPath text predicates for current node, like "[.='text']".Stefan Behnel2017-09-301-6/+13
* Allow whitespace in ElementPath predicates.Stefan Behnel2017-09-301-0/+2
* repair tuple sorting in Py3 when passing a None default prefix mapping in Ele...Stefan Behnel2017-05-261-3/+11
* support a default prefix mapping in ElementPath searches by allowing to injec...Stefan Behnel2017-05-261-9/+15
* Python 3.6 invalid escape sequence deprecation fixesVille Skyttä2017-03-191-7/+7
* remove pre-Py2.6 fallback codeStefan Behnel2016-07-271-6/+1
* fix selector cache in ElementPathChangaco2015-04-151-2/+3
* raise ValueError when an empty namespace prefix is passed into the ElementPat...Stefan Behnel2014-12-261-0/+2
* whitespaceStefan Behnel2014-12-261-0/+5
* minor code cleanupStefan Behnel2014-12-261-4/+5
* reject negative path indices in ElementPath (illegal in XPath and previously ...Stefan Behnel2013-01-241-5/+9
* reject invalid 0-index in ElementPath predicatesStefan Behnel2013-01-241-0/+3
* make the user provided namespace mapping part of the caching key in ElementPa...Stefan Behnel2013-01-221-1/+1
* raise ElementPath syntax error on empty path expressionStefan Behnel2012-08-011-1/+4
* prevent el.find('*') from returning PIs and commentsStefan Behnel2012-07-301-1/+1
* [svn r4386] r5536@lenny: sbehnel | 2010-03-26 08:12:15 +0100scoder2010-03-261-63/+123
* [svn r4300] r5391@lenny: sbehnel | 2009-12-30 12:48:32 +0100scoder2009-12-301-0/+1
* [svn r4105] r5036@delle: sbehnel | 2009-02-20 19:21:16 +0100scoder2009-02-201-1/+1
* [svn r3798] r4443@delle: sbehnel | 2008-05-31 18:47:50 +0200scoder2008-05-311-1/+1
* [svn r3786] r4431@delle: sbehnel | 2008-05-31 16:59:52 +0200scoder2008-05-311-4/+1
* [svn r3685] r4231@delle: sbehnel | 2008-05-19 23:46:38 +0200scoder2008-05-201-9/+21
* [svn r3135] r3180@delle: sbehnel | 2007-12-25 15:54:59 +0100scoder2007-12-251-1/+1
* [svn r2937] some cleanup and optimisations in _elementpath.pyscoder2007-09-281-61/+58
* [svn r2850] ET 1.3 compatibility updates: iterfind(), new ElementPath impleme...scoder2007-09-131-130/+165
* [svn r177] Add support for find() and friends, directly taken from Python Ele...faassen2005-01-121-0/+194