Add or Update copyright year to files · huww98/sqlparse@af2a3fa · GitHub
Skip to content

Commit af2a3fa

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

16 files changed

Lines changed: 73 additions & 21 deletions

LICENSE

Lines changed: 2 additions & 2 deletions

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, albrecht.andi@gmail.com
2+
# -*- coding: utf-8 -*-
3+
#
4+
# Copyright (C) 2016 Andi Albrecht, albrecht.andi@gmail.com
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, albrecht.andi@gmail.com
1+
# -*- coding: utf-8 -*-
2+
#
3+
# Copyright (C) 2016 Andi Albrecht, albrecht.andi@gmail.com
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, albrecht.andi@gmail.com
1+
# -*- coding: utf-8 -*-
2+
#
3+
# Copyright (C) 2016 Andi Albrecht, albrecht.andi@gmail.com
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, albrecht.andi@gmail.com
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, albrecht.andi@gmail.com
1+
# -*- coding: utf-8 -*-
2+
#
3+
# Copyright (C) 2016 Andi Albrecht, albrecht.andi@gmail.com
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, albrecht.andi@gmail.com
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, albrecht.andi@gmail.com
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, albrecht.andi@gmail.com
1+
# -*- coding: utf-8 -*-
2+
#
3+
# Copyright (C) 2016 Andi Albrecht, albrecht.andi@gmail.com
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

0 commit comments

Comments
 (0)