[Python-modules-commits] [python-overpy] branch master updated (beeee38 -> a0ad132)

Sandro Tosi morph at moszumanska.debian.org
Mon Dec 12 03:35:30 UTC 2016


This is an automated email from the git hooks/post-receive script.

morph pushed a change to branch master
in repository python-overpy.

      from  beeee38   add debian/patches/no-utf8-in-long-description.patch
       new  65919d4   Import python-overpy_0.4.orig.tar.gz
       new  5bf40e2   record new upstream branch created by importing python-overpy_0.4.orig.tar.gz and merge it
       new  0c102b8   New upstream release
       new  3e9aece   license is now included in the released tarball
       new  07fc22a   install examples
       new  fd23c70   add pytest-runner to b-d
       new  a0ad132   releasing package python-overpy version 0.4-1

The 7 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.rst                            |   52 ++
 LICENSE                                  |   22 +
 MANIFEST.in                              |   11 +
 PKG-INFO                                 |    4 +-
 debian/.git-dpm                          |   14 +-
 debian/changelog                         |   12 +
 debian/control                           |    2 +-
 debian/copyright                         |    1 -
 debian/rules                             |    3 +
 docs/make.bat                            |  242 ++++++
 docs/source/api.rst                      |   66 ++
 docs/source/changelog.rst                |    1 +
 docs/source/conf.py                      |  335 ++++++++
 docs/source/contributing.rst             |    1 +
 docs/source/example.rst                  |  260 ++++++
 docs/source/index.rst                    |   21 +
 docs/source/introduction.rst             |   74 ++
 examples/get_areas.py                    |   21 +
 examples/get_nodes.py                    |   22 +
 examples/get_ways.py                     |   18 +
 overpy.egg-info/PKG-INFO                 |    4 +-
 overpy.egg-info/SOURCES.txt              |   44 +-
 overpy/__about__.py                      |    4 +-
 overpy/__init__.py                       |  716 ++++++++++++++--
 overpy/exception.py                      |    4 +-
 setup.cfg                                |    9 +
 setup.py                                 |   14 +-
 tests/__init__.py                        |   15 +-
 tests/base_class.py                      |  198 ++++-
 tests/json/area-01.json                  |   92 ++
 tests/json/node-01.json                  |   37 +
 tests/json/relation-01.json              |   54 ++
 tests/json/relation-02.json              |   76 ++
 tests/json/relation-03.json              |  699 +++++++++++++++
 tests/json/relation-04.json              | 1378 ++++++++++++++++++++++++++++++
 tests/json/result-expand-01.json         |   33 +
 tests/json/result-expand-02.json         |   76 ++
 tests/json/result-way-01.json            |   21 +
 tests/json/result-way-02.json            |   27 +
 tests/json/result-way-03.json            |   33 +
 tests/json/way-01.json                   |   46 +
 tests/json/way-02.json                   |   64 ++
 tests/json/way-03.json                   |   80 ++
 tests/json/way-04.json                   |   28 +
 tests/response/bad-request-encoding.html |   16 +
 tests/response/bad-request.html          |   15 +
 tests/test_json.py                       |   29 +-
 tests/test_request.py                    |    9 -
 tests/test_result.py                     |   38 +-
 tests/test_result_way.py                 |    3 -
 tests/test_xml.py                        |   80 +-
 tests/xml/area-01.xml                    |   66 ++
 tests/xml/node-01.xml                    |   11 +
 tests/xml/relation-01.xml                |   18 +
 tests/xml/relation-02.xml                |   25 +
 tests/xml/relation-03.xml                |  153 ++++
 tests/xml/relation-04.xml                |  697 +++++++++++++++
 tests/xml/way-01.xml                     |   25 +
 tests/xml/way-02.xml                     |   22 +
 tests/xml/way-03.xml                     |   21 +
 tests/xml/way-04.xml                     |   17 +
 61 files changed, 6067 insertions(+), 112 deletions(-)
 create mode 100644 CHANGELOG.rst
 create mode 100644 LICENSE
 create mode 100644 MANIFEST.in
 create mode 100644 docs/make.bat
 create mode 100644 docs/source/api.rst
 create mode 100644 docs/source/changelog.rst
 create mode 100644 docs/source/conf.py
 create mode 100644 docs/source/contributing.rst
 create mode 100644 docs/source/example.rst
 create mode 100644 docs/source/index.rst
 create mode 100644 docs/source/introduction.rst
 create mode 100644 examples/get_areas.py
 create mode 100755 examples/get_nodes.py
 create mode 100755 examples/get_ways.py
 create mode 100644 tests/json/area-01.json
 create mode 100644 tests/json/node-01.json
 create mode 100644 tests/json/relation-01.json
 create mode 100644 tests/json/relation-02.json
 create mode 100644 tests/json/relation-03.json
 create mode 100644 tests/json/relation-04.json
 create mode 100644 tests/json/result-expand-01.json
 create mode 100644 tests/json/result-expand-02.json
 create mode 100644 tests/json/result-way-01.json
 create mode 100644 tests/json/result-way-02.json
 create mode 100644 tests/json/result-way-03.json
 create mode 100644 tests/json/way-01.json
 create mode 100644 tests/json/way-02.json
 create mode 100644 tests/json/way-03.json
 create mode 100644 tests/json/way-04.json
 create mode 100644 tests/response/bad-request-encoding.html
 create mode 100644 tests/response/bad-request.html
 create mode 100644 tests/xml/area-01.xml
 create mode 100644 tests/xml/node-01.xml
 create mode 100644 tests/xml/relation-01.xml
 create mode 100644 tests/xml/relation-02.xml
 create mode 100644 tests/xml/relation-03.xml
 create mode 100644 tests/xml/relation-04.xml
 create mode 100644 tests/xml/way-01.xml
 create mode 100644 tests/xml/way-02.xml
 create mode 100644 tests/xml/way-03.xml
 create mode 100644 tests/xml/way-04.xml

-- 
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/python-modules/packages/python-overpy.git



More information about the Python-modules-commits mailing list