[Python-checkins] r77209 - in python/trunk: Lib/email/generator.py Lib/email/test/test_email.py Lib/email/utils.py Lib/idlelib/NEWS.txt Lib/lib-tk/turtle.py Lib/logging/__init__.py Lib/platform.py Lib/test/test_hashlib.py Lib/test/test_logging.py Lib/unittest/__init__.py Mac/Resources/app/Info.plist.in Modules/_hashopenssl.c

georg.brandl python-checkins at python.org
Fri Jan 1 14:07:05 CET 2010


Author: georg.brandl
Date: Fri Jan  1 14:07:05 2010
New Revision: 77209

Log:
More yearly updates.

Modified:
   python/trunk/Lib/email/generator.py
   python/trunk/Lib/email/test/test_email.py
   python/trunk/Lib/email/utils.py
   python/trunk/Lib/idlelib/NEWS.txt
   python/trunk/Lib/lib-tk/turtle.py
   python/trunk/Lib/logging/__init__.py
   python/trunk/Lib/platform.py
   python/trunk/Lib/test/test_hashlib.py
   python/trunk/Lib/test/test_logging.py
   python/trunk/Lib/unittest/__init__.py
   python/trunk/Mac/Resources/app/Info.plist.in
   python/trunk/Modules/_hashopenssl.c

Modified: python/trunk/Lib/email/generator.py
==============================================================================
--- python/trunk/Lib/email/generator.py	(original)
+++ python/trunk/Lib/email/generator.py	Fri Jan  1 14:07:05 2010
@@ -1,4 +1,4 @@
-# Copyright (C) 2001-2009 Python Software Foundation
+# Copyright (C) 2001-2010 Python Software Foundation
 # Contact: email-sig at python.org
 
 """Classes to generate plain text from a message object tree."""

Modified: python/trunk/Lib/email/test/test_email.py
==============================================================================
--- python/trunk/Lib/email/test/test_email.py	(original)
+++ python/trunk/Lib/email/test/test_email.py	Fri Jan  1 14:07:05 2010
@@ -1,4 +1,4 @@
-# Copyright (C) 2001-2009 Python Software Foundation
+# Copyright (C) 2001-2010 Python Software Foundation
 # Contact: email-sig at python.org
 # email package unit tests
 

Modified: python/trunk/Lib/email/utils.py
==============================================================================
--- python/trunk/Lib/email/utils.py	(original)
+++ python/trunk/Lib/email/utils.py	Fri Jan  1 14:07:05 2010
@@ -1,4 +1,4 @@
-# Copyright (C) 2001-2009 Python Software Foundation
+# Copyright (C) 2001-2010 Python Software Foundation
 # Author: Barry Warsaw
 # Contact: email-sig at python.org
 

Modified: python/trunk/Lib/idlelib/NEWS.txt
==============================================================================
--- python/trunk/Lib/idlelib/NEWS.txt	(original)
+++ python/trunk/Lib/idlelib/NEWS.txt	Fri Jan  1 14:07:05 2010
@@ -1,7 +1,7 @@
 What's New in IDLE 2.7a0?
 =========================
 
-*Release date: XX-XXX-2009*
+*Release date: XX-XXX-2010*
 
 - idle.py modified and simplified to better support developing experimental
   versions of IDLE which are not installed in the standard location.

Modified: python/trunk/Lib/lib-tk/turtle.py
==============================================================================
--- python/trunk/Lib/lib-tk/turtle.py	(original)
+++ python/trunk/Lib/lib-tk/turtle.py	Fri Jan  1 14:07:05 2010
@@ -2,7 +2,7 @@
 # turtle.py: a Tkinter based turtle graphics module for Python
 # Version 1.0.1 - 24. 9. 2009
 #
-# Copyright (C) 2006 - 2009  Gregor Lingl
+# Copyright (C) 2006 - 2010  Gregor Lingl
 # email: glingl at aon.at
 #
 # This software is provided 'as-is', without any express or implied

Modified: python/trunk/Lib/logging/__init__.py
==============================================================================
--- python/trunk/Lib/logging/__init__.py	(original)
+++ python/trunk/Lib/logging/__init__.py	Fri Jan  1 14:07:05 2010
@@ -18,7 +18,7 @@
 Logging package for Python. Based on PEP 282 and comments thereto in
 comp.lang.python, and influenced by Apache's log4j system.
 
