Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
badw-it
DHParser
Commits
0ccf957c
Commit
0ccf957c
authored
Jul 02, 2018
by
eckhart
Browse files
path errors in some tests fixed
parent
9c16b2a8
Changes
5
Show whitespace changes
Inline
Side-by-side
CHANGES.txt
View file @
0ccf957c
DHParser Version 0.8.1 (2.7.2018)
.................................
- compatibility fixes for Python 3.7
DHParser Version 0.8.0 (24.6.2018)
..................................
...
...
DHParser/versionnumber.py
View file @
0ccf957c
...
...
@@ -16,4 +16,4 @@
# permissions and limitations under the License.
__all__
=
(
'__version__'
,)
__version__
=
'0.8.
0
'
# + '_dev' + str(os.stat(__file__).st_mtime)
__version__
=
'0.8.
1
'
# + '_dev' + str(os.stat(__file__).st_mtime)
test/test_compile.py
View file @
0ccf957c
...
...
@@ -19,6 +19,9 @@ See the License for the specific language governing permissions and
limitations under the License.
"""
import
sys
sys
.
path
.
extend
([
'../'
,
'./'
])
from
DHParser
import
parse_sxpr
,
Compiler
...
...
test/test_error.py
View file @
0ccf957c
...
...
@@ -20,6 +20,10 @@ See the License for the specific language governing permissions and
limitations under the License.
"""
import
sys
sys
.
path
.
extend
([
'../'
,
'./'
])
try
:
import
regex
as
re
except
ImportError
:
...
...
test/test_preprocess.py
View file @
0ccf957c
...
...
@@ -19,8 +19,9 @@ See the License for the specific language governing permissions and
limitations under the License.
"""
# import sys
# sys.path.append('../')
import
sys
sys
.
path
.
extend
([
'../'
,
'./'
])
from
functools
import
partial
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment