aboutsummaryrefslogtreecommitdiff
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
parente8afcc9ec212a35a285f4bd0357def92af5b81cb (diff)
downloadpycparser-1d866999094179514ce1053829c760b391abc067.tar.gz
Use https:// for all project links where available (#267)
-rw-r--r--README.rst4
-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
-rw-r--r--pycparser/__init__.py2
-rw-r--r--pycparser/_ast_gen.py4
-rw-r--r--pycparser/_build_tables.py2
-rw-r--r--pycparser/_c_ast.cfg2
-rw-r--r--pycparser/ast_transforms.py2
-rw-r--r--pycparser/c_ast.py2
-rw-r--r--pycparser/c_generator.py2
-rw-r--r--pycparser/c_lexer.py2
-rw-r--r--pycparser/c_parser.py2
-rw-r--r--pycparser/ply/yacc.py2
-rw-r--r--pycparser/plyparser.py2
22 files changed, 24 insertions, 24 deletions
diff --git a/README.rst b/README.rst
index 4f71a1e..b8d9f17 100644
--- a/README.rst
+++ b/README.rst
@@ -2,7 +2,7 @@
pycparser v2.18
===============
-:Author: `Eli Bendersky <http://eli.thegreenplace.net>`_
+:Author: `Eli Bendersky <https://eli.thegreenplace.net/>`_
.. contents::
@@ -158,7 +158,7 @@ the source is a previously defined type. This is essential in order to be able
to parse C correctly.
See `this blog post
-<http://eli.thegreenplace.net/2015/on-parsing-c-type-declarations-and-fake-headers>`_
+<https://eli.thegreenplace.net/2015/on-parsing-c-type-declarations-and-fake-headers>`_
for more details.
Basic usage
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
diff --git a/pycparser/__init__.py b/pycparser/__init__.py
index 6ba6065..e57d5d8 100644
--- a/pycparser/__init__.py
+++ b/pycparser/__init__.py
@@ -4,7 +4,7 @@
# This package file exports some convenience functions for
# interacting with pycparser
#
-# Eli Bendersky [http://eli.thegreenplace.net]
+# Eli Bendersky [https://eli.thegreenplace.net/]
# License: BSD
#-----------------------------------------------------------------
__all__ = ['c_lexer', 'c_parser', 'c_ast']
diff --git a/pycparser/_ast_gen.py b/pycparser/_ast_gen.py
index 4dab963..5ec2d3d 100644
--- a/pycparser/_ast_gen.py
+++ b/pycparser/_ast_gen.py
@@ -7,7 +7,7 @@
# The design of this module was inspired by astgen.py from the
# Python 2.5 code-base.
#
-# Eli Bendersky [http://eli.thegreenplace.net]
+# Eli Bendersky [https://eli.thegreenplace.net/]
# License: BSD
#-----------------------------------------------------------------
import pprint
@@ -180,7 +180,7 @@ r'''#-----------------------------------------------------------------
#
# AST Node classes.
#
-# Eli Bendersky [http://eli.thegreenplace.net]
+# Eli Bendersky [https://eli.thegreenplace.net/]
# License: BSD
#-----------------------------------------------------------------
diff --git a/pycparser/_build_tables.py b/pycparser/_build_tables.py
index a8a9dcf..94a3891 100644
--- a/pycparser/_build_tables.py
+++ b/pycparser/_build_tables.py
@@ -6,7 +6,7 @@
# Also generates AST code from the configuration file.
# Should be called from the pycparser directory.
#
-# Eli Bendersky [http://eli.thegreenplace.net]
+# Eli Bendersky [https://eli.thegreenplace.net/]
# License: BSD
#-----------------------------------------------------------------
diff --git a/pycparser/_c_ast.cfg b/pycparser/_c_ast.cfg
index 7dfcd0c..b93d50b 100644
--- a/pycparser/_c_ast.cfg
+++ b/pycparser/_c_ast.cfg
@@ -9,7 +9,7 @@
# <name>** - a sequence of child nodes
# <name> - an attribute
#
-# Eli Bendersky [http://eli.thegreenplace.net]
+# Eli Bendersky [https://eli.thegreenplace.net/]
# License: BSD
#-----------------------------------------------------------------
diff --git a/pycparser/ast_transforms.py b/pycparser/ast_transforms.py
index 623821d..ba50966 100644
--- a/pycparser/ast_transforms.py
+++ b/pycparser/ast_transforms.py
@@ -3,7 +3,7 @@
#
# Some utilities used by the parser to create a friendlier AST.
#
-# Eli Bendersky [http://eli.thegreenplace.net]
+# Eli Bendersky [https://eli.thegreenplace.net/]
# License: BSD
#------------------------------------------------------------------------------
diff --git a/pycparser/c_ast.py b/pycparser/c_ast.py
index 219f07b..66fadd9 100644
--- a/pycparser/c_ast.py
+++ b/pycparser/c_ast.py
@@ -11,7 +11,7 @@
#
# AST Node classes.
#
-# Eli Bendersky [http://eli.thegreenplace.net]
+# Eli Bendersky [https://eli.thegreenplace.net/]
# License: BSD
#-----------------------------------------------------------------
diff --git a/pycparser/c_generator.py b/pycparser/c_generator.py
index 8f2e69a..f789742 100644
--- a/pycparser/c_generator.py
+++ b/pycparser/c_generator.py
@@ -3,7 +3,7 @@
#
# C code generator from pycparser AST nodes.
#
-# Eli Bendersky [http://eli.thegreenplace.net]
+# Eli Bendersky [https://eli.thegreenplace.net/]
# License: BSD
#------------------------------------------------------------------------------
from . import c_ast
diff --git a/pycparser/c_lexer.py b/pycparser/c_lexer.py
index 944cbb8..de8445e 100644
--- a/pycparser/c_lexer.py
+++ b/pycparser/c_lexer.py
@@ -3,7 +3,7 @@
#
# CLexer class: lexer for the C language
#
-# Eli Bendersky [http://eli.thegreenplace.net]
+# Eli Bendersky [https://eli.thegreenplace.net/]
# License: BSD
#------------------------------------------------------------------------------
import re
diff --git a/pycparser/c_parser.py b/pycparser/c_parser.py
index 0ce41bd..5545d3c 100644
--- a/pycparser/c_parser.py
+++ b/pycparser/c_parser.py
@@ -3,7 +3,7 @@
#
# CParser class: Parser and AST builder for the C language
#
-# Eli Bendersky [http://eli.thegreenplace.net]
+# Eli Bendersky [https://eli.thegreenplace.net/]
# License: BSD
#------------------------------------------------------------------------------
import re
diff --git a/pycparser/ply/yacc.py b/pycparser/ply/yacc.py
index 03bd86e..20b4f28 100644
--- a/pycparser/ply/yacc.py
+++ b/pycparser/ply/yacc.py
@@ -309,7 +309,7 @@ class LRParser:
# certain kinds of advanced parsing situations where the lexer and parser interact with
# each other or change states (i.e., manipulation of scope, lexer states, etc.).
#
- # See: http://www.gnu.org/software/bison/manual/html_node/Default-Reductions.html#Default-Reductions
+ # See: https://www.gnu.org/software/bison/manual/html_node/Default-Reductions.html#Default-Reductions
def set_defaulted_states(self):
self.defaulted_states = {}
for state, actions in self.action.items():
diff --git a/pycparser/plyparser.py b/pycparser/plyparser.py
index b6640fa..6222c0e 100644
--- a/pycparser/plyparser.py
+++ b/pycparser/plyparser.py
@@ -4,7 +4,7 @@
# PLYParser class and other utilites for simplifying programming
# parsers with PLY
#
-# Eli Bendersky [http://eli.thegreenplace.net]
+# Eli Bendersky [https://eli.thegreenplace.net/]
# License: BSD
#-----------------------------------------------------------------