-
Notifications
You must be signed in to change notification settings - Fork 21
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Added default_namespace property to XPath parser classes - XPath1Parser ignores the default namespace setting - Fixed the '(name)' token methods to use the default namespace
- Loading branch information
Showing
10 changed files
with
173 additions
and
134 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -8,7 +8,7 @@ | |
# | ||
# @author Davide Brunato <[email protected]> | ||
# | ||
__version__ = '1.0.11' | ||
__version__ = '1.0.12' | ||
__author__ = "Davide Brunato" | ||
__contact__ = "[email protected]" | ||
__copyright__ = "Copyright 2018, SISSA" | ||
|
@@ -18,7 +18,7 @@ | |
|
||
from .exceptions import * | ||
from .tdop_parser import Token, Parser | ||
from .xpath_helpers import AttributeNode, NamespaceNode, UntypedAtomic | ||
from .xpath_helpers import UntypedAtomic, AttributeNode, NamespaceNode | ||
from .xpath_token import XPathToken | ||
from .xpath_context import XPathContext | ||
from .xpath1_parser import XPath1Parser | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -15,12 +15,12 @@ | |
|
||
setup( | ||
name='elementpath', | ||
version='1.0.11', | ||
version='1.0.12', | ||
packages=['elementpath'], | ||
author='Davide Brunato', | ||
author_email='[email protected]', | ||
url='https://github.com/brunato/elementpath', | ||
license='MIT', | ||
license='MIT', | ||
description='XPath 1.0/2.0 parsers and selectors for ElementTree.', | ||
long_description=long_description, | ||
classifiers=[ | ||
|
Oops, something went wrong.