Skip to content

Commit 83c917d

Browse files
committed
Fixed license headers
Fixed License Headers # Copyright contributors to the python-itoolkit project # SPDX-License-Identifier: MIT Signed-off-by: jennifer566 <[email protected]>
1 parent d2ec84d commit 83c917d

19 files changed

+38
-1
lines changed

src/itoolkit/__init__.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
# Copyright contributors to the python-itoolkit project
2+
# SPDX-License-Identifier: MIT
13
__version__ = "2.0.0-dev"
24

35
from .toolkit import iToolKit

src/itoolkit/base.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
# Copyright contributors to the python-itoolkit project
2+
# SPDX-License-Identifier: MIT
13
import xml.dom.minidom
24

35
class iBase: # noqa N801

src/itoolkit/command.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
# Copyright contributors to the python-itoolkit project
2+
# SPDX-License-Identifier: MIT
13
from .base import iBase
24

35

src/itoolkit/db2/idb2call.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
# Copyright contributors to the python-itoolkit project
2+
# SPDX-License-Identifier: MIT
13
# -*- coding: utf-8 -*-
24
import warnings
35
import os

src/itoolkit/errors.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
# Copyright contributors to the python-itoolkit project
2+
# SPDX-License-Identifier: MIT
13
__all__ = [
24
'TransportError',
35
'TransportClosedException',

src/itoolkit/lib/ilibcall.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
# Copyright contributors to the python-itoolkit project
2+
# SPDX-License-Identifier: MIT
13
# -*- coding: utf-8 -*-
24
import warnings
35
from ..transport.direct import DirectTransport

src/itoolkit/program_call.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
# Copyright contributors to the python-itoolkit project
2+
# SPDX-License-Identifier: MIT
13
from .base import iBase
24

35

src/itoolkit/rest/irestcall.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
# Copyright contributors to the python-itoolkit project
2+
# SPDX-License-Identifier: MIT
13
# -*- coding: utf-8 -*-
24
import warnings
35
import os

src/itoolkit/shell.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
# Copyright contributors to the python-itoolkit project
2+
# SPDX-License-Identifier: MIT
13
from .base import iBase
24

35
try:

src/itoolkit/sql.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
# Copyright contributors to the python-itoolkit project
2+
# SPDX-License-Identifier: MIT
13
import xml.dom.minidom
24

35
from .base import iBase

src/itoolkit/toolkit.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
1-
1+
# Copyright contributors to the python-itoolkit project
2+
# SPDX-License-Identifier: MIT
23
import xml.dom.minidom
34
import re
45
import sys

src/itoolkit/transport/__init__.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
# Copyright contributors to the python-itoolkit project
2+
# SPDX-License-Identifier: MIT
13
# -*- coding: utf-8 -*-
24
from .base import XmlServiceTransport
35
from .database import DatabaseTransport

src/itoolkit/transport/_direct.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
# Copyright contributors to the python-itoolkit project
2+
# SPDX-License-Identifier: MIT
13
import os
24

35
from ctypes import c_int, c_uint, c_int16, c_ulonglong, c_void_p, c_char_p, \

src/itoolkit/transport/base.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
# Copyright contributors to the python-itoolkit project
2+
# SPDX-License-Identifier: MIT
13
from .errors import TransportClosedError
24

35

src/itoolkit/transport/database.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
# Copyright contributors to the python-itoolkit project
2+
# SPDX-License-Identifier: MIT
13
# -*- coding: utf-8 -*-
24
import logging
35

src/itoolkit/transport/direct.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
# Copyright contributors to the python-itoolkit project
2+
# SPDX-License-Identifier: MIT
13
# -*- coding: utf-8 -*-
24
from .base import XmlServiceTransport
35

src/itoolkit/transport/errors.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
# Copyright contributors to the python-itoolkit project
2+
# SPDX-License-Identifier: MIT
13
from ..errors import TransportClosedException
24

35
class TransportClosedError(TransportClosedException):

src/itoolkit/transport/http.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
# Copyright contributors to the python-itoolkit project
2+
# SPDX-License-Identifier: MIT
13
# -*- coding: utf-8 -*-
24
from .base import XmlServiceTransport
35
import contextlib

src/itoolkit/transport/ssh.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
# Copyright contributors to the python-itoolkit project
2+
# SPDX-License-Identifier: MIT
13
# -*- coding: utf-8 -*-
24
"""
35
XMLSERVICE ssh call (ssh job, often in QUSRWRK)

0 commit comments

Comments
 (0)