[Python-modules-commits] [python-psutil] branch upstream updated (69f008a -> ec23e98)

Sandro Tosi morph at moszumanska.debian.org
Sun Jan 17 21:10:30 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  69f008a   Imported Upstream version 2.2.1
       new  ec23e98   Import python-psutil_3.4.1.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                           |   21 +
 .git-pre-commit                       |   47 +
 .gitignore                            |   18 +
 .travis.yml                           |   41 +-
 CREDITS                               |   80 +-
 DEVNOTES.rst                          |   10 +
 HISTORY.rst                           |  197 ++++
 INSTALL.rst                           |   70 +-
 MANIFEST.in                           |   10 +-
 Makefile                              |   70 +-
 PKG-INFO                              |   86 +-
 README.rst                            |   83 +-
 TODO                                  |   74 +-
 appveyor.yml                          |   77 ++
 docs/index.rst                        |  363 ++++--
 examples/ifconfig.py                  |   80 ++
 examples/iotop.py                     |   15 +-
 examples/nettop.py                    |   10 +-
 examples/process_detail.py            |   21 +-
 examples/ps.py                        |    0
 examples/pstree.py                    |    2 +-
 examples/top.py                       |   12 +-
 make.bat                              |  163 ++-
 psutil.egg-info/PKG-INFO              |   86 +-
 psutil.egg-info/SOURCES.txt           |   25 +-
 psutil.egg-info/top_level.txt         |    2 -
 psutil/__init__.py                    |  846 +++++++-------
 psutil/_common.py                     |  161 +--
 psutil/_compat.py                     |   87 +-
 psutil/_psbsd.py                      |  420 +++++--
 psutil/_pslinux.py                    |  570 ++++++----
 psutil/_psosx.py                      |   48 +-
 psutil/_psposix.py                    |   15 +-
 psutil/_pssunos.py                    |   76 +-
 psutil/_psutil_bsd.c                  | 1988 +++++++--------------------------
 psutil/_psutil_bsd.h                  |   17 -
 psutil/_psutil_linux.c                |  277 +++--
 psutil/_psutil_linux.h                |    1 +
 psutil/_psutil_osx.c                  |  592 +++++-----
 psutil/_psutil_posix.c                |  454 +++++++-
 psutil/_psutil_posix.h                |    5 +
 psutil/_psutil_sunos.c                |  402 ++++---
 psutil/_psutil_sunos.h                |    1 +
 psutil/_psutil_windows.c              | 1699 +++++++++++++++-------------
 psutil/_psutil_windows.h              |   10 +-
 psutil/_pswindows.py                  |  168 ++-
 psutil/arch/bsd/freebsd.c             |  976 ++++++++++++++++
 psutil/arch/bsd/freebsd.h             |   30 +
 psutil/arch/bsd/freebsd_socks.c       |  631 +++++++++++
 psutil/arch/bsd/freebsd_socks.h       |   11 +
 psutil/arch/bsd/netbsd.c              |  668 +++++++++++
 psutil/arch/bsd/netbsd.h              |   29 +
 psutil/arch/bsd/netbsd_socks.c        |  542 +++++++++
 psutil/arch/bsd/netbsd_socks.h        |   10 +
 psutil/arch/bsd/openbsd.c             |  793 +++++++++++++
 psutil/arch/bsd/openbsd.h             |   28 +
 psutil/arch/bsd/process_info.c        |  272 -----
 psutil/arch/bsd/process_info.h        |   15 -
 psutil/arch/osx/process_info.c        |  109 +-
 psutil/arch/osx/process_info.h        |    2 +-
 psutil/arch/solaris/v10/ifaddrs.c     |  124 ++
 psutil/arch/solaris/v10/ifaddrs.h     |   26 +
 psutil/arch/windows/inet_ntop.c       |   38 +
 psutil/arch/windows/inet_ntop.h       |   10 +
 psutil/arch/windows/ntextapi.h        |  106 +-
 psutil/arch/windows/process_handles.c |  771 ++++++++-----
 psutil/arch/windows/process_handles.h |  101 ++
 psutil/arch/windows/process_info.c    |  112 +-
 psutil/arch/windows/process_info.h    |   11 +-
 psutil/arch/windows/security.c        |   33 +-
 setup.py                              |  142 ++-
 test/README                           |   15 -
 test/README.rst                       |   21 +
 test/__init__.py                      |    0
 test/_bsd.py                          |  165 ++-
 test/_linux.py                        |  455 +++++++-
 test/_osx.py                          |   80 +-
 test/_posix.py                        |   68 +-
 test/_sunos.py                        |   18 +-
 test/_windows.py                      |  212 +++-
 test/test_memory_leaks.py             |   90 +-
 test/test_psutil.py                   | 1489 ++++++++++++++++--------
 tox.ini                               |   22 +-
 83 files changed, 11890 insertions(+), 5835 deletions(-)
 create mode 100644 .coveragerc
 create mode 100755 .git-pre-commit
 create mode 100644 .gitignore
 create mode 100644 DEVNOTES.rst
 create mode 100644 appveyor.yml
 create mode 100755 examples/ifconfig.py
 mode change 100644 => 100755 examples/ps.py
 mode change 100644 => 100755 examples/pstree.py
 create mode 100644 psutil/arch/bsd/freebsd.c
 create mode 100644 psutil/arch/bsd/freebsd.h
 create mode 100644 psutil/arch/bsd/freebsd_socks.c
 create mode 100644 psutil/arch/bsd/freebsd_socks.h
 create mode 100644 psutil/arch/bsd/netbsd.c
 create mode 100644 psutil/arch/bsd/netbsd.h
 create mode 100644 psutil/arch/bsd/netbsd_socks.c
 create mode 100644 psutil/arch/bsd/netbsd_socks.h
 create mode 100644 psutil/arch/bsd/openbsd.c
 create mode 100644 psutil/arch/bsd/openbsd.h
 delete mode 100644 psutil/arch/bsd/process_info.c
 delete mode 100644 psutil/arch/bsd/process_info.h
 create mode 100644 psutil/arch/solaris/v10/ifaddrs.c
 create mode 100644 psutil/arch/solaris/v10/ifaddrs.h
 create mode 100644 psutil/arch/windows/inet_ntop.c
 create mode 100644 psutil/arch/windows/inet_ntop.h
 delete mode 100644 test/README
 create mode 100644 test/README.rst
 delete mode 100644 test/__init__.py

-- 
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