diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/lexer.py | 7 | ||||
-rw-r--r-- | src/nodes.py | 7 | ||||
-rw-r--r-- | src/parser.py | 7 | ||||
-rw-r--r-- | src/tokens.py | 7 |
4 files changed, 16 insertions, 12 deletions
diff --git a/src/lexer.py b/src/lexer.py index 40b994a..62ce35a 100644 --- a/src/lexer.py +++ b/src/lexer.py @@ -1,6 +1,7 @@ -# Copyright 2015 Egor Tensin <Egor.Tensin@gmail.com> -# This file is licensed under the terms of the MIT License. -# See LICENSE.txt for details. +# Copyright (c) 2015 Egor Tensin <Egor.Tensin@gmail.com> +# This file is part of the "Simple interpreter" project. +# For details, see https://github.com/egor-tensin/simple-interpreter. +# Distributed under the MIT License. import re diff --git a/src/nodes.py b/src/nodes.py index ea9517d..f7b68fc 100644 --- a/src/nodes.py +++ b/src/nodes.py @@ -1,6 +1,7 @@ -# Copyright 2015 Egor Tensin <Egor.Tensin@gmail.com> -# This file is licensed under the terms of the MIT License. -# See LICENSE.txt for details. +# Copyright (c) 2015 Egor Tensin <Egor.Tensin@gmail.com> +# This file is part of the "Simple interpreter" project. +# For details, see https://github.com/egor-tensin/simple-interpreter. +# Distributed under the MIT License. class ProgramNode: def __init__(self, stmt_list): diff --git a/src/parser.py b/src/parser.py index fc748ff..190bc79 100644 --- a/src/parser.py +++ b/src/parser.py @@ -1,6 +1,7 @@ -# Copyright 2015 Egor Tensin <Egor.Tensin@gmail.com> -# This file is licensed under the terms of the MIT License. -# See LICENSE.txt for details. +# Copyright (c) 2015 Egor Tensin <Egor.Tensin@gmail.com> +# This file is part of the "Simple interpreter" project. +# For details, see https://github.com/egor-tensin/simple-interpreter. +# Distributed under the MIT License. from lexer import * from nodes import * diff --git a/src/tokens.py b/src/tokens.py index 3c04668..7a39903 100644 --- a/src/tokens.py +++ b/src/tokens.py @@ -1,6 +1,7 @@ -# Copyright 2015 Egor Tensin <Egor.Tensin@gmail.com> -# This file is licensed under the terms of the MIT License. -# See LICENSE.txt for details. +# Copyright (c) 2015 Egor Tensin <Egor.Tensin@gmail.com> +# This file is part of the "Simple interpreter" project. +# For details, see https://github.com/egor-tensin/simple-interpreter. +# Distributed under the MIT License. class Token: pass |