[Python-modules-commits] [python-simpy3] branch upstream updated (a1b1ce0 -> 8b76fb2)

Wolfgang Borgert debacle at moszumanska.debian.org
Mon Sep 26 23:41:19 UTC 2016


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

debacle pushed a change to branch upstream
in repository python-simpy3.

      from  a1b1ce0   Imported Upstream version 3.0.7+dfsg
       new  8b76fb2   Import python-simpy3_3.0.10.orig.tar.gz

The 1 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:
 .coveragerc                                 |   3 +
 .hg_archival.txt                            |   4 +
 .hgignore                                   |  19 ++
 .hgtags                                     |  10 +
 AUTHORS.txt                                 |  11 +-
 CHANGES.txt                                 |  23 +-
 MANIFEST.in                                 |   3 +
 PKG-INFO                                    | 316 ----------------------------
 README.txt                                  |  24 +--
 docs/_templates/index.html                  |  11 +-
 docs/about/.history.rst.swp                 | Bin 36864 -> 0 bytes
 docs/about/defense_of_design.rst            |   4 +-
 docs/about/history.rst                      |  17 ++
 docs/about/license.rst                      |   1 +
 docs/about/ports.rst                        |   7 +-
 docs/api_reference/.simpy.resources.rst.swp | Bin 12288 -> 0 bytes
 docs/api_reference/simpy.resources.rst      |   6 +
 docs/api_reference/simpy.rt.rst             |  39 +++-
 docs/conf.py                                |  77 ++++---
 docs/conftest.py                            |   4 +-
 docs/conftest.pyc                           | Bin 4631 -> 0 bytes
 docs/examples/code/machine_shop.py          |   2 +-
 docs/examples/code/process_communication.py |   4 +-
 docs/simpy_intro/installation.rst           |   9 +-
 docs/simpy_intro/process_interaction.rst    |   4 +-
 docs/topical_guides/environments.rst        |   4 +-
 docs/topical_guides/index.rst               |   2 +-
 docs/topical_guides/monitoring.rst          | 306 +++++++++++++++++++++++++++
 docs/topical_guides/resources.rst           |  59 +++++-
 requirements.txt                            |  42 ++--
 setup.cfg                                   |  12 +-
 setup.py                                    |  12 +-
 simpy.egg-info/PKG-INFO                     | 316 ----------------------------
 simpy.egg-info/SOURCES.txt                  | 256 ----------------------
 simpy.egg-info/dependency_links.txt         |   1 -
 simpy.egg-info/top_level.txt                |   1 -
 {simpy => src/simpy}/__init__.py            |  14 +-
 {simpy => src/simpy}/_compat.py             |  23 +-
 {simpy => src/simpy}/core.py                |   4 +-
 {simpy => src/simpy}/events.py              | 106 +++++++---
 {simpy => src/simpy}/resources/__init__.py  |   0
 {simpy => src/simpy}/resources/base.py      |  16 +-
 {simpy => src/simpy}/resources/container.py |   0
 {simpy => src/simpy}/resources/resource.py  |  12 +-
 {simpy => src/simpy}/resources/store.py     |  39 ++++
 {simpy => src/simpy}/rt.py                  |  12 +-
 {simpy => src/simpy}/util.py                |  12 --
 {simpy/test => tests}/__init__.py           |   0
 {simpy/test => tests}/conftest.py           |   0
 tests/test_benchmark.py                     | 163 ++++++++++++++
 {simpy/test => tests}/test_condition.py     |   0
 {simpy/test => tests}/test_environment.py   |   0
 {simpy/test => tests}/test_event.py         |  27 +++
 {simpy/test => tests}/test_exceptions.py    |  74 +++++--
 {simpy/test => tests}/test_interrupts.py    |   0
 {simpy/test => tests}/test_process.py       |   0
 {simpy/test => tests}/test_resources.py     | 119 ++++++++++-
 {simpy/test => tests}/test_rt.py            |   6 +-
 {simpy/test => tests}/test_timeout.py       |   0
 {simpy/test => tests}/test_util.py          |   0
 tox.ini                                     |  24 ++-
 61 files changed, 1155 insertions(+), 1105 deletions(-)
 create mode 100644 .coveragerc
 create mode 100644 .hg_archival.txt
 create mode 100644 .hgignore
 create mode 100644 .hgtags
 delete mode 100644 PKG-INFO
 delete mode 100644 docs/about/.history.rst.swp
 delete mode 100644 docs/api_reference/.simpy.resources.rst.swp
 delete mode 100644 docs/conftest.pyc
 create mode 100644 docs/topical_guides/monitoring.rst
 delete mode 100644 simpy.egg-info/PKG-INFO
 delete mode 100644 simpy.egg-info/SOURCES.txt
 delete mode 100644 simpy.egg-info/dependency_links.txt
 delete mode 100644 simpy.egg-info/top_level.txt
 rename {simpy => src/simpy}/__init__.py (86%)
 rename {simpy => src/simpy}/_compat.py (70%)
 rename {simpy => src/simpy}/core.py (98%)
 rename {simpy => src/simpy}/events.py (85%)
 rename {simpy => src/simpy}/resources/__init__.py (100%)
 rename {simpy => src/simpy}/resources/base.py (95%)
 rename {simpy => src/simpy}/resources/container.py (100%)
 rename {simpy => src/simpy}/resources/resource.py (94%)
 rename {simpy => src/simpy}/resources/store.py (75%)
 rename {simpy => src/simpy}/rt.py (93%)
 rename {simpy => src/simpy}/util.py (84%)
 rename {simpy/test => tests}/__init__.py (100%)
 rename {simpy/test => tests}/conftest.py (100%)
 create mode 100644 tests/test_benchmark.py
 rename {simpy/test => tests}/test_condition.py (100%)
 rename {simpy/test => tests}/test_environment.py (100%)
 rename {simpy/test => tests}/test_event.py (75%)
 rename {simpy/test => tests}/test_exceptions.py (73%)
 rename {simpy/test => tests}/test_interrupts.py (100%)
 rename {simpy/test => tests}/test_process.py (100%)
 rename {simpy/test => tests}/test_resources.py (82%)
 rename {simpy/test => tests}/test_rt.py (100%)
 rename {simpy/test => tests}/test_timeout.py (100%)
 rename {simpy/test => tests}/test_util.py (100%)

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



More information about the Python-modules-commits mailing list