[Python-checkins] r54340 - sandbox/trunk/emailpkg/2_5/setup.py sandbox/trunk/emailpkg/2_5/testall.py

barry.warsaw python-checkins at python.org
Tue Mar 13 19:09:11 CET 2007


Author: barry.warsaw
Date: Tue Mar 13 19:09:10 2007
New Revision: 54340

Modified:
   sandbox/trunk/emailpkg/2_5/setup.py
   sandbox/trunk/emailpkg/2_5/testall.py
Log:
SF patch #1556895; Typo in encoding name in email package.

Patch supplied by Guillaume Rousse.


Modified: sandbox/trunk/emailpkg/2_5/setup.py
==============================================================================
--- sandbox/trunk/emailpkg/2_5/setup.py	(original)
+++ sandbox/trunk/emailpkg/2_5/setup.py	Tue Mar 13 19:09:10 2007
@@ -1,6 +1,5 @@
-#! /usr/bin/env python
-#
-# Copyright (C) 2001-2006 Python Software Foundation
+# Copyright (C) 2001-2007 Python Software Foundation
+# Author: email-sig at python.org
 
 # Standard distutils setup.py install script for the `mimelib' library, a next
 # generation MIME library for Python.  To install into your existing Python
@@ -19,8 +18,8 @@
 setup(name='email',
       version=email.__version__,
       description='Standalone email package',
-      author='Barry Warsaw',
-      author_email='barry at python.org',
+      author='Python Email SIG',
+      author_email='email-sig at python.org',
       url='http://www.python.org/sigs/email-sig',
       packages=['email'],
       )

Modified: sandbox/trunk/emailpkg/2_5/testall.py
==============================================================================
--- sandbox/trunk/emailpkg/2_5/testall.py	(original)
+++ sandbox/trunk/emailpkg/2_5/testall.py	Tue Mar 13 19:09:10 2007
@@ -1,4 +1,5 @@
-# Copyright (C) 2002-2004 Python Software Foundation
+# Copyright (C) 2002-2007 Python Software Foundation
+# Author: email-sig at python.org
 
 """A simple test runner, which sets up sys.path properly.
 
@@ -13,8 +14,8 @@
 """
 
 import sys
-import unittest
 import getopt
+import unittest
 
 from email.test import test_email
 


More information about the Python-checkins mailing list