summaryrefslogtreecommitdiff
path: root/examples
diff options
context:
space:
mode:
authorJon Dufresne <jon.dufresne@gmail.com>2018-06-26 13:49:35 -0700
committerEli Bendersky <eliben@users.noreply.github.com>2018-06-26 13:49:35 -0700
commit1d866999094179514ce1053829c760b391abc067 (patch)
tree9589e1e6b8f859cda08ae0600fb7540a998634b3 /examples
parente8afcc9ec212a35a285f4bd0357def92af5b81cb (diff)
downloadpycparser-1d866999094179514ce1053829c760b391abc067.tar.gz
Use https:// for all project links where available (#267)
Diffstat (limited to 'examples')
-rw-r--r--examples/c-to-c.py2
-rw-r--r--examples/cdecl.py2
-rw-r--r--examples/dump_ast.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/serialize_ast.py2
-rw-r--r--examples/using_cpp_libc.py2
-rw-r--r--examples/using_gcc_E_libc.py2
10 files changed, 10 insertions, 10 deletions
diff --git a/examples/c-to-c.py b/examples/c-to-c.py
index 88e66c5..cc14598 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.
#
-# Eli Bendersky [http://eli.thegreenplace.net]
+# Eli Bendersky [https://eli.thegreenplace.net/]
# License: BSD
#------------------------------------------------------------------------------
from __future__ import print_function
diff --git a/examples/cdecl.py b/examples/cdecl.py
index a510087..351efc2 100644
--- a/examples/cdecl.py
+++ b/examples/cdecl.py
@@ -29,7 +29,7 @@
# explain_c_declaration(c_decl, expand_struct=True)
# => p is a struct P containing {x is a int, y is a int}
#
-# Eli Bendersky [http://eli.thegreenplace.net]
+# Eli Bendersky [https://eli.thegreenplace.net/]
# License: BSD
#-----------------------------------------------------------------
import copy
diff --git a/examples/dump_ast.py b/examples/dump_ast.py
index 3b6aae4..2cff874 100644
--- a/examples/dump_ast.py
+++ b/examples/dump_ast.py
@@ -3,7 +3,7 @@
#
# Basic example of parsing a file and dumping its parsed AST.
#
-# Eli Bendersky [http://eli.thegreenplace.net]
+# Eli Bendersky [https://eli.thegreenplace.net/]
# License: BSD
#-----------------------------------------------------------------
from __future__ import print_function
diff --git a/examples/explore_ast.py b/examples/explore_ast.py
index 3b3205e..1f6e0ae 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.
#
-# Eli Bendersky [http://eli.thegreenplace.net]
+# Eli Bendersky [https://eli.thegreenplace.net/]
# License: BSD
#-----------------------------------------------------------------
from __future__ import print_function
diff --git a/examples/func_calls.py b/examples/func_calls.py
index 2433ffd..ec31fe5 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.
#
-# Eli Bendersky [http://eli.thegreenplace.net]
+# Eli Bendersky [https://eli.thegreenplace.net/]
# License: BSD
#-----------------------------------------------------------------
from __future__ import print_function
diff --git a/examples/func_defs.py b/examples/func_defs.py
index ed64596..8fe9889 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.
#
-# Eli Bendersky [http://eli.thegreenplace.net]
+# Eli Bendersky [https://eli.thegreenplace.net/]
# License: BSD
#-----------------------------------------------------------------
from __future__ import print_function
diff --git a/examples/rewrite_ast.py b/examples/rewrite_ast.py
index eae6539..2c42f99 100644
--- a/examples/rewrite_ast.py
+++ b/examples/rewrite_ast.py
@@ -3,7 +3,7 @@
#
# Tiny example of rewriting a AST node
#
-# Eli Bendersky [http://eli.thegreenplace.net]
+# Eli Bendersky [https://eli.thegreenplace.net/]
# License: BSD
#-----------------------------------------------------------------
from __future__ import print_function
diff --git a/examples/serialize_ast.py b/examples/serialize_ast.py
index 7a71f9b..e0f8aa3 100644
--- a/examples/serialize_ast.py
+++ b/examples/serialize_ast.py
@@ -4,7 +4,7 @@
# Simple example of serializing AST
#
# Hart Chu [https://github.com/CtheSky]
-# Eli Bendersky [http://eli.thegreenplace.net]
+# Eli Bendersky [https://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 0c70c88..e930f5b 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.
#
-# Eli Bendersky [http://eli.thegreenplace.net]
+# Eli Bendersky [https://eli.thegreenplace.net/]
# License: BSD
#-----------------------------------------------------------------
import sys
diff --git a/examples/using_gcc_E_libc.py b/examples/using_gcc_E_libc.py
index f0d1628..bba4d3d 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.
#
-# Eli Bendersky [http://eli.thegreenplace.net]
+# Eli Bendersky [https://eli.thegreenplace.net/]
# License: BSD
#-------------------------------------------------------------------------------
import sys