Skip to content

Commit 2c53630

Browse files
committedFeb 18, 2018
add missing copyright headers
1 parent e606b79 commit 2c53630

File tree

69 files changed

+921
-64
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

69 files changed

+921
-64
lines changed
 

‎python/PyQt/PyQt5/Qsci.py

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1 +1,26 @@
1+
# -*- coding: utf-8 -*-
2+
3+
"""
4+
***************************************************************************
5+
Qsci.py
6+
---------------------
7+
Date : November 2015
8+
Copyright : (C) 2015 by Matthias Kuhn
9+
Email : matthias at opengis dot ch
10+
***************************************************************************
11+
* *
12+
* This program is free software; you can redistribute it and/or modify *
13+
* it under the terms of the GNU General Public License as published by *
14+
* the Free Software Foundation; either version 2 of the License, or *
15+
* (at your option) any later version. *
16+
* *
17+
***************************************************************************
18+
"""
19+
20+
__author__ = 'Matthias Kuhn'
21+
__date__ = 'November 2015'
22+
__copyright__ = '(C) 2015, Matthias Kuhn'
23+
# This will get replaced with a git SHA1 when you do a git archive
24+
__revision__ = '$Format:%H$'
25+
126
from PyQt5.Qsci import *

‎python/PyQt/PyQt5/QtCore.py

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,28 @@
1+
# -*- coding: utf-8 -*-
2+
3+
"""
4+
***************************************************************************
5+
QtCore.py
6+
---------------------
7+
Date : November 2015
8+
Copyright : (C) 2015 by Matthias Kuhn
9+
Email : matthias at opengis dot ch
10+
***************************************************************************
11+
* *
12+
* This program is free software; you can redistribute it and/or modify *
13+
* it under the terms of the GNU General Public License as published by *
14+
* the Free Software Foundation; either version 2 of the License, or *
15+
* (at your option) any later version. *
16+
* *
17+
***************************************************************************
18+
"""
19+
20+
__author__ = 'Matthias Kuhn'
21+
__date__ = 'November 2015'
22+
__copyright__ = '(C) 2015, Matthias Kuhn'
23+
# This will get replaced with a git SHA1 when you do a git archive
24+
__revision__ = '$Format:%H$'
25+
126
from PyQt5.QtCore import *
227

328
from types import MethodType

0 commit comments

Comments
 (0)
Please sign in to comment.