Skip to content

Commit af2a3fa

Browse files
committed
Add or Update copyright year to files
1 parent d488a0c commit af2a3fa

File tree

16 files changed

+73
-21
lines changed

16 files changed

+73
-21
lines changed

LICENSE

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
Copyright (c) 2009, Andi Albrecht <[email protected]>
1+
Copyright (c) 2016, Andi Albrecht <[email protected]>
22
All rights reserved.
33

44
Redistribution and use in source and binary forms, with or without modification,
@@ -22,4 +22,4 @@ DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
2222
SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
2323
CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
2424
OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
25-
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
25+
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.

bin/sqlformat

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,10 @@
11
#!/usr/bin/env python
2-
3-
# Copyright (C) 2008 Andi Albrecht, [email protected]
2+
# -*- coding: utf-8 -*-
3+
#
4+
# Copyright (C) 2016 Andi Albrecht, [email protected]
45
#
56
# This module is part of python-sqlparse and is released under
6-
# the BSD License: http://www.opensource.org/licenses/bsd-license.php.
7+
# the BSD License: http://www.opensource.org/licenses/bsd-license.php
78

89
import optparse
910
import os

setup.py

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,9 @@
1-
# Copyright (C) 2008 Andi Albrecht, [email protected]
1+
# -*- coding: utf-8 -*-
2+
#
3+
# Copyright (C) 2016 Andi Albrecht, [email protected]
24
#
35
# This setup script is part of python-sqlparse and is released under
4-
# the BSD License: http://www.opensource.org/licenses/bsd-license.php.
6+
# the BSD License: http://www.opensource.org/licenses/bsd-license.php
57

68
import re
79
import sys

sqlparse/__init__.py

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,9 @@
1-
# Copyright (C) 2008 Andi Albrecht, [email protected]
1+
# -*- coding: utf-8 -*-
2+
#
3+
# Copyright (C) 2016 Andi Albrecht, [email protected]
24
#
35
# This module is part of python-sqlparse and is released under
4-
# the BSD License: http://www.opensource.org/licenses/bsd-license.php.
6+
# the BSD License: http://www.opensource.org/licenses/bsd-license.php
57

68
"""Parse SQL statements."""
79

sqlparse/compat.py

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,10 @@
1+
# -*- coding: utf-8 -*-
2+
#
3+
# Copyright (C) 2016 Andi Albrecht, [email protected]
4+
#
5+
# This module is part of python-sqlparse and is released under
6+
# the BSD License: http://www.opensource.org/licenses/bsd-license.php
7+
18
"""Python 2/3 compatibility.
29
310
This module only exists to avoid a dependency on six

sqlparse/engine/__init__.py

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,9 @@
1-
# Copyright (C) 2008 Andi Albrecht, [email protected]
1+
# -*- coding: utf-8 -*-
2+
#
3+
# Copyright (C) 2016 Andi Albrecht, [email protected]
24
#
35
# This module is part of python-sqlparse and is released under
4-
# the BSD License: http://www.opensource.org/licenses/bsd-license.php.
6+
# the BSD License: http://www.opensource.org/licenses/bsd-license.php
57

68
"""filter"""
79

sqlparse/engine/filter.py

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,9 @@
11
# -*- coding: utf-8 -*-
2+
#
3+
# Copyright (C) 2016 Andi Albrecht, [email protected]
4+
#
5+
# This module is part of python-sqlparse and is released under
6+
# the BSD License: http://www.opensource.org/licenses/bsd-license.php
27

38
from sqlparse.sql import Statement, Token
49
from sqlparse import tokens as T

sqlparse/engine/grouping.py

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,9 @@
11
# -*- coding: utf-8 -*-
2+
#
3+
# Copyright (C) 2016 Andi Albrecht, [email protected]
4+
#
5+
# This module is part of python-sqlparse and is released under
6+
# the BSD License: http://www.opensource.org/licenses/bsd-license.php
27

38
from sqlparse import sql
49
from sqlparse import tokens as T

sqlparse/exceptions.py

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,9 @@
1-
# Copyright (C) 2012 Andi Albrecht, [email protected]
1+
# -*- coding: utf-8 -*-
2+
#
3+
# Copyright (C) 2016 Andi Albrecht, [email protected]
24
#
35
# This module is part of python-sqlparse and is released under
4-
# the BSD License: http://www.opensource.org/licenses/bsd-license.php.
6+
# the BSD License: http://www.opensource.org/licenses/bsd-license.php
57

68
"""Exceptions used in this package."""
79

sqlparse/filters.py

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,9 @@
11
# -*- coding: utf-8 -*-
2+
#
3+
# Copyright (C) 2016 Andi Albrecht, [email protected]
4+
#
5+
# This module is part of python-sqlparse and is released under
6+
# the BSD License: http://www.opensource.org/licenses/bsd-license.php
27

38
import re
49

0 commit comments

Comments
 (0)