summaryrefslogtreecommitdiff
path: root/examples
diff options
context:
space:
mode:
authorEli Bendersky <eliben@gmail.com>2017-02-02 05:59:50 -0800
committerEli Bendersky <eliben@gmail.com>2017-02-02 05:59:50 -0800
commit6d45ff70f30ba8a5be8fd7aa8ab020360a8f9e9d (patch)
treeafd9ff1c5e264d55af7c2beb868a0dcde6864c08 /examples
parentc36e7fb36d34ef32cf2b8f9c338f032cb6c63c30 (diff)
downloadpycparser-6d45ff70f30ba8a5be8fd7aa8ab020360a8f9e9d.tar.gz
Remove Copyright from every source file
Replace it by website link; copyright appears in the LICENSE file already, which is sufficient
Diffstat (limited to 'examples')
-rw-r--r--examples/c-to-c.py2
-rw-r--r--examples/cdecl.py2
-rw-r--r--examples/explore_ast.py2
-rw-r--r--examples/func_calls.py2
-rw-r--r--examples/func_defs.py2
-rw-r--r--examples/rewrite_ast.py2
-rw-r--r--examples/using_cpp_libc.py2
-rw-r--r--examples/using_gcc_E_libc.py2
8 files changed, 8 insertions, 8 deletions
diff --git a/examples/c-to-c.py b/examples/c-to-c.py
index 6070108..88e66c5 100644
--- a/examples/c-to-c.py
+++ b/examples/c-to-c.py
@@ -4,7 +4,7 @@
# Example of using pycparser.c_generator, serving as a simplistic translator
# from C to AST and back to C.
#
-# Copyright (C) 2008-2015, Eli Bendersky
+# Eli Bendersky [http://eli.thegreenplace.net]
# License: BSD
#------------------------------------------------------------------------------
from __future__ import print_function
diff --git a/examples/cdecl.py b/examples/cdecl.py
index 58721d1..39ac5e8 100644
--- a/examples/cdecl.py
+++ b/examples/cdecl.py
@@ -16,7 +16,7 @@
# =>
# ar is a pointer to array[10] of pointer to const Node
#
-# Copyright (C) 2008-2015, Eli Bendersky
+# Eli Bendersky [http://eli.thegreenplace.net]
# License: BSD
#-----------------------------------------------------------------
import sys
diff --git a/examples/explore_ast.py b/examples/explore_ast.py
index 3dd798e..661eee1 100644
--- a/examples/explore_ast.py
+++ b/examples/explore_ast.py
@@ -9,7 +9,7 @@
# information from the AST.
# It helps to have the pycparser/_c_ast.cfg file in front of you.
#
-# Copyright (C) 2008-2015, Eli Bendersky
+# Eli Bendersky [http://eli.thegreenplace.net]
# License: BSD
#-----------------------------------------------------------------
from __future__ import print_function
diff --git a/examples/func_calls.py b/examples/func_calls.py
index 72c64d3..a672b77 100644
--- a/examples/func_calls.py
+++ b/examples/func_calls.py
@@ -4,7 +4,7 @@
# Using pycparser for printing out all the calls of some function
# in a C file.
#
-# Copyright (C) 2008-2015, Eli Bendersky
+# Eli Bendersky [http://eli.thegreenplace.net]
# License: BSD
#-----------------------------------------------------------------
from __future__ import print_function
diff --git a/examples/func_defs.py b/examples/func_defs.py
index 552f860..ed64596 100644
--- a/examples/func_defs.py
+++ b/examples/func_defs.py
@@ -7,7 +7,7 @@
# This is a simple example of traversing the AST generated by
# pycparser. Call it from the root directory of pycparser.
#
-# Copyright (C) 2008-2015, Eli Bendersky
+# Eli Bendersky [http://eli.thegreenplace.net]
# License: BSD
#-----------------------------------------------------------------
from __future__ import print_function
diff --git a/examples/rewrite_ast.py b/examples/rewrite_ast.py
index 289e26f..7d1b196 100644
--- a/examples/rewrite_ast.py
+++ b/examples/rewrite_ast.py
@@ -3,7 +3,7 @@
#
# Tiny example of rewriting a AST node
#
-# Copyright (C) 2014, Akira Hayakawa
+# Eli Bendersky [http://eli.thegreenplace.net]
# License: BSD
#-----------------------------------------------------------------
from __future__ import print_function
diff --git a/examples/using_cpp_libc.py b/examples/using_cpp_libc.py
index 4fdf881..0c70c88 100644
--- a/examples/using_cpp_libc.py
+++ b/examples/using_cpp_libc.py
@@ -5,7 +5,7 @@
# the 'real' cpp if you're on Linux/Unix) and "fake" libc includes
# to parse a file that includes standard C headers.
#
-# Copyright (C) 2008-2015, Eli Bendersky
+# Eli Bendersky [http://eli.thegreenplace.net]
# License: BSD
#-----------------------------------------------------------------
import sys
diff --git a/examples/using_gcc_E_libc.py b/examples/using_gcc_E_libc.py
index 8c9e713..f0d1628 100644
--- a/examples/using_gcc_E_libc.py
+++ b/examples/using_gcc_E_libc.py
@@ -5,7 +5,7 @@
# of 'cpp'. The same can be achieved with Clang instead of gcc. If you have
# Clang installed, simply replace 'gcc' with 'clang' here.
#
-# Copyright (C) 2008-2015, Eli Bendersky
+# Eli Bendersky [http://eli.thegreenplace.net]
# License: BSD
#-------------------------------------------------------------------------------
import sys