[Python-modules-commits] [python-psutil] branch upstream updated (120c55e -> 2c309eb)

Sandro Tosi morph at moszumanska.debian.org
Sun Apr 10 19:44:17 UTC 2016


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

morph pushed a change to branch upstream
in repository python-psutil.

      from  120c55e   Import python-psutil_3.4.2.orig.tar.gz
       new  2c309eb   Import python-psutil_4.1.0.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:
 .ci/travis/install.sh                              |   37 +-
 .ci/travis/run.sh                                  |   12 +-
 .coveragerc                                        |   18 +-
 .travis.yml                                        |   27 +-
 CREDITS                                            |   28 +
 DEVGUIDE.rst                                       |  144 ++
 DEVNOTES.rst                                       |   10 -
 HISTORY.rst                                        |   68 +
 IDEAS                                              |  151 ++
 INSTALL.rst                                        |  144 +-
 MANIFEST.in                                        |    9 +-
 Makefile                                           |   18 +-
 PKG-INFO                                           |   43 +-
 README.rst                                         |   38 +-
 TODO                                               |  171 --
 appveyor.yml                                       |   27 +-
 docs/index.rst                                     |  468 +++--
 make.bat                                           |   62 +-
 psutil.egg-info/PKG-INFO                           |   43 +-
 psutil.egg-info/SOURCES.txt                        |   57 +-
 psutil/__init__.py                                 |  235 ++-
 psutil/_common.py                                  |   85 +-
 psutil/_psbsd.py                                   |   81 +-
 psutil/_pslinux.py                                 |  297 ++-
 psutil/_psosx.py                                   |   38 +-
 psutil/_psposix.py                                 |    2 +-
 psutil/_pssunos.py                                 |   73 +-
 psutil/_psutil_bsd.c                               |   68 +-
 psutil/_psutil_linux.c                             |   22 +-
 psutil/_psutil_osx.c                               |  203 +-
 psutil/_psutil_osx.h                               |    2 +
 psutil/_psutil_posix.c                             |    2 +-
 psutil/_psutil_sunos.c                             |   69 +-
 psutil/_psutil_windows.c                           |  507 +++--
 psutil/_psutil_windows.h                           |    2 +
 psutil/_pswindows.py                               |   69 +-
 psutil/arch/bsd/freebsd.c                          |   56 +-
 psutil/arch/bsd/freebsd.h                          |    1 +
 psutil/arch/bsd/netbsd.c                           |   46 +-
 psutil/arch/bsd/netbsd.h                           |    1 +
 psutil/arch/bsd/openbsd.c                          |   50 +-
 psutil/arch/bsd/openbsd.h                          |    1 +
 psutil/arch/osx/process_info.c                     |  122 ++
 psutil/arch/osx/process_info.h                     |    1 +
 psutil/arch/windows/ntextapi.h                     |  111 ++
 psutil/arch/windows/process_info.c                 |  628 ++++++-
 psutil/arch/windows/process_info.h                 |    3 +-
 psutil/tests/README.rst                            |   19 +
 psutil/tests/__init__.py                           |  603 ++++++
 psutil/tests/runner.py                             |   25 +
 test/_bsd.py => psutil/tests/test_bsd.py           |  137 +-
 test/_linux.py => psutil/tests/test_linux.py       |  994 +++++++---
 {test => psutil/tests}/test_memory_leaks.py        |   65 +-
 psutil/tests/test_misc.py                          |  437 +++++
 test/_osx.py => psutil/tests/test_osx.py           |   40 +-
 test/_posix.py => psutil/tests/test_posix.py       |  203 +-
 .../test_psutil.py => psutil/tests/test_process.py | 1948 ++++----------------
 test/_sunos.py => psutil/tests/test_sunos.py       |   19 +-
 psutil/tests/test_system.py                        |  692 +++++++
 test/_windows.py => psutil/tests/test_windows.py   |  134 +-
 {examples => scripts}/disk_usage.py                |    2 +-
 {examples => scripts}/free.py                      |    2 +-
 {examples => scripts}/ifconfig.py                  |    2 +-
 {examples => scripts}/iotop.py                     |    2 +-
 {examples => scripts}/killall.py                   |    0
 {examples => scripts}/meminfo.py                   |    2 +-
 {examples => scripts}/netstat.py                   |    2 +-
 {examples => scripts}/nettop.py                    |    2 +-
 {examples => scripts}/pidof.py                     |    0
 {examples => scripts}/pmap.py                      |    2 +-
 examples/process_detail.py => scripts/procinfo.py  |   12 +-
 scripts/procsmem.py                                |  101 +
 {examples => scripts}/ps.py                        |    2 +-
 {examples => scripts}/pstree.py                    |    2 +-
 {examples => scripts}/top.py                       |    6 +-
 {examples => scripts}/who.py                       |    2 +-
 setup.py                                           |   30 +-
 test/README.rst                                    |   21 -
 tox.ini                                            |    4 +-
 79 files changed, 6594 insertions(+), 3268 deletions(-)
 create mode 100644 DEVGUIDE.rst
 delete mode 100644 DEVNOTES.rst
 create mode 100644 IDEAS
 delete mode 100644 TODO
 create mode 100644 psutil/tests/README.rst
 create mode 100644 psutil/tests/__init__.py
 create mode 100644 psutil/tests/runner.py
 rename test/_bsd.py => psutil/tests/test_bsd.py (71%)
 rename test/_linux.py => psutil/tests/test_linux.py (52%)
 rename {test => psutil/tests}/test_memory_leaks.py (92%)
 create mode 100644 psutil/tests/test_misc.py
 rename test/_osx.py => psutil/tests/test_osx.py (89%)
 rename test/_posix.py => psutil/tests/test_posix.py (75%)
 rename test/test_psutil.py => psutil/tests/test_process.py (53%)
 rename test/_sunos.py => psutil/tests/test_sunos.py (69%)
 create mode 100644 psutil/tests/test_system.py
 rename test/_windows.py => psutil/tests/test_windows.py (80%)
 rename {examples => scripts}/disk_usage.py (98%)
 rename {examples => scripts}/free.py (97%)
 rename {examples => scripts}/ifconfig.py (98%)
 rename {examples => scripts}/iotop.py (99%)
 rename {examples => scripts}/killall.py (100%)
 rename {examples => scripts}/meminfo.py (98%)
 rename {examples => scripts}/netstat.py (98%)
 rename {examples => scripts}/nettop.py (99%)
 rename {examples => scripts}/pidof.py (100%)
 rename {examples => scripts}/pmap.py (98%)
 rename examples/process_detail.py => scripts/procinfo.py (95%)
 create mode 100755 scripts/procsmem.py
 rename {examples => scripts}/ps.py (99%)
 rename {examples => scripts}/pstree.py (98%)
 rename {examples => scripts}/top.py (98%)
 rename {examples => scripts}/who.py (97%)
 delete mode 100644 test/README.rst

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



More information about the Python-modules-commits mailing list