r52873 - in sandbox/trunk/2to3: fix_has_key.py pgen2/driver.py pgen2/python.py play.py pynode.py tokenize.py
Author: guido.van.rossum Date: Thu Nov 30 20:24:51 2006 New Revision: 52873 Removed: sandbox/trunk/2to3/pgen2/python.py Modified: sandbox/trunk/2to3/fix_has_key.py sandbox/trunk/2to3/pgen2/driver.py sandbox/trunk/2to3/play.py sandbox/trunk/2to3/pynode.py sandbox/trunk/2to3/tokenize.py Log: Update copyright notices. Everything I add is copyrighted by Google. Modified: sandbox/trunk/2to3/fix_has_key.py ============================================================================== --- sandbox/trunk/2to3/fix_has_key.py (original) +++ sandbox/trunk/2to3/fix_has_key.py Thu Nov 30 20:24:51 2006 @@ -1,5 +1,6 @@ #!/usr/bin/env python2.5 -# Copyright 2006 Python Software Foundation. All Rights Reserved. +# Copyright 2006 Google Inc. All Rights Reserved. +# Licensed to PSF under a Contributor Agreement. """Refactoring tool: change 'x.has_key(y)' into 'y in x'.""" Modified: sandbox/trunk/2to3/pgen2/driver.py ============================================================================== --- sandbox/trunk/2to3/pgen2/driver.py (original) +++ sandbox/trunk/2to3/pgen2/driver.py Thu Nov 30 20:24:51 2006 @@ -2,7 +2,8 @@ # Licensed to PSF under a Contributor Agreement. # Modifications: -# Copyright 2006 Python Software Foundation. All Rights Reserved. +# Copyright 2006 Google, Inc. All Rights Reserved. +# Licensed to PSF under a Contributor Agreement. """Parser driver. Deleted: /sandbox/trunk/2to3/pgen2/python.py ============================================================================== --- /sandbox/trunk/2to3/pgen2/python.py Thu Nov 30 20:24:51 2006 +++ (empty file) @@ -1,9 +0,0 @@ -#!/usr/bin/python2.5 -# Copyright 2006 Python Software Foundation. All rights reserved. - -"""Full Python grammar""" - -from __future__ import with_statement - -__author__ = "Guido van Rossum <guido@python.org>" - Modified: sandbox/trunk/2to3/play.py ============================================================================== --- sandbox/trunk/2to3/play.py (original) +++ sandbox/trunk/2to3/play.py Thu Nov 30 20:24:51 2006 @@ -1,5 +1,6 @@ #!/usr/bin/env python2.5 -# Copyright 2006 Python Software Foundation. All Rights Reserved. +# Copyright 2006 Google, Inc. All Rights Reserved. +# Licensed to PSF under a Contributor Agreement. """Main program for testing the infrastructure.""" Modified: sandbox/trunk/2to3/pynode.py ============================================================================== --- sandbox/trunk/2to3/pynode.py (original) +++ sandbox/trunk/2to3/pynode.py Thu Nov 30 20:24:51 2006 @@ -2,7 +2,8 @@ # Licensed to PSF under a Contributor Agreement. # Modifications: -# Copyright 2006 Python Software Foundation. All Rights Reserved. +# Copyright 2006 Google, Inc. All Rights Reserved. +# Licensed to PSF under a Contributor Agreement. """Syntax tree node definitions. Modified: sandbox/trunk/2to3/tokenize.py ============================================================================== --- sandbox/trunk/2to3/tokenize.py (original) +++ sandbox/trunk/2to3/tokenize.py Thu Nov 30 20:24:51 2006 @@ -1,3 +1,6 @@ +# Copyright (c) 2001, 2002, 2003, 2004, 2005, 2006 Python Software Foundation. +# All rights reserved. + """Tokenization help for Python programs. generate_tokens(readline) is a generator that breaks a stream of
participants (1)
-
guido.van.rossum