Skip to content

Commit 83a4e77

Browse files
author
Warren Chu
committed
added Microsoft source code license comments to top of python files
1 parent 8031785 commit 83a4e77

File tree

18 files changed

+54
-0
lines changed

18 files changed

+54
-0
lines changed

manage.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
# Copyright (c) Microsoft Corporation.
2+
# Licensed under the MIT license.
3+
14
#!/usr/bin/env python
25
import os
36
import sys

setup.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
# Copyright (c) Microsoft Corporation.
2+
# Licensed under the MIT license.
3+
14
from setuptools import find_packages, setup
25

36
CLASSIFIERS = [

sql_server/pyodbc/__init__.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1 +1,4 @@
1+
# Copyright (c) Microsoft Corporation.
2+
# Licensed under the MIT license.
3+
14
import sql_server.pyodbc.functions # noqa

sql_server/pyodbc/base.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
# Copyright (c) Microsoft Corporation.
2+
# Licensed under the MIT license.
3+
14
"""
25
MS SQL Server database backend for Django.
36
"""

sql_server/pyodbc/client.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
# Copyright (c) Microsoft Corporation.
2+
# Licensed under the MIT license.
3+
14
import re
25
import subprocess
36

sql_server/pyodbc/compiler.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
# Copyright (c) Microsoft Corporation.
2+
# Licensed under the MIT license.
3+
14
import types
25
from itertools import chain
36

sql_server/pyodbc/creation.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
# Copyright (c) Microsoft Corporation.
2+
# Licensed under the MIT license.
3+
14
import binascii
25
import os
36

sql_server/pyodbc/features.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
# Copyright (c) Microsoft Corporation.
2+
# Licensed under the MIT license.
3+
14
from django.db.backends.base.features import BaseDatabaseFeatures
25
from django.utils.functional import cached_property
36

sql_server/pyodbc/functions.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
# Copyright (c) Microsoft Corporation.
2+
# Licensed under the MIT license.
3+
14
from django import VERSION
25
from django.db.models import BooleanField
36
from django.db.models.functions import Cast

sql_server/pyodbc/introspection.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
# Copyright (c) Microsoft Corporation.
2+
# Licensed under the MIT license.
3+
14
import pyodbc as Database
25

36
from django.db.backends.base.introspection import (

0 commit comments

Comments
 (0)