-Copyright (C) 2001-2009 Vinay Sajip. All Rights Reserved.
+Copyright (C) 2001-2010 Vinay Sajip. All Rights Reserved.
 
 To use, simply 'import logging' and log away!
 """

Modified: python/trunk/Lib/platform.py
==============================================================================
--- python/trunk/Lib/platform.py	(original)
+++ python/trunk/Lib/platform.py	Fri Jan  1 14:07:05 2010
@@ -92,7 +92,7 @@
 
 __copyright__ = """
     Copyright (c) 1999-2000, Marc-Andre Lemburg; mailto:mal at lemburg.com
-    Copyright (c) 2000-2009, eGenix.com Software GmbH; mailto:info at egenix.com
+    Copyright (c) 2000-2010, eGenix.com Software GmbH; mailto:info at egenix.com
 
     Permission to use, copy, modify, and distribute this software and its
     documentation for any purpose and without fee or royalty is hereby granted,

Modified: python/trunk/Lib/test/test_hashlib.py
==============================================================================
--- python/trunk/Lib/test/test_hashlib.py	(original)
+++ python/trunk/Lib/test/test_hashlib.py	Fri Jan  1 14:07:05 2010
@@ -2,7 +2,7 @@
 #
 # $Id$
 #
-#  Copyright (C) 2005-2009   Gregory P. Smith (greg at krypto.org)
+#  Copyright (C) 2005-2010   Gregory P. Smith (greg at krypto.org)
 #  Licensed to PSF under a Contributor Agreement.
 #
 

Modified: python/trunk/Lib/test/test_logging.py
==============================================================================
--- python/trunk/Lib/test/test_logging.py	(original)
+++ python/trunk/Lib/test/test_logging.py	Fri Jan  1 14:07:05 2010
@@ -1,6 +1,6 @@
 #!/usr/bin/env python
 #
-# Copyright 2001-2009 by Vinay Sajip. All Rights Reserved.
+# Copyright 2001-2010 by Vinay Sajip. All Rights Reserved.
 #
 # Permission to use, copy, modify, and distribute this software and its
 # documentation for any purpose and without fee is hereby granted,
@@ -18,7 +18,7 @@
 
 """Test harness for the logging module. Run all tests.
 
-Copyright (C) 2001-2009 Vinay Sajip. All Rights Reserved.
+Copyright (C) 2001-2010 Vinay Sajip. All Rights Reserved.
 """
 
 import logging

Modified: python/trunk/Lib/unittest/__init__.py
==============================================================================
--- python/trunk/Lib/unittest/__init__.py	(original)
+++ python/trunk/Lib/unittest/__init__.py	Fri Jan  1 14:07:05 2010
@@ -27,7 +27,7 @@
   http://docs.python.org/library/unittest.html
 
 Copyright (c) 1999-2003 Steve Purcell
-Copyright (c) 2003-2009 Python Software Foundation
+Copyright (c) 2003-2010 Python Software Foundation
 This module is free software, and you may redistribute it and/or modify
 it under the same terms as Python itself, so long as this copyright message
 and disclaimer are retained in their original form.

Modified: python/trunk/Mac/Resources/app/Info.plist.in
==============================================================================
--- python/trunk/Mac/Resources/app/Info.plist.in	(original)
+++ python/trunk/Mac/Resources/app/Info.plist.in	Fri Jan  1 14:07:05 2010
@@ -20,7 +20,7 @@
 	<key>CFBundleExecutable</key>
 	<string>Python</string>
 	<key>CFBundleGetInfoString</key>
-	<string>%version%, (c) 2004-2009 Python Software Foundation.</string>
+	<string>%version%, (c) 2004-2010 Python Software Foundation.</string>
 	<key>CFBundleHelpBookFolder</key>
 	<array>
 		<string>Documentation</string>
@@ -37,7 +37,7 @@
 	<key>CFBundleInfoDictionaryVersion</key>
 	<string>6.0</string>
 	<key>CFBundleLongVersionString</key>
-	<string>%version%, (c) 2004-2009 Python Software Foundation.</string>
+	<string>%version%, (c) 2004-2010 Python Software Foundation.</string>
 	<key>CFBundleName</key>
 	<string>Python</string>
 	<key>CFBundlePackageType</key>

Modified: python/trunk/Modules/_hashopenssl.c
==============================================================================
--- python/trunk/Modules/_hashopenssl.c	(original)
+++ python/trunk/Modules/_hashopenssl.c	Fri Jan  1 14:07:05 2010
@@ -1,7 +1,7 @@
 /* Module that wraps all OpenSSL hash algorithms */
 
 /*
- * Copyright (C) 2005-2009   Gregory P. Smith (greg at krypto.org)
+ * Copyright (C) 2005-2010   Gregory P. Smith (greg at krypto.org)
  * Licensed to PSF under a Contributor Agreement.
  *
  * Derived from a skeleton of shamodule.c containing work performed by:


More information about the Python-checkins mailing list