[Python-modules-commits] [fparser] branch debian/master updated (e28b6fe -> 13af25a)
Alastair McKinstry
mckinstry at moszumanska.debian.org
Wed Dec 20 09:54:19 UTC 2017
This is an automated email from the git hooks/post-receive script.
mckinstry pushed a change to branch debian/master
in repository fparser.
from e28b6fe Fix for unicode handling in parse()
new 9641894 upstream release 0.0.6
new 0914986 Merge tag 'upstream/0.0.6' into debian/master
new 9abcd08 version number 0.0.6-1
new 8fdb6ac Standards-Version: 4.1.2
new c5cbdeb python3 now upstream
new 13af25a Python3.patch: now supported upstream
The 6 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails. The revisions
listed as "adds" were already present in the repository and have only
been added to this reference.
Summary of changes:
CHANGELOG.md | 43 +-
__init__.py | 63 -
debian/changelog | 8 +
debian/control | 12 +-
debian/patches/series | 2 +-
doc/conf.py | 20 +-
doc/fparser.rst | 5 +-
setup.py | 4 +-
src/__init__.py | 63 -
src/fparser/Fortran2003.py | 504 ++++---
src/fparser/api.py | 86 +-
src/fparser/base_classes.py | 131 +-
src/fparser/block_statements.py | 77 +-
src/fparser/parsefortran.py | 54 +-
src/fparser/pattern_tools.py | 22 +-
src/fparser/readfortran.py | 98 +-
src/fparser/scripts/f2003.py | 10 +-
src/fparser/scripts/parse.py | 4 +-
src/fparser/scripts/read.py | 4 +-
src/fparser/setup.py | 69 -
src/fparser/sourceinfo.py | 2 +-
src/fparser/splitline.py | 378 ++---
src/fparser/statements.py | 832 +++++++----
src/fparser/tests/__init__.py | 0
.../tests/{ => fparser2}/test_Fortran2003.py | 1507 +++++++++++---------
src/fparser/tests/fparser2/test_base_classses.py | 91 ++
.../test_deferred_method.py} | 76 +-
src/fparser/tests/logging_utils.py | 84 ++
src/fparser/tests/test_api.py | 14 +-
.../{test_functional.py => test_base_classes.py} | 72 +-
src/fparser/tests/test_blank_lines.py | 2 +-
src/fparser/tests/test_issue11.py | 2 +-
src/fparser/tests/test_issue25.py | 2 +-
src/fparser/tests/test_issue26.py | 2 +-
src/fparser/tests/test_issue33.py | 2 +-
src/fparser/tests/test_issue5.py | 4 +-
src/fparser/tests/test_issue7.py | 42 +-
src/fparser/tests/test_mod_private.py | 6 +-
src/fparser/tests/test_parser.py | 986 ++++++++-----
.../{test_functional.py => test_readfortran.py} | 75 +-
src/fparser/tests/test_select.py | 22 +-
.../tests/{test_api.py => test_splitline.py} | 184 +--
src/fparser/tests/test_utils.py | 10 +-
src/fparser/typedecl_statements.py | 61 +-
src/fparser/utils.py | 36 +-
45 files changed, 3305 insertions(+), 2466 deletions(-)
delete mode 100644 __init__.py
delete mode 100644 src/__init__.py
delete mode 100644 src/fparser/setup.py
create mode 100644 src/fparser/tests/__init__.py
rename src/fparser/tests/{ => fparser2}/test_Fortran2003.py (70%)
create mode 100644 src/fparser/tests/fparser2/test_base_classses.py
copy src/fparser/tests/{test_functional.py => fparser2/test_deferred_method.py} (58%)
create mode 100644 src/fparser/tests/logging_utils.py
copy src/fparser/tests/{test_functional.py => test_base_classes.py} (54%)
copy src/fparser/tests/{test_functional.py => test_readfortran.py} (54%)
copy src/fparser/tests/{test_api.py => test_splitline.py} (52%)
--
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/python-modules/packages/fparser.git
More information about the Python-modules-commits
mailing list