Skip to content

Commit 49adc87

Browse files
committed
Adjust source headers
We include the license in the repo and in the distributions. Having the license in the header of each file is unnecessary and we always let the year get out of date. Adjust the header to not include the license in every file.
1 parent ae036ee commit 49adc87

File tree

4 files changed

+0
-68
lines changed

4 files changed

+0
-68
lines changed

wcmatch/__init__.py

Lines changed: 0 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -2,22 +2,5 @@
22
Wild Card Match.
33
44
A custom implementation of `fnmatch` and `glob`.
5-
6-
Licensed under MIT
7-
Copyright (c) 2018 - 2020 Isaac Muse <[email protected]>
8-
9-
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated
10-
documentation files (the "Software"), to deal in the Software without restriction, including without limitation
11-
the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software,
12-
and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
13-
14-
The above copyright notice and this permission notice shall be included in all copies or substantial portions
15-
of the Software.
16-
17-
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED
18-
TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
19-
THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF
20-
CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
21-
IN THE SOFTWARE.
225
"""
236
from .__meta__ import __version_info__, __version__ # noqa: F401

wcmatch/fnmatch.py

Lines changed: 0 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -2,23 +2,6 @@
22
Wild Card Match.
33
44
A custom implementation of `fnmatch`.
5-
6-
Licensed under MIT
7-
Copyright (c) 2018 - 2020 Isaac Muse <[email protected]>
8-
9-
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated
10-
documentation files (the "Software"), to deal in the Software without restriction, including without limitation
11-
the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software,
12-
and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
13-
14-
The above copyright notice and this permission notice shall be included in all copies or substantial portions
15-
of the Software.
16-
17-
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED
18-
TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
19-
THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF
20-
CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
21-
IN THE SOFTWARE.
225
"""
236
from . import _wcparse
247
from typing import Tuple, List, AnyStr, Iterable, Union, Sequence, Optional

wcmatch/glob.py

Lines changed: 0 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -2,23 +2,6 @@
22
Wild Card Match.
33
44
A custom implementation of `glob`.
5-
6-
Licensed under MIT
7-
Copyright (c) 2018 - 2020 Isaac Muse <[email protected]>
8-
9-
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated
10-
documentation files (the "Software"), to deal in the Software without restriction, including without limitation
11-
the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software,
12-
and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
13-
14-
The above copyright notice and this permission notice shall be included in all copies or substantial portions
15-
of the Software.
16-
17-
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED
18-
TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
19-
THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF
20-
CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
21-
IN THE SOFTWARE.
225
"""
236
import os
247
import sys

wcmatch/wcmatch.py

Lines changed: 0 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -2,23 +2,6 @@
22
Wild Card Match.
33
44
A module for performing wild card matches.
5-
6-
Licensed under MIT
7-
Copyright (c) 2018 - 2020 Isaac Muse <[email protected]>
8-
9-
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated
10-
documentation files (the "Software"), to deal in the Software without restriction, including without limitation
11-
the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software,
12-
and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
13-
14-
The above copyright notice and this permission notice shall be included in all copies or substantial portions
15-
of the Software.
16-
17-
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED
18-
TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
19-
THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF
20-
CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
21-
IN THE SOFTWARE.
225
"""
236
import os
247
import re

0 commit comments

Comments
 (0)