# HG changeset patch # User Thierry Florac # Date 1542377713 -3600 # Node ID b04690a8d80fc9351ee9dce6ad3990c3e5d80f8f # Parent f37f19b7fff3f37c938f26ef0e3d33214f5f6fde Version 0.1.23 diff -r f37f19b7fff3 -r b04690a8d80f docs/HISTORY.txt --- a/docs/HISTORY.txt Wed Nov 14 17:56:13 2018 +0100 +++ b/docs/HISTORY.txt Fri Nov 16 15:15:13 2018 +0100 @@ -1,6 +1,12 @@ Changelog ========= +0.1.23 +------ + - added function to check if TCP port is already opened + - added "truncate" TALES extension + - updated Fanstatic package docstring + 0.1.22 ------ - updated Fanstatic's external resource declaration to handle resources types not based on URLs diff -r f37f19b7fff3 -r b04690a8d80f src/pyams_utils.egg-info/PKG-INFO --- a/src/pyams_utils.egg-info/PKG-INFO Wed Nov 14 17:56:13 2018 +0100 +++ b/src/pyams_utils.egg-info/PKG-INFO Fri Nov 16 15:15:13 2018 +0100 @@ -1,6 +1,6 @@ Metadata-Version: 2.1 Name: pyams-utils -Version: 0.1.22 +Version: 0.1.23 Summary: Utility functions and classes for PyAMS Home-page: http://www.ztfy.org Author: Thierry Florac @@ -47,6 +47,12 @@ Changelog ========= + 0.1.23 + ------ + - added function to check if TCP port is already opened + - added "truncate" TALES extension + - updated Fanstatic package docstring + 0.1.22 ------ - updated Fanstatic's external resource declaration to handle resources types not based on URLs diff -r f37f19b7fff3 -r b04690a8d80f src/pyams_utils.egg-info/SOURCES.txt --- a/src/pyams_utils.egg-info/SOURCES.txt Wed Nov 14 17:56:13 2018 +0100 +++ b/src/pyams_utils.egg-info/SOURCES.txt Fri Nov 16 15:15:13 2018 +0100 @@ -70,6 +70,7 @@ src/pyams_utils/locales/fr/LC_MESSAGES/pyams_utils.po src/pyams_utils/protocol/__init__.py src/pyams_utils/protocol/http.py +src/pyams_utils/protocol/tcp.py src/pyams_utils/protocol/xmlrpc.py src/pyams_utils/scripts/__init__.py src/pyams_utils/scripts/zodb.py diff -r f37f19b7fff3 -r b04690a8d80f tox.ini --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/tox.ini Fri Nov 16 15:15:13 2018 +0100 @@ -0,0 +1,11 @@ +# tox (https://tox.readthedocs.io/) is a tool for running tests +# in multiple virtualenvs. This configuration file will run the +# test suite on all supported python versions. To use it, "pip install tox" +# and then run "tox" from this directory. + +[tox] +envlist = py34, py35, py36, pypy + +[testenv] +commands = python setup.py test +deps = -c http://download.ztfy.org/pyams/requirements.txt