From 491b4ad76d337fd62b6e1b58a932d925e63b1f52 Mon Sep 17 00:00:00 2001 From: Dave Halter Date: Mon, 15 Dec 2014 17:29:32 +0100 Subject: [PATCH] Pgen2 license amendments. --- jedi/parser/pgen2/grammar.py | 4 ++++ jedi/parser/pgen2/parse.py | 4 ++++ jedi/parser/pgen2/pgen.py | 4 ++++ 3 files changed, 12 insertions(+) diff --git a/jedi/parser/pgen2/grammar.py b/jedi/parser/pgen2/grammar.py index 9c20fd48..01db4798 100644 --- a/jedi/parser/pgen2/grammar.py +++ b/jedi/parser/pgen2/grammar.py @@ -1,6 +1,10 @@ # Copyright 2004-2005 Elemental Security, Inc. All Rights Reserved. # Licensed to PSF under a Contributor Agreement. +# Modifications: +# Copyright 2014 David Halter. Integration into Jedi. +# Modifications are dual-licensed: MIT and PSF. + """This module defines the data structures used to represent a grammar. These are a bit arcane because they are derived from the data diff --git a/jedi/parser/pgen2/parse.py b/jedi/parser/pgen2/parse.py index e301ae13..4d721bbe 100644 --- a/jedi/parser/pgen2/parse.py +++ b/jedi/parser/pgen2/parse.py @@ -1,6 +1,10 @@ # Copyright 2004-2005 Elemental Security, Inc. All Rights Reserved. # Licensed to PSF under a Contributor Agreement. +# Modifications: +# Copyright 2014 David Halter. Integration into Jedi. +# Modifications are dual-licensed: MIT and PSF. + """ Parser engine for the grammar tables generated by pgen. diff --git a/jedi/parser/pgen2/pgen.py b/jedi/parser/pgen2/pgen.py index 91479f6f..3816daa0 100644 --- a/jedi/parser/pgen2/pgen.py +++ b/jedi/parser/pgen2/pgen.py @@ -1,6 +1,10 @@ # Copyright 2004-2005 Elemental Security, Inc. All Rights Reserved. # Licensed to PSF under a Contributor Agreement. +# Modifications: +# Copyright 2014 David Halter. Integration into Jedi. +# Modifications are dual-licensed: MIT and PSF. + # Pgen imports from . import grammar, token, tokenize