summaryrefslogtreecommitdiff
path: root/py
diff options
context:
space:
mode:
authorPaul Sokolovsky <pfalcon@users.sourceforge.net>2014-05-13 08:44:45 +0300
committerPaul Sokolovsky <pfalcon@users.sourceforge.net>2014-05-13 18:41:25 +0300
commitda9f0924ef4d6e2a7a455e8d0409ae93e60ec1ca (patch)
tree40935d65e271cae04340726109d4a499ceebbd63 /py
parent7074f25768558612e7b909422cdd90da4e69eaa8 (diff)
py, unix: Add copyright for modules I worked closely on.
Diffstat (limited to 'py')
-rw-r--r--py/builtinimport.c1
-rw-r--r--py/modstruct.c1
-rw-r--r--py/objarray.c1
-rw-r--r--py/objfun.c1
-rw-r--r--py/objgenerator.c1
-rw-r--r--py/objint_longlong.c1
-rw-r--r--py/objnamedtuple.c1
-rw-r--r--py/objstr.c1
-rw-r--r--py/objtype.c1
-rw-r--r--py/sequence.c1
-rw-r--r--py/stream.c1
-rw-r--r--py/vm.c1
12 files changed, 12 insertions, 0 deletions
diff --git a/py/builtinimport.c b/py/builtinimport.c
index e6bb7586c..e758158a6 100644
--- a/py/builtinimport.c
+++ b/py/builtinimport.c
@@ -4,6 +4,7 @@
* The MIT License (MIT)
*
* Copyright (c) 2013, 2014 Damien P. George
+ * Copyright (c) 2014 Paul Sokolovsky
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to deal
diff --git a/py/modstruct.c b/py/modstruct.c
index 46d0ad004..95a282e2e 100644
--- a/py/modstruct.c
+++ b/py/modstruct.c
@@ -4,6 +4,7 @@
* The MIT License (MIT)
*
* Copyright (c) 2013, 2014 Damien P. George
+ * Copyright (c) 2014 Paul Sokolovsky
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to deal
diff --git a/py/objarray.c b/py/objarray.c
index b394d7746..81ab57139 100644
--- a/py/objarray.c
+++ b/py/objarray.c
@@ -4,6 +4,7 @@
* The MIT License (MIT)
*
* Copyright (c) 2013, 2014 Damien P. George
+ * Copyright (c) 2014 Paul Sokolovsky
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to deal
diff --git a/py/objfun.c b/py/objfun.c
index 732009376..7915ddad0 100644
--- a/py/objfun.c
+++ b/py/objfun.c
@@ -4,6 +4,7 @@
* The MIT License (MIT)
*
* Copyright (c) 2013, 2014 Damien P. George
+ * Copyright (c) 2014 Paul Sokolovsky
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to deal
diff --git a/py/objgenerator.c b/py/objgenerator.c
index fb8366bae..de2ecdd48 100644
--- a/py/objgenerator.c
+++ b/py/objgenerator.c
@@ -4,6 +4,7 @@
* The MIT License (MIT)
*
* Copyright (c) 2013, 2014 Damien P. George
+ * Copyright (c) 2014 Paul Sokolovsky
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to deal
diff --git a/py/objint_longlong.c b/py/objint_longlong.c
index f648615a7..fe35d54a4 100644
--- a/py/objint_longlong.c
+++ b/py/objint_longlong.c
@@ -4,6 +4,7 @@
* The MIT License (MIT)
*
* Copyright (c) 2013, 2014 Damien P. George
+ * Copyright (c) 2014 Paul Sokolovsky
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to deal
diff --git a/py/objnamedtuple.c b/py/objnamedtuple.c
index 212cf131c..a55dd643b 100644
--- a/py/objnamedtuple.c
+++ b/py/objnamedtuple.c
@@ -4,6 +4,7 @@
* The MIT License (MIT)
*
* Copyright (c) 2013, 2014 Damien P. George
+ * Copyright (c) 2014 Paul Sokolovsky
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to deal
diff --git a/py/objstr.c b/py/objstr.c
index 79ad891d0..3a4b0b97f 100644
--- a/py/objstr.c
+++ b/py/objstr.c
@@ -4,6 +4,7 @@
* The MIT License (MIT)
*
* Copyright (c) 2013, 2014 Damien P. George
+ * Copyright (c) 2014 Paul Sokolovsky
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to deal
diff --git a/py/objtype.c b/py/objtype.c
index 5f3e1db5d..4827595bb 100644
--- a/py/objtype.c
+++ b/py/objtype.c
@@ -4,6 +4,7 @@
* The MIT License (MIT)
*
* Copyright (c) 2013, 2014 Damien P. George
+ * Copyright (c) 2014 Paul Sokolovsky
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to deal
diff --git a/py/sequence.c b/py/sequence.c
index 91162fc09..1af2ad27e 100644
--- a/py/sequence.c
+++ b/py/sequence.c
@@ -4,6 +4,7 @@
* The MIT License (MIT)
*
* Copyright (c) 2013, 2014 Damien P. George
+ * Copyright (c) 2014 Paul Sokolovsky
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to deal
diff --git a/py/stream.c b/py/stream.c
index 9eb438b53..599582b51 100644
--- a/py/stream.c
+++ b/py/stream.c
@@ -4,6 +4,7 @@
* The MIT License (MIT)
*
* Copyright (c) 2013, 2014 Damien P. George
+ * Copyright (c) 2014 Paul Sokolovsky
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to deal
diff --git a/py/vm.c b/py/vm.c
index 52e057ec1..123f52028 100644
--- a/py/vm.c
+++ b/py/vm.c
@@ -4,6 +4,7 @@
* The MIT License (MIT)
*
* Copyright (c) 2013, 2014 Damien P. George
+ * Copyright (c) 2014 Paul Sokolovsky
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to deal