jsonrpc-base

Pure python standard library JSONRPC data interface
git clone git://git.defalsify.org/python-jsonrpc-base.git
Log | Files | Refs | LICENSE

commit dddac03ec0efde6d7697377ddd4a0aaa134a6890
parent d94a42d734765a00bd340260916e1de55a374cbf
Author: nolash <dev@holbrook.no>
Date:   Sun, 31 Oct 2021 07:06:14 +0100

License change GPL -> WTFPL

Diffstat:
ALICENSE | 14++++++++++++++
Msetup.cfg | 6+++---
Mtests/test_parse.py | 1+
3 files changed, 18 insertions(+), 3 deletions(-)

diff --git a/LICENSE b/LICENSE @@ -0,0 +1,14 @@ + DO WHAT THE FUCK YOU WANT TO PUBLIC LICENSE + Version 2, December 2004 + + Copyright (C) 2004 Sam Hocevar <sam@hocevar.net> + + Everyone is permitted to copy and distribute verbatim or modified + copies of this license document, and changing it is allowed as long + as the name is changed. + + DO WHAT THE FUCK YOU WANT TO PUBLIC LICENSE + TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION + + 0. You just DO WHAT THE FUCK YOU WANT TO. + diff --git a/setup.cfg b/setup.cfg @@ -1,6 +1,6 @@ [metadata] name = jsonrpc_std -version = 0.0.1a2 +version = 0.1.0 description = Pure python standard library JSONRPC data interface author = Louis Holbrook author_email = dev@holbrook.no @@ -15,9 +15,9 @@ classifiers = Intended Audience :: Developers License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+) Topic :: Software Development :: Libraries -license = GPL3 +license = WTFPL licence_files = - LICENSE.txt + LICENSE [options] python_requires = >= 3.6 diff --git a/tests/test_parse.py b/tests/test_parse.py @@ -93,6 +93,7 @@ class TestParse(unittest.TestCase): with self.assertRaises(JSONRPCInvalidRequestError): jsonrpc_from_dict(o) + def test_params(self): o = self.valid_o del o['params']