[Python-modules-commits] [python-pyftpdlib] branch upstream updated (da5dc2d -> 333ae10)
Wolfgang Borgert
debacle at moszumanska.debian.org
Tue Oct 11 23:59:54 UTC 2016
This is an automated email from the git hooks/post-receive script.
debacle pushed a change to branch upstream
in repository python-pyftpdlib.
from da5dc2d Import python-pyftpdlib_1.4.0.orig.tar.gz
new 333ae10 Import python-pyftpdlib_1.5.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:
.git-pre-commit | 47 +
.travis.yml | 20 -
HISTORY.rst | 53 +
LICENSE | 2 +-
MANIFEST.in | 14 +-
Makefile | 55 +-
PKG-INFO | 287 ++++
README.rst | 7 +-
demo/anti_flood_ftpd.py | 33 +-
demo/basic_ftpd.py | 31 +-
demo/md5_ftpd.py | 51 +-
demo/multi_proc_ftp.py | 33 +-
demo/multi_thread_ftp.py | 33 +-
demo/throttled_ftpd.py | 39 +-
demo/tls_ftpd.py | 35 +-
demo/unix_daemon.py | 72 +-
demo/unix_ftpd.py | 35 +-
demo/winnt_ftpd.py | 33 +-
docs/Makefile | 177 ---
docs/README.rst | 15 -
docs/_static/copybutton.js | 57 -
docs/_static/favicon.ico | Bin 15086 -> 0 bytes
docs/_static/logo.png | Bin 13008 -> 0 bytes
docs/_static/sidebar.js | 161 --
docs/_template/globaltoc.html | 12 -
docs/_template/indexcontent.html | 4 -
docs/_template/indexsidebar.html | 8 -
docs/_template/page.html | 66 -
docs/_themes/pydoctheme/static/pydoctheme.css | 187 ---
docs/_themes/pydoctheme/theme.conf | 23 -
docs/adoptions.rst | 340 ----
docs/api.rst | 615 -------
docs/benchmarks.rst | 274 ----
docs/conf.py | 262 ---
docs/faqs.rst | 385 -----
docs/index.rst | 27 -
docs/install.rst | 43 -
docs/make.bat | 242 ---
docs/rfc-compliance.rst | 296 ----
docs/tutorial.rst | 536 -------
make.bat | 10 +-
pyftpdlib.egg-info/PKG-INFO | 287 ++++
pyftpdlib.egg-info/SOURCES.txt | 45 +
pyftpdlib.egg-info/dependency_links.txt | 1 +
pyftpdlib.egg-info/requires.txt | 6 +
pyftpdlib.egg-info/top_level.txt | 1 +
pyftpdlib/__init__.py | 49 +-
pyftpdlib/__main__.py | 52 +-
pyftpdlib/_compat.py | 70 +-
pyftpdlib/authorizers.py | 89 +-
pyftpdlib/contrib/__init__.py | 3 -
pyftpdlib/contrib/authorizers.py | 47 -
pyftpdlib/contrib/filesystems.py | 40 -
pyftpdlib/contrib/handlers.py | 40 -
pyftpdlib/filesystems.py | 40 +-
pyftpdlib/ftpserver.py | 89 --
pyftpdlib/handlers.py | 791 +++++----
pyftpdlib/ioloop.py | 512 +++---
pyftpdlib/log.py | 80 +-
pyftpdlib/servers.py | 152 +-
pyftpdlib/test/README | 5 +
pyftpdlib/test/__init__.py | 282 ++++
{test => pyftpdlib/test}/keycert.pem | 0
pyftpdlib/test/runner.py | 33 +
pyftpdlib/test/test_authorizers.py | 554 +++++++
pyftpdlib/test/test_filesystems.py | 219 +++
.../test/test_functional.py | 1674 ++++++--------------
pyftpdlib/test/test_functional_ssl.py | 373 +++++
pyftpdlib/test/test_ioloop.py | 291 ++++
pyftpdlib/test/test_servers.py | 223 +++
test/bench.py => scripts/ftpbench | 434 ++---
setup.cfg | 5 +
setup.py | 94 +-
test/test_contrib.py | 963 -----------
tox.ini | 29 -
75 files changed, 4477 insertions(+), 7716 deletions(-)
create mode 100755 .git-pre-commit
delete mode 100644 .travis.yml
create mode 100644 PKG-INFO
delete mode 100644 docs/Makefile
delete mode 100644 docs/README.rst
delete mode 100644 docs/_static/copybutton.js
delete mode 100644 docs/_static/favicon.ico
delete mode 100644 docs/_static/logo.png
delete mode 100644 docs/_static/sidebar.js
delete mode 100644 docs/_template/globaltoc.html
delete mode 100644 docs/_template/indexcontent.html
delete mode 100644 docs/_template/indexsidebar.html
delete mode 100644 docs/_template/page.html
delete mode 100644 docs/_themes/pydoctheme/static/pydoctheme.css
delete mode 100644 docs/_themes/pydoctheme/theme.conf
delete mode 100644 docs/adoptions.rst
delete mode 100644 docs/api.rst
delete mode 100644 docs/benchmarks.rst
delete mode 100644 docs/conf.py
delete mode 100644 docs/faqs.rst
delete mode 100644 docs/index.rst
delete mode 100644 docs/install.rst
delete mode 100644 docs/make.bat
delete mode 100644 docs/rfc-compliance.rst
delete mode 100644 docs/tutorial.rst
create mode 100644 pyftpdlib.egg-info/PKG-INFO
create mode 100644 pyftpdlib.egg-info/SOURCES.txt
create mode 100644 pyftpdlib.egg-info/dependency_links.txt
create mode 100644 pyftpdlib.egg-info/requires.txt
create mode 100644 pyftpdlib.egg-info/top_level.txt
delete mode 100644 pyftpdlib/contrib/__init__.py
delete mode 100644 pyftpdlib/contrib/authorizers.py
delete mode 100644 pyftpdlib/contrib/filesystems.py
delete mode 100644 pyftpdlib/contrib/handlers.py
delete mode 100644 pyftpdlib/ftpserver.py
create mode 100644 pyftpdlib/test/README
create mode 100644 pyftpdlib/test/__init__.py
rename {test => pyftpdlib/test}/keycert.pem (100%)
create mode 100644 pyftpdlib/test/runner.py
create mode 100644 pyftpdlib/test/test_authorizers.py
create mode 100644 pyftpdlib/test/test_filesystems.py
rename test/test_ftpd.py => pyftpdlib/test/test_functional.py (67%)
create mode 100644 pyftpdlib/test/test_functional_ssl.py
create mode 100644 pyftpdlib/test/test_ioloop.py
create mode 100644 pyftpdlib/test/test_servers.py
rename test/bench.py => scripts/ftpbench (58%)
mode change 100644 => 100755
create mode 100644 setup.cfg
delete mode 100644 test/test_contrib.py
delete mode 100644 tox.ini
--
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/python-modules/packages/python-pyftpdlib.git
More information about the Python-modules-commits
mailing list