summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKevin Van Brunt <kmvanbrunt@gmail.com>2019-06-07 16:54:52 -0400
committerKevin Van Brunt <kmvanbrunt@gmail.com>2019-06-07 16:54:52 -0400
commit0b0ccc5b6e00258d9fe7e98f3a2dd1a1081ac457 (patch)
tree923a9ce5c9f1eab31b5c59388a22d600ff94f8c2
parentab1ae68d2747b82812b03edbbccfbca39cf1c638 (diff)
downloadcmd2-git-0b0ccc5b6e00258d9fe7e98f3a2dd1a1081ac457.tar.gz
Removed copyright headers from source files and updated LICENSE with current year
-rw-r--r--LICENSE2
-rw-r--r--cmd2/argparse_completer.py3
-rw-r--r--cmd2/pyscript_bridge.py3
-rwxr-xr-xexamples/tab_autocomp_dynamic.py3
-rwxr-xr-xexamples/tab_autocompletion.py3
-rw-r--r--tests/conftest.py3
-rw-r--r--tests/test_acargparse.py3
-rw-r--r--tests/test_autocompletion.py3
-rw-r--r--tests/test_cmd2.py3
-rw-r--r--tests/test_completion.py3
-rw-r--r--tests/test_parsing.py3
-rw-r--r--tests/test_plugin.py3
-rw-r--r--tests/test_transcript.py3
-rw-r--r--tests/test_utils.py3
14 files changed, 1 insertions, 40 deletions
diff --git a/LICENSE b/LICENSE
index 2eb890d7..7f916117 100644
--- a/LICENSE
+++ b/LICENSE
@@ -1,6 +1,6 @@
The MIT License (MIT)
-Copyright (c) 2008-2016 Catherine Devlin and others
+Copyright (c) 2008-2019 Catherine Devlin and others
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
diff --git a/cmd2/argparse_completer.py b/cmd2/argparse_completer.py
index feff4835..6b3f5298 100644
--- a/cmd2/argparse_completer.py
+++ b/cmd2/argparse_completer.py
@@ -55,9 +55,6 @@ How to supply completion choice lists or functions for sub-commands:
The subcommand group dictionary maps subcommand names to tuple(arg_choices, subcmd_args_lookup)
For more details of this more complex approach see tab_autocompletion.py in the examples
-
-Copyright 2018 Eric Lin <anselor@gmail.com>
-Released under MIT license, see LICENSE file
"""
import argparse
diff --git a/cmd2/pyscript_bridge.py b/cmd2/pyscript_bridge.py
index a8e17555..944c7eae 100644
--- a/cmd2/pyscript_bridge.py
+++ b/cmd2/pyscript_bridge.py
@@ -2,9 +2,6 @@
"""
Bridges calls made inside of pyscript with the Cmd2 host app while maintaining a reasonable
degree of isolation between the two
-
-Copyright 2018 Eric Lin <anselor@gmail.com>
-Released under MIT license, see LICENSE file
"""
import sys
diff --git a/examples/tab_autocomp_dynamic.py b/examples/tab_autocomp_dynamic.py
index 03e46f8a..b518c013 100755
--- a/examples/tab_autocomp_dynamic.py
+++ b/examples/tab_autocomp_dynamic.py
@@ -2,9 +2,6 @@
# coding=utf-8
"""
A example usage of AutoCompleter with delayed initialization of the argparse object
-
-Copyright 2018 Eric Lin <anselor@gmail.com>
-Released under MIT license, see LICENSE file
"""
from typing import List
diff --git a/examples/tab_autocompletion.py b/examples/tab_autocompletion.py
index 6883c423..8f27cb90 100755
--- a/examples/tab_autocompletion.py
+++ b/examples/tab_autocompletion.py
@@ -2,9 +2,6 @@
# coding=utf-8
"""
A example usage of the AutoCompleter
-
-Copyright 2018 Eric Lin <anselor@gmail.com>
-Released under MIT license, see LICENSE file
"""
import argparse
import itertools
diff --git a/tests/conftest.py b/tests/conftest.py
index dc5c1ab1..517e2865 100644
--- a/tests/conftest.py
+++ b/tests/conftest.py
@@ -1,9 +1,6 @@
# coding=utf-8
"""
Cmd2 unit/functional testing
-
-Copyright 2016 Federico Ceratto <federico.ceratto@gmail.com>
-Released under MIT license, see LICENSE file
"""
import sys
from typing import Optional
diff --git a/tests/test_acargparse.py b/tests/test_acargparse.py
index 64612737..436158db 100644
--- a/tests/test_acargparse.py
+++ b/tests/test_acargparse.py
@@ -1,9 +1,6 @@
# flake8: noqa E302
"""
Unit/functional testing for argparse customizations in cmd2
-
-Copyright 2018 Eric Lin <anselor@gmail.com>
-Released under MIT license, see LICENSE file
"""
import pytest
from cmd2.argparse_completer import ACArgumentParser, is_potential_flag
diff --git a/tests/test_autocompletion.py b/tests/test_autocompletion.py
index 005eee81..4e1ceff0 100644
--- a/tests/test_autocompletion.py
+++ b/tests/test_autocompletion.py
@@ -2,9 +2,6 @@
# flake8: noqa E302
"""
Unit/functional testing for argparse completer in cmd2
-
-Copyright 2018 Eric Lin <anselor@gmail.com>
-Released under MIT license, see LICENSE file
"""
import pytest
diff --git a/tests/test_cmd2.py b/tests/test_cmd2.py
index 3ce4123c..2b7b6578 100644
--- a/tests/test_cmd2.py
+++ b/tests/test_cmd2.py
@@ -2,9 +2,6 @@
# flake8: noqa E302
"""
Cmd2 unit/functional testing
-
-Copyright 2016 Federico Ceratto <federico.ceratto@gmail.com>
-Released under MIT license, see LICENSE file
"""
import argparse
import builtins
diff --git a/tests/test_completion.py b/tests/test_completion.py
index 6fd45ff9..0a16bc28 100644
--- a/tests/test_completion.py
+++ b/tests/test_completion.py
@@ -5,9 +5,6 @@ Unit/functional testing for readline tab-completion functions in the cmd2.py mod
These are primarily tests related to readline completer functions which handle tab-completion of cmd2/cmd commands,
file system paths, and shell commands.
-
-Copyright 2017 Todd Leonhardt <todd.leonhardt@gmail.com>
-Released under MIT license, see LICENSE file
"""
import argparse
import os
diff --git a/tests/test_parsing.py b/tests/test_parsing.py
index de8d67af..5ba02a95 100644
--- a/tests/test_parsing.py
+++ b/tests/test_parsing.py
@@ -2,9 +2,6 @@
# flake8: noqa E302
"""
Test the parsing logic in parsing.py
-
-Copyright 2017 Todd Leonhardt <todd.leonhardt@gmail.com>
-Released under MIT license, see LICENSE file
"""
import attr
import pytest
diff --git a/tests/test_plugin.py b/tests/test_plugin.py
index 242b0d25..d439c123 100644
--- a/tests/test_plugin.py
+++ b/tests/test_plugin.py
@@ -2,9 +2,6 @@
# flake8: noqa E302
"""
Test plugin infrastructure and hooks.
-
-Copyright 2018 Jared Crapo <jared@kotfu.net>
-Released under MIT license, see LICENSE file
"""
import pytest
diff --git a/tests/test_transcript.py b/tests/test_transcript.py
index d39fe286..9d804a88 100644
--- a/tests/test_transcript.py
+++ b/tests/test_transcript.py
@@ -2,9 +2,6 @@
# flake8: noqa E302
"""
Cmd2 functional testing based on transcript
-
-Copyright 2016 Federico Ceratto <federico.ceratto@gmail.com>
-Released under MIT license, see LICENSE file
"""
import argparse
import os
diff --git a/tests/test_utils.py b/tests/test_utils.py
index c0b16990..b43eb10c 100644
--- a/tests/test_utils.py
+++ b/tests/test_utils.py
@@ -2,9 +2,6 @@
# flake8: noqa E302
"""
Unit testing for cmd2/utils.py module.
-
-Copyright 2018 Todd Leonhardt <todd.leonhardt@gmail.com>
-Released under MIT license, see LICENSE file
"""
import signal
import sys