Skip to content

Commit 0b0ccc5

Browse files
committed
Removed copyright headers from source files and updated LICENSE with current year
1 parent ab1ae68 commit 0b0ccc5

14 files changed

+1
-40
lines changed

LICENSE

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
The MIT License (MIT)
22

3-
Copyright (c) 2008-2016 Catherine Devlin and others
3+
Copyright (c) 2008-2019 Catherine Devlin and others
44

55
Permission is hereby granted, free of charge, to any person obtaining a copy
66
of this software and associated documentation files (the "Software"), to deal

cmd2/argparse_completer.py

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -55,9 +55,6 @@ def my_completer(text: str, line: str, begidx: int, endidx:int, extra_param: str
5555
The subcommand group dictionary maps subcommand names to tuple(arg_choices, subcmd_args_lookup)
5656
5757
For more details of this more complex approach see tab_autocompletion.py in the examples
58-
59-
Copyright 2018 Eric Lin <[email protected]>
60-
Released under MIT license, see LICENSE file
6158
"""
6259

6360
import argparse

cmd2/pyscript_bridge.py

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,6 @@
22
"""
33
Bridges calls made inside of pyscript with the Cmd2 host app while maintaining a reasonable
44
degree of isolation between the two
5-
6-
Copyright 2018 Eric Lin <[email protected]>
7-
Released under MIT license, see LICENSE file
85
"""
96

107
import sys

examples/tab_autocomp_dynamic.py

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,6 @@
22
# coding=utf-8
33
"""
44
A example usage of AutoCompleter with delayed initialization of the argparse object
5-
6-
Copyright 2018 Eric Lin <[email protected]>
7-
Released under MIT license, see LICENSE file
85
"""
96
from typing import List
107

examples/tab_autocompletion.py

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,6 @@
22
# coding=utf-8
33
"""
44
A example usage of the AutoCompleter
5-
6-
Copyright 2018 Eric Lin <[email protected]>
7-
Released under MIT license, see LICENSE file
85
"""
96
import argparse
107
import itertools

tests/conftest.py

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,6 @@
11
# coding=utf-8
22
"""
33
Cmd2 unit/functional testing
4-
5-
Copyright 2016 Federico Ceratto <[email protected]>
6-
Released under MIT license, see LICENSE file
74
"""
85
import sys
96
from typing import Optional

tests/test_acargparse.py

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,6 @@
11
# flake8: noqa E302
22
"""
33
Unit/functional testing for argparse customizations in cmd2
4-
5-
Copyright 2018 Eric Lin <[email protected]>
6-
Released under MIT license, see LICENSE file
74
"""
85
import pytest
96
from cmd2.argparse_completer import ACArgumentParser, is_potential_flag

tests/test_autocompletion.py

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,6 @@
22
# flake8: noqa E302
33
"""
44
Unit/functional testing for argparse completer in cmd2
5-
6-
Copyright 2018 Eric Lin <[email protected]>
7-
Released under MIT license, see LICENSE file
85
"""
96
import pytest
107

tests/test_cmd2.py

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,6 @@
22
# flake8: noqa E302
33
"""
44
Cmd2 unit/functional testing
5-
6-
Copyright 2016 Federico Ceratto <[email protected]>
7-
Released under MIT license, see LICENSE file
85
"""
96
import argparse
107
import builtins

tests/test_completion.py

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,6 @@
55
66
These are primarily tests related to readline completer functions which handle tab-completion of cmd2/cmd commands,
77
file system paths, and shell commands.
8-
9-
Copyright 2017 Todd Leonhardt <[email protected]>
10-
Released under MIT license, see LICENSE file
118
"""
129
import argparse
1310
import os

0 commit comments

Comments
 (0)